Home
last modified time | relevance | path

Searched refs:symbol_lists (Results 1 – 6 of 6) sorted by relevance

/external/clang/utils/perf-training/
Dperf-helper.py256 def form_by_call_order(symbol_lists): argument
259 return uniq(s for symbols in symbol_lists for s in symbols)
261 def form_by_call_order_fair(symbol_lists): argument
267 uniq_lists = [list(uniq(symbols)) for symbols in symbol_lists]
284 for symbols in symbol_lists
288 def form_by_frequency(symbol_lists): argument
293 for symbols in symbol_lists:
301 def form_by_random(symbol_lists): argument
303 merged_symbols = uniq(s for symbols in symbol_lists
308 def form_by_alphabetical(symbol_lists): argument
[all …]
/external/brotli/c/dec/
Dhuffman.c171 const uint16_t* const symbol_lists, in BrotliBuildHuffmanTable() argument
193 while (symbol_lists[max_length] == 0xFFFF) max_length--; in BrotliBuildHuffmanTable()
214 symbol = symbol_lists[symbol]; in BrotliBuildHuffmanTable()
249 symbol = symbol_lists[symbol]; in BrotliBuildHuffmanTable()
Ddecode.c515 uint32_t* prev_code_len, uint16_t* symbol_lists, in ProcessSingleCodeLength() argument
519 symbol_lists[next_symbol[code_len]] = (uint16_t)(*symbol); in ProcessSingleCodeLength()
543 uint32_t* repeat_code_len, uint16_t* symbol_lists, in ProcessRepeatedCodeLength() argument
575 symbol_lists[next] = (uint16_t)*symbol; in ProcessRepeatedCodeLength()
596 uint16_t* symbol_lists = s->symbol_lists; in ReadSymbolCodeLengths() local
621 &prev_code_len, symbol_lists, code_length_histo, next_symbol); in ReadSymbolCodeLengths()
630 symbol_lists, code_length_histo, next_symbol); in ReadSymbolCodeLengths()
663 &s->prev_code_len, s->symbol_lists, s->code_length_histo, in SafeReadSymbolCodeLengths()
676 &s->repeat_code_len, s->symbol_lists, s->code_length_histo, in SafeReadSymbolCodeLengths()
822 s->symbol_lists[s->next_symbol[i]] = 0xFFFF; in ReadHuffmanCode()
[all …]
Dhuffman.h103 int root_bits, const uint16_t* const symbol_lists, uint16_t* count_arg);
Dstate.h178 uint16_t* symbol_lists; member
Dstate.c88 s->symbol_lists = &s->symbols_lists_array[BROTLI_HUFFMAN_MAX_CODE_LENGTH + 1]; in BrotliDecoderStateInit()