Home
last modified time | relevance | path

Searched refs:block_size_log2 (Results 1 – 5 of 5) sorted by relevance

/external/ruy/ruy/
Dblock_map.cc216 int GetMultithreadingScore(int block_size_log2, int rows, int cols, in GetMultithreadingScore() argument
218 const int num_full_blocks_of_rows = rows >> block_size_log2; in GetMultithreadingScore()
219 const int num_full_blocks_of_cols = cols >> block_size_log2; in GetMultithreadingScore()
247 int GetCacheLocalityScore(int block_size_log2, int rows, int cols, int depth, in GetCacheLocalityScore() argument
258 const int block_rows = std::min(1 << block_size_log2, rows); in GetCacheLocalityScore()
259 const int block_cols = std::min(1 << block_size_log2, cols); in GetCacheLocalityScore()
288 int GetKernelAmortizationScore(int block_size_log2, int rows, int cols, in GetKernelAmortizationScore() argument
290 const int block_rows = std::min(1 << block_size_log2, rows); in GetKernelAmortizationScore()
291 const int block_cols = std::min(1 << block_size_log2, cols); in GetKernelAmortizationScore()
398 for (int block_size_log2 = kernel_size_log2; in MakeBlockMap() local
[all …]
Dtrace.h660 block_size_log2, score, multithreading_score, cache_locality_score, \
/external/libgav1/libgav1/src/tile/bitstream/
Dpartition.cc86 const int block_size_log2 = k4x4WidthLog2[block_size]; in GetPartitionCdf() local
91 ->size] < block_size_log2); in GetPartitionCdf()
97 ->size] < block_size_log2); in GetPartitionCdf()
100 return symbol_decoder_context_.partition_cdf[block_size_log2 - 1][context]; in GetPartitionCdf()
/external/libgav1/libgav1/src/
Dsymbol_decoder_context.cc38 int block_size_log2 = k4x4WidthLog2[kBlock8x8]; in ResetPartitionCounters() local
41 SymbolDecoderContext::PartitionCdfSize(block_size_log2++); in ResetPartitionCounters()
308 int SymbolDecoderContext::PartitionCdfSize(int block_size_log2) { in PartitionCdfSize() argument
309 assert(block_size_log2 > 0); in PartitionCdfSize()
310 assert(block_size_log2 < 6); in PartitionCdfSize()
312 switch (block_size_log2) { in PartitionCdfSize()
Dsymbol_decoder_context.h102 static int PartitionCdfSize(int block_size_log2);