Home
last modified time | relevance | path

Searched refs:max_sz (Results 1 – 11 of 11) sorted by relevance

/external/libvpx/vp8/encoder/
Dlookahead.c19 unsigned int max_sz; /* Absolute size of the queue */ member
32 assert(index < ctx->max_sz); in pop()
33 if (++index >= ctx->max_sz) index -= ctx->max_sz; in pop()
43 for (i = 0; i < ctx->max_sz; ++i) { in vp8_lookahead_destroy()
75 ctx->max_sz = depth; in vp8_lookahead_init()
99 if (ctx->sz + 2 > ctx->max_sz) return 1; in vp8_lookahead_push()
108 if (ctx->max_sz == 1 && active_map && !flags) { in vp8_lookahead_push()
152 if (ctx->sz && (drain || ctx->sz == ctx->max_sz - 1)) { in vp8_lookahead_pop()
164 assert(index < ctx->max_sz - 1); in vp8_lookahead_peek()
167 if (index >= ctx->max_sz) index -= ctx->max_sz; in vp8_lookahead_peek()
[all …]
/external/libvpx/vp9/encoder/
Dvp9_lookahead.c26 assert(index < ctx->max_sz); in pop()
27 if (++index >= ctx->max_sz) index -= ctx->max_sz; in pop()
37 for (i = 0; i < ctx->max_sz; i++) vpx_free_frame_buffer(&ctx->buf[i].img); in vp9_lookahead_destroy()
65 ctx->max_sz = depth; in vp9_lookahead_init()
86 return ctx->sz + 1 + MAX_PRE_FRAMES > ctx->max_sz; in vp9_lookahead_full()
135 if (!new_dimensions && ctx->max_sz == 1 && active_map && !flags) { in vp9_lookahead_push()
205 if (ctx && ctx->sz && (drain || ctx->sz == ctx->max_sz - MAX_PRE_FRAMES)) { in vp9_lookahead_pop()
220 if (index >= ctx->max_sz) index -= ctx->max_sz; in vp9_lookahead_peek()
227 if (index < 0) index += ctx->max_sz; in vp9_lookahead_peek()
Dvp9_lookahead.h36 int max_sz; /* Absolute size of the queue */ member
Dvp9_svc_layercontext.c988 if (ctx->sz && (drain || ctx->sz == ctx->max_sz - MAX_PRE_FRAMES)) { in vp9_svc_lookahead_pop()
/external/libaom/av1/encoder/
Dlookahead.c27 assert(index < ctx->max_sz); in pop()
28 if (++index >= ctx->max_sz) index -= ctx->max_sz; in pop()
38 for (i = 0; i < ctx->max_sz; i++) aom_free_frame_buffer(&ctx->buf[i].img); in av1_lookahead_destroy()
70 ctx->max_sz = depth; in av1_lookahead_init()
73 ctx->read_ctxs[ENCODE_STAGE].pop_sz = ctx->max_sz - ctx->max_pre_frames; in av1_lookahead_init()
113 if (ctx->read_ctxs[ENCODE_STAGE].sz + ctx->max_pre_frames > ctx->max_sz) in av1_lookahead_push()
192 if (index >= ctx->max_sz) index -= ctx->max_sz; in av1_lookahead_peek()
199 if (index < 0) index += (int)(ctx->max_sz); in av1_lookahead_peek()
Dlookahead.h54 int max_sz; /* Absolute size of the queue */ member
Dpass2_strategy.c2850 cpi->ppi->lookahead, cpi->ppi->lookahead->max_sz, cpi->compressor_stage); in detect_app_forced_key()
/external/tcpdump/missing/
Dsnprintf.c64 size_t max_sz; member
78 if (state->max_sz && state->sz >= state->max_sz)
82 if (state->max_sz)
83 state->sz = min(state->sz, state->max_sz);
471 nd_vasnprintf (char **ret, size_t max_sz, const char *format, va_list args)
477 state.max_sz = max_sz;
/external/rust/crates/plotters/src/style/
Dsize.rs90 pub fn max(self, max_sz: i32) -> RelativeSizeWithBound { in max()
93 max: Some(max_sz), in max()
150 pub fn max(mut self, max_sz: i32) -> RelativeSizeWithBound { in max()
151 self.max = Some(max_sz); in max()
/external/python/cpython3/Lib/
Dsmtpd.py361 max_sz = (self.command_size_limits[command]
363 if sz > max_sz:
/external/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_setup_tri.c780 int max_sz = ((bbox->x1 - (bbox->x0 & ~3)) | in lp_setup_bin_triangle() local
782 int sz = floor_pot(max_sz); in lp_setup_bin_triangle()