HomeSort by relevance Sort by last modified time
    Searched refs:extra_bits (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium_org/third_party/brotli/src/brotli/enc/
prefix.h 43 uint32_t* extra_bits);
prefix.cc 127 uint32_t* extra_bits) {
132 *extra_bits = 0;
145 *extra_bits = (distance_code - offset) >> postfix_bits;
entropy_encode.cc 177 uint8_t* extra_bits,
181 extra_bits[*tree_size] = 0;
187 extra_bits[*tree_size] = 0;
194 extra_bits[*tree_size] = 0;
202 extra_bits[*tree_size] = repetitions & 0x3;
208 Reverse(extra_bits, start, *tree_size);
215 uint8_t* extra_bits,
219 extra_bits[*tree_size] = 0;
226 extra_bits[*tree_size] = 0;
234 extra_bits[*tree_size] = repetitions & 0x7
    [all...]
encode.cc 218 const int extra_bits = huffman_tree_extra_bits[i]; local
224 WriteBits(2, extra_bits, storage_ix, storage);
227 WriteBits(3, extra_bits, storage_ix, storage);
386 int extra_bits = cmd.distance_extra_bits_; local
389 if (extra_bits > 0) {
390 WriteBits(extra_bits, extra_bits_val, storage_ix, storage);
497 // length plus extra bits in *v_out and *extra_bits. Non-zero values in v_in are
505 std::vector<int>* extra_bits) {
520 extra_bits->push_back(0);
532 extra_bits->push_back(reps - (1 << run_length_prefix))
552 std::vector<int> extra_bits; local
586 std::vector<int> extra_bits; local
624 int extra_bits = BlockLengthExtraBits(len_code); local
    [all...]
  /external/chromium_org/third_party/libwebp/utils/
huffman_encode.h 26 uint8_t extra_bits; // extra bits for escape codes member in struct:__anon17923
huffman_encode.c 267 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/webp/src/utils/
huffman_encode.h 26 uint8_t extra_bits; // extra bits for escape codes member in struct:__anon17061
huffman_encode.c 267 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/chromium_org/third_party/libwebp/dsp/
lossless.h 185 int* const extra_bits) {
188 *extra_bits = highest_bit - 1;
193 int* const extra_bits,
197 *extra_bits = highest_bit - 1;
198 *extra_bits_value = distance & ((1 << *extra_bits) - 1);
212 int* const extra_bits) {
216 *extra_bits = prefix_code.extra_bits_;
218 VP8LPrefixEncodeBitsNoLUT(distance, code, extra_bits);
223 int* const extra_bits,
228 *extra_bits = prefix_code.extra_bits_
    [all...]
  /external/webp/src/dsp/
lossless.h 185 int* const extra_bits) {
188 *extra_bits = highest_bit - 1;
193 int* const extra_bits,
197 *extra_bits = highest_bit - 1;
198 *extra_bits_value = distance & ((1 << *extra_bits) - 1);
212 int* const extra_bits) {
216 *extra_bits = prefix_code.extra_bits_;
218 VP8LPrefixEncodeBitsNoLUT(distance, code, extra_bits);
223 int* const extra_bits,
228 *extra_bits = prefix_code.extra_bits_
    [all...]
  /art/runtime/
leb128.h 128 uint32_t extra_bits = static_cast<uint32_t>(value ^ (value >> 31)) >> 6; local
130 while (extra_bits != 0u) {
134 extra_bits >>= 7;
169 uint32_t extra_bits = static_cast<uint32_t>(value ^ (value >> 31)) >> 6; local
171 while (extra_bits != 0u) {
175 extra_bits >>= 7;
  /external/valgrind/main/VEX/switchback/
test_emfloat.c 1284 u16 extra_bits[INTERNAL_FPF_PRECISION]; local
1446 u16 extra_bits[INTERNAL_FPF_PRECISION]; local
    [all...]
  /external/chromium_org/third_party/opus/src/celt/
rate.c 498 int extra_bits; local
501 extra_bits = extra_fine*C<<BITRES;
502 fine_priority[j] = extra_bits >= excess-balance;
503 excess -= extra_bits;
  /external/libopus/celt/
rate.c 498 int extra_bits; local
501 extra_bits = extra_fine*C<<BITRES;
502 fine_priority[j] = extra_bits >= excess-balance;
503 excess -= extra_bits;
  /external/chromium_org/third_party/libwebp/enc/
backward_references.c 548 int code, extra_bits; local
549 VP8LPrefixEncodeBits(length, &code, &extra_bits);
550 return m->literal_[VALUES_IN_BYTE + code] + extra_bits;
555 int code, extra_bits; local
556 VP8LPrefixEncodeBits(distance, &code, &extra_bits);
557 return m->distance_[code] + extra_bits;
    [all...]
vp8l.c 303 const int extra_bits = tokens[i].extra_bits; local
307 VP8LWriteBits(bw, 2, extra_bits);
310 VP8LWriteBits(bw, 3, extra_bits);
313 VP8LWriteBits(bw, 7, extra_bits);
    [all...]
  /external/webp/src/enc/
backward_references.c 548 int code, extra_bits; local
549 VP8LPrefixEncodeBits(length, &code, &extra_bits);
550 return m->literal_[VALUES_IN_BYTE + code] + extra_bits;
555 int code, extra_bits; local
556 VP8LPrefixEncodeBits(distance, &code, &extra_bits);
557 return m->distance_[code] + extra_bits;
    [all...]
vp8l.c 303 const int extra_bits = tokens[i].extra_bits; local
307 VP8LWriteBits(bw, 2, extra_bits);
310 VP8LWriteBits(bw, 3, extra_bits);
313 VP8LWriteBits(bw, 7, extra_bits);
    [all...]
  /external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
fx_zlib_trees.c 119 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;
    [all...]
  /external/qemu/distrib/zlib-1.2.8/
trees.c 119 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;
    [all...]
  /external/zlib/src/
trees.c 119 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;
    [all...]
  /external/chromium_org/third_party/zlib/
trees.c 124 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;
    [all...]
  /external/chromium_org/third_party/libwebp/dec/
vp8l.c 123 int extra_bits, offset; local
127 extra_bits = (distance_symbol - 2) >> 1;
128 offset = (2 + (distance_symbol & 1)) << extra_bits;
129 return offset + VP8LReadBits(br, extra_bits) + 1;
221 const int extra_bits = kCodeLengthExtraBits[slot]; local
223 int repeat = VP8LReadBits(br, extra_bits) + repeat_offset;
    [all...]
  /external/webp/src/dec/
vp8l.c 123 int extra_bits, offset; local
127 extra_bits = (distance_symbol - 2) >> 1;
128 offset = (2 + (distance_symbol & 1)) << extra_bits;
129 return offset + VP8LReadBits(br, extra_bits) + 1;
221 const int extra_bits = kCodeLengthExtraBits[slot]; local
223 int repeat = VP8LReadBits(br, extra_bits) + repeat_offset;
    [all...]
  /external/chromium_org/third_party/brotli/src/brotli/dec/
decode.c 172 const int extra_bits = code_len - 14; local
186 repeat <<= extra_bits; local
188 repeat += (int)BrotliReadBits(br, extra_bits) + 3;
    [all...]

Completed in 1706 milliseconds

1 2