Searched refs:MAXSTAGE (Results 1 – 4 of 4) sorted by relevance
82 #if MAXSTAGE & (MAXSTAGE - 1)89 pp->coderecv = (pp->coderecv + 1) % MAXSTAGE; in clk_add_sample()91 pp->codeproc = (pp->codeproc + 1) % MAXSTAGE; in clk_add_sample()101 pp->codeproc = (pp->codeproc + 1) % MAXSTAGE; in clk_pop_sample()110 if (retv > MAXSTAGE) in clk_cnt_sample()111 retv += MAXSTAGE; in clk_cnt_sample()122 pp->coderecv = (pp->coderecv + 1) & (MAXSTAGE - 1); in clk_add_sample()124 pp->codeproc = (pp->codeproc + 1) & (MAXSTAGE - 1); in clk_add_sample()134 pp->codeproc = (pp->codeproc + 1) & (MAXSTAGE - 1); in clk_pop_sample()142 return (pp->coderecv - pp->codeproc) & (MAXSTAGE - 1); in clk_cnt_sample()[all …]
332 l_fp tstamp[MAXSTAGE]; /* timestamp samples */1271 if (up->ntstamp < MAXSTAGE - 1) in chu_a()
133 #define MAXSTAGE 64 /* max median filter stages */ macro169 double filter[MAXSTAGE]; /* median filter */
114 to use most recent MAXSTAGE entries when the filter overflows (ie115 driver poking say once per second with poll > MAXSTAGE) rather116 than blocking after MAXSTAGE entries (turf oldest rather than turf