Home | History | Annotate | Download | only in encoder

Lines Matching defs:max_sz

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