HomeSort by relevance Sort by last modified time
    Searched defs:num_codes (Results 1 - 8 of 8) sorted by null

  /external/puffin/src/
huffman_table.h 52 // |num_codes| IN The number of code lengths for reading Huffman table.
55 size_t num_codes) {
56 if (num_lit_len > 286 || num_distance > 30 || num_codes > 19) {
60 << "num_codes(" << num_codes << ")"; local
237 // |num_codes| IN The size of the Huffman code length array in the input.
244 size_t num_codes,
255 // |num_codes| IN Number of Huffman code lengths to read from the
262 size_t num_codes,
huffman_table.cc 238 // code length array (|dynamic_distance_lens_|), and the size (|num_codes|) of
255 auto num_codes = br->ReadBits(4) + 4; local
259 CheckHuffmanArrayLengths(num_lit_len, num_distance, num_codes),
264 TEST_AND_RETURN_FALSE_SET_ERROR(*length - index >= (num_codes + 1) / 2,
267 for (; idx < num_codes; idx++) {
325 size_t num_codes,
330 for (size_t idx = 0; idx < num_codes;) {
390 TEST_AND_RETURN_FALSE(lens->size() == num_codes);
426 size_t num_codes = buffer[index] + 4; local
431 CheckHuffmanArrayLengths(num_lit_len, num_distance, num_codes),
    [all...]
  /external/webp/src/enc/
histogram_enc.c 431 const int num_codes = VP8LHistogramNumCodes(h->palette_code_bits_); local
432 h->literal_cost_ = PopulationCost(h->literal_, num_codes, NULL) +
    [all...]
  /hardware/intel/img/psb_video/src/
tng_jpegdec.c 110 uint32_t num_codes; member in struct:__anon47964
446 const uint32_t num_codes,
470 for (i = 0; symbol_codes[i].code_length <= next_leading_width && i < num_codes; i++) {
479 for (i = next_section; i < num_codes; i++) {
489 for (i = next_section; i < num_codes; i++) {
505 num_codes - i,
528 psSymbolStats->num_codes,
547 if (ctx->symbol_stats[table_class][table_id].num_codes) {
741 uint32_t num_codes = huff->huffman_table[table_id].num_dc_codes[bit_ind]; local
742 while (num_codes) {
788 uint32_t num_codes = huff->huffman_table[table_id].num_ac_codes[bit_ind]; local
    [all...]
  /external/brotli/c/dec/
decode.c 646 uint32_t num_codes = s->repeat; local
662 s->repeat = num_codes;
674 ++num_codes;
682 if (!(num_codes == 1 || space == 0)) {
720 s->repeat = 0; /* num_codes */
    [all...]
  /external/brotli/c/enc/
brotli_bit_stream.c 184 const int num_codes, const uint8_t* code_length_bitdepth,
210 if (num_codes > 1) {
311 int num_codes = 0; local
326 if (num_codes == 0) {
328 num_codes = 1;
329 } else if (num_codes == 1) {
330 num_codes = 2;
345 BrotliStoreHuffmanTreeOfHuffmanTreeToBitMask(num_codes, code_length_bitdepth,
348 if (num_codes == 1) {
    [all...]
  /external/webp/src/dec/
vp8l_dec.c 333 const int num_codes = VP8LReadBits(br, 4) + 4; local
334 if (num_codes > NUM_CODE_LENGTH_CODES) {
339 for (i = 0; i < num_codes; ++i) {
    [all...]
  /external/v8/src/compiler/
register-allocator.cc 2984 int num_codes = num_allocatable_registers(); local
3122 int num_codes = num_allocatable_registers(); local
3175 int num_codes = num_allocatable_registers(); local
    [all...]

Completed in 444 milliseconds