Searched refs:FloorLog2 (Results 1 – 17 of 17) sorted by relevance
197 inline int FloorLog2(int32_t n) { in FloorLog2() function202 inline int FloorLog2(uint32_t n) { in FloorLog2() function207 inline int FloorLog2(int64_t n) { in FloorLog2() function212 inline int FloorLog2(uint64_t n) { in FloorLog2() function222 return (n < 2) ? 0 : FloorLog2(n - 1) + 1; in CeilLog2()
58 const int w = FloorLog2(n) + 1; in DecodeUniform()
1096 const int bits_used = 15 ^ FloorLog2(values_in_range_); in NormalizeRange()
589 _mm_cvtsi32_si128(std::max(0, damping - FloorLog2(primary_strength))); in CdefFilter_AVX2()594 assert(damping - FloorLog2(secondary_strength) >= 0); in CdefFilter_AVX2()596 _mm_cvtsi32_si128(damping - FloorLog2(secondary_strength)); in CdefFilter_AVX2()
527 _mm_cvtsi32_si128(std::max(0, damping - FloorLog2(primary_strength))); in CdefFilter_SSE4_1()532 assert(damping - FloorLog2(secondary_strength) >= 0); in CdefFilter_SSE4_1()534 _mm_cvtsi32_si128(damping - FloorLog2(secondary_strength)); in CdefFilter_SSE4_1()
495 vdupq_n_s16(-std::max(0, damping - FloorLog2(primary_strength))); in CdefFilter_NEON()500 assert(damping - FloorLog2(secondary_strength) >= 0); in CdefFilter_NEON()502 vdupq_n_s16(-(damping - FloorLog2(secondary_strength))); in CdefFilter_NEON()
37 return RightShiftWithRounding(sum, FloorLog2(width) + FloorLog2(height)); in Average()
69 const int n = FloorLog2(std::abs(value)); in GenerateApproximateDivisor()
377 const int superblock_size4x4_log2 = FloorLog2(superblock_size4x4); in DecodeSuperBlockRowInTile()
92 sum, FloorLog2(block_width) + FloorLog2(block_height)); in CflSubsampler_C()
113 damping = std::max(0, damping - FloorLog2(threshold)); in Constrain()
71 const int dc = sum >> FloorLog2(block_width); in DcTop()88 const int dc = sum >> FloorLog2(block_height); in DcLeft()
89 return FloorLog2(dimension) - 2; in GetInterIntraMaskLookupIndex()783 dsp_.weight_mask[FloorLog2(prediction_width) - 3] in InterPrediction()784 [FloorLog2(prediction_height) - 3] in InterPrediction()
423 ((variance >> 6) != 0) ? std::min(FloorLog2(variance >> 6), 12) : 0; in ApplyCdefForOneUnit()
130 row_rect > 0 ? FloorLog2(row_rect) : FloorLog2(col_rect); in UseCpuBackendGemm()131 int batch_lg2 = FloorLog2(batch); in UseCpuBackendGemm()
270 inline Integer FloorLog2(Integer n) { in FloorLog2() function
58 EXPECT_EQ(::tflite::FloorLog2(i), in TEST()