/external/webp/src/utils/ |
D | huffman_encode_utils.c | 330 const int depth_size = tree->num_symbols; in VP8LCreateCompressedHuffmanTree() 382 len = tree->num_symbols; in ConvertBitDepthsToSymbols() 410 const int num_symbols = huff_code->num_symbols; in VP8LCreateHuffmanTree() local 411 memset(buf_rle, 0, num_symbols * sizeof(*buf_rle)); in VP8LCreateHuffmanTree() 412 OptimizeHuffmanForRle(num_symbols, buf_rle, histogram); in VP8LCreateHuffmanTree() 413 GenerateOptimalTree(histogram, num_symbols, huff_tree, tree_depth_limit, in VP8LCreateHuffmanTree()
|
D | huffman_encode_utils.h | 31 int num_symbols; // Number of symbols. member
|
/external/libgav1/libgav1/src/utils/ |
D | bit_reader.cc | 88 bool BitReader::DecodeSubexp(int num_symbols, int control, int* const value) { in DecodeSubexp() argument 97 if (num_symbols <= mk + 3 * a) { in DecodeSubexp() 98 if (!DecodeUniform(num_symbols - mk, value)) return false; in DecodeSubexp()
|
D | bit_reader.h | 44 bool DecodeSubexp(int num_symbols, int control, int* value); // 5.9.28.
|
/external/webrtc/webrtc/modules/audio_device/linux/ |
D | latebindingsymboltable_linux.cc | 93 int num_symbols, in InternalLoadSymbols() argument 100 for (int i = 0; i < num_symbols; ++i) { in InternalLoadSymbols()
|
D | latebindingsymboltable_linux.h | 42 int num_symbols,
|
/external/u-boot/fs/jffs2/ |
D | mini_inflate.c | 38 stream->codes.num_symbols = 19; in init_stream() 46 stream->lengths.num_symbols = 288; in init_stream() 54 stream->distance.num_symbols = 32; in init_stream() 195 for (i = 0; i < set->num_symbols; i++) { in fill_code_tables() 206 cramfs_memset(set->lengths, 0, set->num_symbols); in init_code_tables()
|
/external/webrtc/webrtc/base/ |
D | latebindingsymboltable.cc | 125 for (int i = 0; i < info_->num_symbols; ++i) { in LoadFromPath() 153 memset(table_, 0, sizeof(void *) * info_->num_symbols); in ClearSymbols()
|
D | latebindingsymboltable.h | 36 int num_symbols; member
|
/external/mesa3d/src/amd/common/ |
D | ac_rtld.c | 145 static bool layout_symbols(struct ac_rtld_symbol *symbols, unsigned num_symbols, in layout_symbols() argument 148 qsort(symbols, num_symbols, sizeof(*symbols), compare_symbol_by_align); in layout_symbols() 152 for (unsigned i = 0; i < num_symbols; ++i) { in layout_symbols() 202 size_t num_symbols = symbols_data->d_size / sizeof(Elf64_Sym); in read_private_lds_symbols() local 204 for (size_t j = 0; j < num_symbols; ++j, ++symbol) { in read_private_lds_symbols() 631 size_t num_symbols = symbols_data->d_size / sizeof(Elf64_Sym); in apply_relocs() local 656 report_elf_if(r_sym >= num_symbols); in apply_relocs()
|
/external/webp/src/enc/ |
D | vp8l_enc.c | 467 const int num_symbols = in GetHuffBitLengthsAndCodes() local 470 codes[k].num_symbols = num_symbols; in GetHuffBitLengthsAndCodes() 471 total_length_size += num_symbols; in GetHuffBitLengthsAndCodes() 486 const int bit_length = huffman_codes[i].num_symbols; in GetHuffBitLengthsAndCodes() 549 for (k = 0; k < huffman_code->num_symbols; ++k) { in ClearHuffmanTreeIfOnlyOneSymbol() 555 for (k = 0; k < huffman_code->num_symbols; ++k) { in ClearHuffmanTreeIfOnlyOneSymbol() 591 const int max_tokens = tree->num_symbols; in StoreFullHuffmanCode() 594 huffman_code.num_symbols = CODE_LENGTH_CODES; in StoreFullHuffmanCode() 664 for (i = 0; i < huffman_code->num_symbols && count < 3; ++i) { in StoreHuffmanCode() 831 if (max_tokens < codes->num_symbols) { in EncodeImageNoHuffman() [all …]
|
D | backward_references_cost_enc.c | 41 int num_symbols, const uint32_t population_counts[], double output[]) { in ConvertPopulationCountTableToBitEstimates() argument 45 for (i = 0; i < num_symbols; ++i) { in ConvertPopulationCountTableToBitEstimates() 52 memset(output, 0, num_symbols * sizeof(*output)); in ConvertPopulationCountTableToBitEstimates() 55 for (i = 0; i < num_symbols; ++i) { in ConvertPopulationCountTableToBitEstimates()
|
/external/u-boot/include/jffs2/ |
D | mini_inflate.h | 22 int num_symbols; /* Number of symbols this code can represent */ member
|
/external/toolchain-utils/cros_utils/ |
D | perf_diff.py | 202 def __init__(self, reports, num_symbols, common_only): argument 204 self._num_symbols = num_symbols 330 pd = PerfDiffer(reports, int(options.num_symbols), options.common_only)
|
/external/brotli/c/enc/ |
D | metablock_inc.h | 47 size_t min_block_size, double split_threshold, size_t num_symbols, in FN() 49 size_t max_num_blocks = num_symbols / min_block_size + 1; in FN()
|
D | brotli_bit_stream.c | 259 size_t num_symbols, in StoreSimpleHuffmanTree() argument 264 BrotliWriteBits(2, num_symbols - 1, storage_ix, storage); /* NSYM - 1 */ in StoreSimpleHuffmanTree() 269 for (i = 0; i < num_symbols; i++) { in StoreSimpleHuffmanTree() 271 for (j = i + 1; j < num_symbols; j++) { in StoreSimpleHuffmanTree() 279 if (num_symbols == 2) { in StoreSimpleHuffmanTree() 282 } else if (num_symbols == 3) { in StoreSimpleHuffmanTree()
|
D | metablock.c | 342 size_t num_symbols, BlockSplit* split, HistogramLiteral** histograms, in InitContextBlockSplitter() argument 344 size_t max_num_blocks = num_symbols / min_block_size + 1; in InitContextBlockSplitter()
|
/external/brotli/c/dec/ |
D | huffman.c | 264 uint32_t num_symbols) { in BrotliBuildSimpleHuffmanTable() argument 267 switch (num_symbols) { in BrotliBuildSimpleHuffmanTable()
|
D | huffman.h | 110 int root_bits, uint16_t* symbols, uint32_t num_symbols);
|
D | decode.c | 478 uint32_t num_symbols = s->symbol; in ReadSimpleHuffmanSymbols() local 479 while (i <= num_symbols) { in ReadSimpleHuffmanSymbols() 495 for (i = 0; i < num_symbols; ++i) { in ReadSimpleHuffmanSymbols() 497 for (; k <= num_symbols; ++k) { in ReadSimpleHuffmanSymbols()
|
/external/webp/src/dec/ |
D | vp8l_dec.c | 250 int num_symbols, int* const code_lengths) { in ReadHuffmanCodeLengths() argument 267 if (max_symbol > num_symbols) { in ReadHuffmanCodeLengths() 271 max_symbol = num_symbols; in ReadHuffmanCodeLengths() 275 while (symbol < num_symbols) { in ReadHuffmanCodeLengths() 292 if (symbol + repeat > num_symbols) { in ReadHuffmanCodeLengths() 319 const int num_symbols = VP8LReadBits(br, 1) + 1; in ReadHuffmanCode() local 325 if (num_symbols == 2) { in ReadHuffmanCode()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/gold/ |
D | gold-plugin.cpp | 57 uint64_t *num_symbols, const char ***wrap_symbol_list);
|