/third_party/mbedtls/tests/src/ |
H A D | asn1_helpers.c | 31 size_t min_bits, size_t max_bits, in mbedtls_test_asn1_skip_integer() 53 if (min_bits == 0 && len == 0) { in mbedtls_test_asn1_skip_integer() 63 TEST_ASSERT(actual_bits >= min_bits); in mbedtls_test_asn1_skip_integer() 30 mbedtls_test_asn1_skip_integer(unsigned char **p, const unsigned char *end, size_t min_bits, size_t max_bits, int must_be_odd) mbedtls_test_asn1_skip_integer() argument
|
/third_party/lame/libmp3lame/ |
H A D | quantize.c | 1247 const int ch, int min_bits, int max_bits) in VBR_encode_granule() 1253 int this_bits = (max_bits + min_bits) / 2; in VBR_encode_granule() 1263 assert(this_bits >= min_bits); in VBR_encode_granule() 1265 assert(min_bits <= max_bits); in VBR_encode_granule() 1292 dbits = max_bits - min_bits; in VBR_encode_granule() 1293 this_bits = (max_bits + min_bits) / 2; in VBR_encode_granule() 1298 min_bits = this_bits + 32; in VBR_encode_granule() 1299 dbits = max_bits - min_bits; in VBR_encode_granule() 1300 this_bits = (max_bits + min_bits) / 2; in VBR_encode_granule() 1394 int frameBits[16], int min_bits[ in VBR_old_prepare() 1245 VBR_encode_granule(lame_internal_flags * gfc, gr_info * const cod_info, const FLOAT * const l3_xmin, FLOAT xrpow[576], const int ch, int min_bits, int max_bits) VBR_encode_granule() argument 1390 VBR_old_prepare(lame_internal_flags * gfc, const FLOAT pe[2][2], FLOAT const ms_ener_ratio[2], const III_psy_ratio ratio[2][2], FLOAT l3_xmin[2][2][SFBMAX], int frameBits[16], int min_bits[2][2], int max_bits[2][2], int bands[2][2]) VBR_old_prepare() argument 1454 bitpressure_strategy(lame_internal_flags const *gfc, FLOAT l3_xmin[2][2][SFBMAX], const int min_bits[2][2], int max_bits[2][2]) bitpressure_strategy() argument 1503 int min_bits[2][2], max_bits[2][2]; VBR_old_iteration_loop() local [all...] |
/third_party/mbedtls/tests/include/test/ |
H A D | asn1_helpers.h | 30 * through \p min_bits, \p max_bits and \p must_be_odd. 38 * \param min_bits Fail the test case if the integer does not have at 47 size_t min_bits, size_t max_bits,
|
/third_party/skia/third_party/externals/libjpeg-turbo/ |
H A D | jdhuff.h | 292 int min_bits);
|
H A D | jdhuff.c | 436 d_derived_tbl *htbl, int min_bits) in jpeg_huff_decode() 438 register int l = min_bits; in jpeg_huff_decode() 441 /* HUFF_DECODE has determined that the code is at least min_bits */ in jpeg_huff_decode() 434 jpeg_huff_decode(bitread_working_state *state, register bit_buf_type get_buffer, register int bits_left, d_derived_tbl *htbl, int min_bits) jpeg_huff_decode() argument
|
H A D | jdhuff_opt.c | 563 d_derived_tbl *htbl, int min_bits) in jpeg_huff_decode() 565 register int l = min_bits; in jpeg_huff_decode() 568 /* HUFF_DECODE has determined that the code is at least min_bits */ in jpeg_huff_decode() 561 jpeg_huff_decode(bitread_working_state *state, register bit_buf_type get_buffer, register int bits_left, d_derived_tbl *htbl, int min_bits) jpeg_huff_decode() argument
|
/third_party/skia/third_party/externals/libpng/contrib/tools/ |
H A D | pngfix.c | 2630 int min_bits, max_bits, rc; in zlib_check() local 2640 min_bits = zlib.window_bits + 1; in zlib_check() 2659 min_bits = 8; in zlib_check() 2685 /* Optimize window bits or fix a too-far-back error. min_bits and in zlib_check() 2689 while (min_bits < max_bits || max_bits < zlib.ok_bits/*if 16*/) in zlib_check() 2691 int test_bits = (min_bits + max_bits) >> 1; in zlib_check() 2701 min_bits = test_bits+1; in zlib_check() 2702 if (min_bits > max_bits) in zlib_check()
|
/third_party/ffmpeg/libavcodec/ |
H A D | truemotion2.c | 107 int min_bits; ///< minimum length of code member 156 huff.min_bits = get_bits(&ctx->gb, 5); in tm2_build_huff_table()
|