Home
last modified time | relevance | path

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

/external/ComputeLibrary/src/core/utils/quantization/
DAsymmHelpers.cpp65 int shift_exp = 0; in calculate_quantized_multiplier_less_than_one() local
66 const double q = std::frexp(multiplier, &shift_exp); in calculate_quantized_multiplier_less_than_one()
67 *right_shift = -1 * shift_exp; in calculate_quantized_multiplier_less_than_one()
97 int shift_exp = 0; in calculate_quantized_multiplier_greater_than_one() local
98 const double q = std::frexp(multiplier, &shift_exp); in calculate_quantized_multiplier_greater_than_one()
99 *left_shift = shift_exp; in calculate_quantized_multiplier_greater_than_one()
/external/rust/crates/serde_json/src/lexical/
Dalgorithm.rs25 let shift_exp = F::mantissa_limit(); in fast_path() localVariable
42 } else if exponent >= 0 && exponent <= max_exp + shift_exp { in fast_path()