Searched refs:extra_bits (Results 1 - 21 of 21) sorted by relevance

/external/brotli/enc/
H A Dprefix.h28 uint32_t* extra_bits) {
31 *extra_bits = 0;
45 *extra_bits = (uint32_t)(
24 PrefixEncodeCopyDistance(size_t distance_code, size_t num_direct_codes, size_t postfix_bits, uint16_t* code, uint32_t* extra_bits) argument
H A Dbrotli_bit_stream.c677 const uint32_t extra_bits = reps - (1u << run_length_prefix); local
678 v[*out_size] = run_length_prefix + (extra_bits << 9);
682 const uint32_t extra_bits = (1u << max_prefix) - 1u; local
683 v[*out_size] = max_prefix + (extra_bits << 9);
/external/webp/src/dsp/
H A Dlossless_common.h108 int* const extra_bits) {
111 *extra_bits = highest_bit - 1;
116 int* const extra_bits,
120 *extra_bits = highest_bit - 1;
121 *extra_bits_value = distance & ((1 << *extra_bits) - 1);
135 int* const extra_bits) {
139 *extra_bits = prefix_code.extra_bits_;
141 VP8LPrefixEncodeBitsNoLUT(distance, code, extra_bits);
146 int* const extra_bits,
151 *extra_bits
107 VP8LPrefixEncodeBitsNoLUT(int distance, int* const code, int* const extra_bits) argument
115 VP8LPrefixEncodeNoLUT(int distance, int* const code, int* const extra_bits, int* const extra_bits_value) argument
134 VP8LPrefixEncodeBits(int distance, int* const code, int* const extra_bits) argument
145 VP8LPrefixEncode(int distance, int* const code, int* const extra_bits, int* const extra_bits_value) argument
[all...]
/external/webp/src/utils/
H A Dhuffman_encode_utils.h26 uint8_t extra_bits; // extra bits for escape codes member in struct:__anon25879
H A Dhuffman_encode_utils.c267 tokens->extra_bits = 0;
276 tokens->extra_bits = 0;
282 tokens->extra_bits = repetitions - 3;
287 tokens->extra_bits = 3;
302 tokens->extra_bits = 0;
308 tokens->extra_bits = repetitions - 3;
313 tokens->extra_bits = repetitions - 11;
318 tokens->extra_bits = 0x7f; // 138 repeated 0s
/external/protobuf/src/google/protobuf/compiler/objectivec/
H A Dobjectivec_field.cc449 int extra_bits = field_generators_[i]->ExtraRuntimeHasBitsNeeded(); local
450 if (extra_bits) {
452 total_bits += extra_bits;
/external/libopus/celt/
H A Drate.c499 int extra_bits; local
502 extra_bits = extra_fine*C<<BITRES;
503 fine_priority[j] = extra_bits >= excess-balance;
504 excess -= extra_bits;
/external/valgrind/coregrind/m_debuginfo/
H A Dtinfl.c443 if (num_extra) { mz_uint extra_bits; TINFL_GET_BITS(25, extra_bits, num_extra); counter += extra_bits; } local
447 if (num_extra) { mz_uint extra_bits; TINFL_GET_BITS(27, extra_bits, num_extra); dist += extra_bits; } local
/external/webp/src/enc/
H A Dbackward_references_enc.c635 int code, extra_bits; local
636 VP8LPrefixEncodeBits(length, &code, &extra_bits);
637 return m->literal_[VALUES_IN_BYTE + code] + extra_bits;
642 int code, extra_bits; local
643 VP8LPrefixEncodeBits(distance, &code, &extra_bits);
644 return m->distance_[code] + extra_bits;
1578 int code_dist, code_len, extra_bits; local
1580 VP8LPrefixEncodeBits(len, &code_len, &extra_bits);
1581 VP8LPrefixEncodeBits(PixOrCopyDistance(v), &code_dist, &extra_bits); local
H A Dhistogram_enc.c152 int code, extra_bits; local
153 VP8LPrefixEncodeBits(PixOrCopyLength(v), &code, &extra_bits); local
155 VP8LPrefixEncodeBits(PixOrCopyDistance(v), &code, &extra_bits); local
H A Dvp8l_enc.c505 const int extra_bits = tokens[i].extra_bits; local
509 VP8LPutBits(bw, extra_bits, 2);
512 VP8LPutBits(bw, extra_bits, 3);
515 VP8LPutBits(bw, extra_bits, 7);
/external/pdfium/third_party/zlib_v128/
H A Dtrees.c119 const intf *extra_bits; /* extra bits for each code or NULL */ member in struct:static_tree_desc_s
120 int extra_base; /* base index for extra_bits */
251 static_l_desc.extra_bits = extra_lbits;
253 static_d_desc.extra_bits = extra_dbits;
254 static_bl_desc.extra_bits = extra_blbits;
495 const intf *extra = desc->stat_desc->extra_bits;
/external/python/cpython2/Modules/zlib/
H A Dtrees.c119 const intf *extra_bits; /* extra bits for each code or NULL */ member in struct:static_tree_desc_s
120 int extra_base; /* base index for extra_bits */
251 static_l_desc.extra_bits = extra_lbits;
253 static_d_desc.extra_bits = extra_dbits;
254 static_bl_desc.extra_bits = extra_blbits;
495 const intf *extra = desc->stat_desc->extra_bits;
/external/zlib/src/
H A Dtrees.c119 const intf *extra_bits; /* extra bits for each code or NULL */ member in struct:static_tree_desc_s
120 int extra_base; /* base index for extra_bits */
251 static_l_desc.extra_bits = extra_lbits;
253 static_d_desc.extra_bits = extra_dbits;
254 static_bl_desc.extra_bits = extra_blbits;
495 const intf *extra = desc->stat_desc->extra_bits;
/external/brotli/dec/
H A Ddecode.c494 uint32_t extra_bits = 3; /* for BROTLI_REPEAT_ZERO_CODE_LENGTH */ local
498 extra_bits = 2;
507 *repeat <<= extra_bits; local
569 } else { /* code_len == 16..17, extra_bits == 2..3 */
570 uint32_t extra_bits = local
573 (uint32_t)BrotliGetBitsUnmasked(br) & BitMask(extra_bits);
574 BrotliDropBits(br, extra_bits);
610 } else { /* code_len == 16..17, extra_bits == 2..3 */
611 uint32_t extra_bits = code_len - 14U; local
612 uint32_t repeat_delta = (bits >> p->bits) & BitMask(extra_bits);
[all...]
/external/syslinux/com32/lib/zlib/
H A Dtrees.c124 const intf *extra_bits; /* extra bits for each code or NULL */ member in struct:static_tree_desc_s
125 int extra_base; /* base index for extra_bits */
256 static_l_desc.extra_bits = extra_lbits;
258 static_d_desc.extra_bits = extra_dbits;
259 static_bl_desc.extra_bits = extra_blbits;
501 const intf *extra = desc->stat_desc->extra_bits;
/external/webp/src/dec/
H A Dvp8l_dec.c152 int extra_bits, offset; local
156 extra_bits = (distance_symbol - 2) >> 1;
157 offset = (2 + (distance_symbol & 1)) << extra_bits;
158 return offset + VP8LReadBits(br, extra_bits) + 1;
289 const int extra_bits = kCodeLengthExtraBits[slot]; local
291 int repeat = VP8LReadBits(br, extra_bits) + repeat_offset;
/external/crcalc/src/com/hp/creals/
H A DCR.java950 int extra_bits = rough_appr.bitLength() - 3;
951 CR scaled_result = shiftRight(extra_bits).ln();
952 return scaled_result.add(CR.valueOf(extra_bits).multiply(ln2));
/external/python/cpython2/Objects/
H A Dlongobject.c3095 Py_ssize_t a_size, b_size, shift, extra_bits, diff, x_size, x_bits; local
3158 round(x/2**extra_bits) * 2**(extra_bits+shift).
3160 For float representability, we need x/2**extra_bits <
3161 2**DBL_MANT_DIG and extra_bits + shift >= DBL_MIN_EXP -
3164 extra_bits >= MAX(x_bits, DBL_MIN_EXP - shift) - DBL_MANT_DIG
3170 With the original choices for shift above, extra_bits will always
3312 extra_bits = MAX(x_bits, DBL_MIN_EXP - shift) - DBL_MANT_DIG;
3313 assert(extra_bits == 2 || extra_bits
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_bitstream.c130 const vp9_extra_bit *const extra_bits = local
175 const vp9_extra_bit *const b = &extra_bits[t];
/external/e2fsprogs/misc/
H A Dfuse2fs.c376 __u64 extra_bits = extra & EXT4_EPOCH_MASK; local
380 * if (extra_bits == 3)
381 * extra_bits = 0;
383 time->tv_sec += extra_bits << 32;

Completed in 629 milliseconds