Lines Matching refs:filled
84 int filled; /**< Number of entries occupied in "timing" and "counts"*/ member
92 tb->filled = 0; in tb_init()
101 if (tb->filled >= MAX_TIMINGS && timing >= tb->timing[tb->filled-1]) in tb_add()
110 while (pos<tb->filled && timing >= tb->timing[pos]) in tb_add()
115 speex_assert(pos <= tb->filled && pos < MAX_TIMINGS); in tb_add()
118 if (pos < tb->filled) in tb_add()
120 int move_size = tb->filled-pos; in tb_add()
121 if (tb->filled == MAX_TIMINGS) in tb_add()
131 if (tb->filled<MAX_TIMINGS) in tb_add()
132 tb->filled++; in tb_add()
219 if (pos[j] < tb[j].filled && tb[j].timing[pos[j]] < latest) in compute_opt_delay()
361 for (j=0;j<jitter->timeBuffers[i]->filled;j++) in shift_timings()