Home
last modified time | relevance | path

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

/external/llvm-project/clang/utils/perf-training/
Dperf-helper.py257 def form_by_call_order(symbol_lists): argument
260 return uniq(s for symbols in symbol_lists for s in symbols)
262 def form_by_call_order_fair(symbol_lists): argument
268 uniq_lists = [list(uniq(symbols)) for symbols in symbol_lists]
285 for symbols in symbol_lists
289 def form_by_frequency(symbol_lists): argument
294 for symbols in symbol_lists:
302 def form_by_random(symbol_lists): argument
304 merged_symbols = uniq(s for symbols in symbol_lists
309 def form_by_alphabetical(symbol_lists): argument
[all …]
/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.c520 uint32_t* prev_code_len, uint16_t* symbol_lists, in ProcessSingleCodeLength() argument
524 symbol_lists[next_symbol[code_len]] = (uint16_t)(*symbol); in ProcessSingleCodeLength()
548 uint32_t* repeat_code_len, uint16_t* symbol_lists, in ProcessRepeatedCodeLength() argument
580 symbol_lists[next] = (uint16_t)*symbol; in ProcessRepeatedCodeLength()
602 uint16_t* symbol_lists = h->symbol_lists; in ReadSymbolCodeLengths() local
627 &prev_code_len, symbol_lists, code_length_histo, next_symbol); in ReadSymbolCodeLengths()
636 symbol_lists, code_length_histo, next_symbol); in ReadSymbolCodeLengths()
670 &h->prev_code_len, h->symbol_lists, h->code_length_histo, in SafeReadSymbolCodeLengths()
683 &h->repeat_code_len, h->symbol_lists, h->code_length_histo, in SafeReadSymbolCodeLengths()
829 h->symbol_lists[h->next_symbol[i]] = 0xFFFF; in ReadHuffmanCode()
[all …]
Dhuffman.h97 int root_bits, const uint16_t* const symbol_lists, uint16_t* count);
Dstate.h210 uint16_t* symbol_lists; member