Lines Matching refs:value

32     int32_t value;
38 av_log(ctx->log_ctx, AV_LOG_ERROR, "Invalid signed value at "
45 value = sign ? -(int32_t)magnitude : magnitude;
56 bits, value);
59 *write_to = value;
65 const int *subscripts, int32_t value)
73 sign = value < 0;
74 magnitude = sign ? -value : value;
85 name, subscripts, bits, value);
98 uint32_t value;
106 for (i = 0, value = range_min; value < range_max;) {
108 av_log(ctx->log_ctx, AV_LOG_ERROR, "Invalid increment value at "
114 ++value;
123 ff_cbs_trace_syntax_element(ctx, position, name, NULL, bits, value);
126 *write_to = value;
132 const char *name, uint32_t value)
137 if (value < range_min || value > range_max) {
140 name, value, range_min, range_max);
144 if (value == range_max)
147 len = value - range_min + 1;
155 if (range_min + i == value)
162 name, NULL, bits, value);
166 put_bits(pbc, len, (1 << len) - 1 - (value != range_max));
175 uint32_t value;
184 av_log(ctx->log_ctx, AV_LOG_ERROR, "Invalid le value at "
189 value = 0;
191 value |= get_bits(gbc, 8) << b;
198 bits[b + i] = value >> (b + i) & 1 ? '1' : '0';
202 bits, value);
205 *write_to = value;
211 const int *subscripts, uint32_t value)
225 bits[b + i] = value >> (b + i) & 1 ? '1' : '0';
229 name, subscripts, bits, value);
233 put_bits(pbc, 8, value >> b & 0xff);
268 uint32_t value; \
271 &value, 0, (1 << width) - 1)); \
272 var = value; \
275 int32_t value; \
277 SUBSCRIPTS(subs, __VA_ARGS__), &value)); \
278 var = value; \
283 uint32_t value; \
284 CHECK(cbs_vp9_read_increment(ctx, rw, min, max, #name, &value)); \
285 current->name = value; \
315 #define fixed(width, name, value) do { \
318 0, &fixed_value, value, value)); \
321 #define infer(name, value) do { \
322 current->name = value; \
378 #define fixed(width, name, value) do { \
380 0, value, value, value)); \
383 #define infer(name, value) do { \
384 if (current->name != (value)) { \
386 "%s does not match inferred value: " \
388 #name, (int64_t)current->name, (int64_t)(value)); \