Home
last modified time | relevance | path

Searched refs:x_log2 (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/lite/kernels/internal/
Dquantization_util.cc361 const float x_log2 = std::log(x) * (1.0f / std::log(2.0f)); in CheckedLog2() local
362 const float x_log2_rounded = TfLiteRound(x_log2); in CheckedLog2()
363 const float x_log2_fracpart = x_log2 - x_log2_rounded; in CheckedLog2()
/external/v8/src/runtime/
Druntime-numbers.cc127 int x_log2 = 31 - base::bits::CountLeadingZeros(x_scaled); in RUNTIME_FUNCTION() local
128 int x_log10 = ((x_log2 + 1) * 1233) >> 12; in RUNTIME_FUNCTION()