Lines Matching refs:max_sz
20 unsigned int max_sz; /* Absolute size of the queue */ member
36 assert(index < ctx->max_sz); in pop()
37 if(++index >= ctx->max_sz) in pop()
38 index -= ctx->max_sz; in pop()
53 for(i = 0; i < ctx->max_sz; i++) in vp8_lookahead_destroy()
87 ctx->max_sz = depth; in vp8_lookahead_init()
116 if(ctx->sz + 2 > ctx->max_sz) in vp8_lookahead_push()
126 if (ctx->max_sz == 1 && active_map && !flags) in vp8_lookahead_push()
184 if(ctx->sz && (drain || ctx->sz == ctx->max_sz - 1)) in vp8_lookahead_pop()
202 assert(index < ctx->max_sz - 1); in vp8_lookahead_peek()
206 if(index >= ctx->max_sz) in vp8_lookahead_peek()
207 index -= ctx->max_sz; in vp8_lookahead_peek()
216 index = ctx->max_sz - 1; in vp8_lookahead_peek()