Searched refs:max_table_size (Results 1 - 6 of 6) sorted by relevance
/third_party/backends/testsuite/backend/genesys/ |
H A D | tests_motor.cpp | 34 unsigned max_table_size = 1024; in test_create_slope_table_small_full_step() local 42 auto table = create_slope_table_for_speed(slope, 5000, StepType::FULL, 4, 8, max_table_size); in test_create_slope_table_small_full_step() 52 table = create_slope_table_for_speed(slope, 3000, StepType::FULL, 4, 8, max_table_size); in test_create_slope_table_small_full_step() 64 unsigned max_table_size = 1024; in test_create_slope_table_small_full_step_target_speed_too_high() local 72 auto table = create_slope_table_for_speed(slope, 2000, StepType::FULL, 4, 8, max_table_size); in test_create_slope_table_small_full_step_target_speed_too_high() 84 unsigned max_table_size = 1024; in test_create_slope_table_small_half_step() local 92 auto table = create_slope_table_for_speed(slope, 5000, StepType::HALF, 4, 8, max_table_size); in test_create_slope_table_small_half_step() 102 table = create_slope_table_for_speed(slope, 3000, StepType::HALF, 4, 8, max_table_size); in test_create_slope_table_small_half_step() 114 unsigned max_table_size = 1024; in test_create_slope_table_large_full_step() local 145 auto table = create_slope_table_for_speed(slope, 3000, StepType::FULL, 4, 8, max_table_size); in test_create_slope_table_large_full_step() 194 unsigned max_table_size = 1024; test_create_slope_table_large_half_step() local [all...] |
/third_party/node/deps/brotli/c/dec/ |
H A D | state.c | 143 const size_t max_table_size = alphabet_size_limit + 376; in BrotliDecoderHuffmanTreeGroupInit() local 144 const size_t code_size = sizeof(HuffmanCode) * ntrees * max_table_size; in BrotliDecoderHuffmanTreeGroupInit()
|
/third_party/skia/third_party/externals/brotli/c/dec/ |
H A D | state.c | 143 const size_t max_table_size = alphabet_size_limit + 376; in BrotliDecoderHuffmanTreeGroupInit() local 144 const size_t code_size = sizeof(HuffmanCode) * ntrees * max_table_size; in BrotliDecoderHuffmanTreeGroupInit()
|
/third_party/node/deps/brotli/c/enc/ |
H A D | encode.c | 221 static size_t HashTableSize(size_t max_table_size, size_t input_size) { in HashTableSize() argument 223 while (htsize < max_table_size && htsize < input_size) { in HashTableSize() 236 const size_t max_table_size = MaxHashTableSize(quality); in GetHashTable() local 237 size_t htsize = HashTableSize(max_table_size, input_size); in GetHashTable() 239 BROTLI_DCHECK(max_table_size >= 256); in GetHashTable()
|
/third_party/skia/third_party/externals/brotli/c/enc/ |
H A D | encode.c | 221 static size_t HashTableSize(size_t max_table_size, size_t input_size) { in HashTableSize() argument 223 while (htsize < max_table_size && htsize < input_size) { in HashTableSize() 236 const size_t max_table_size = MaxHashTableSize(quality); in GetHashTable() local 237 size_t htsize = HashTableSize(max_table_size, input_size); in GetHashTable() 239 BROTLI_DCHECK(max_table_size >= 256); in GetHashTable()
|
/third_party/backends/backend/genesys/ |
H A D | genesys.cpp | 528 auto max_table_size = get_slope_table_max_size(dev->model->asic_type); in scanner_send_slope_table() local 529 table.reserve(max_table_size * 2); in scanner_send_slope_table() 530 while (table.size() < max_table_size * 2) { in scanner_send_slope_table()
|
Completed in 18 milliseconds