Home
last modified time | relevance | path

Searched refs:nSample (Results 1 – 4 of 4) sorted by relevance

/freebsd-12.1/usr.sbin/ppp/
H A Dthroughput.c59 t->nSample = 0; in throughput_init()
95 t->nSample = 0; in throughput_uptime()
174 old = t->in.SampleOctets[t->nSample]; in throughput_sampler()
175 t->in.SampleOctets[t->nSample] = t->OctetsIn; in throughput_sampler()
176 t->in.OctetsPerSecond = (t->in.SampleOctets[t->nSample] - old) / divisor; in throughput_sampler()
178 old = t->out.SampleOctets[t->nSample]; in throughput_sampler()
179 t->out.SampleOctets[t->nSample] = t->OctetsOut; in throughput_sampler()
188 if (++t->nSample == t->SamplePeriod) in throughput_sampler()
189 t->nSample = 0; in throughput_sampler()
205 t->nSample = 0; in throughput_start()
[all …]
H A Dthroughput.h51 int nSample; member
/freebsd-12.1/contrib/sqlite3/
H A Dsqlite3.c107847 assert( p->nSample==0
107853 p->nSample++;
108828 pIdx->nSample = 0;
108857 int nSample = pIdx->nSample;
108868 nSample--;
109035 pIdx->nSample++;
145936 assert( pIdx->nSample>0 );
146070 if( i>=pIdx->nSample ){
146182 int nUpper = p->nSample+1;
146480 assert( p->nSample>0 );
[all …]
/freebsd-12.1/crypto/heimdal/lib/sqlite/
H A Dsqlite3.c102862 int nSample;
102864 db, pColl->enc, aSample[i].u.z, aSample[i].nByte, &nSample
102870 c = pColl->xCmp(pColl->pUser, nSample, zSample, n, z);