Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/lite/kernels/internal/reference/
Dhard_swish.h41 std::int32_t ab_32 = a_32 * b_32; in SaturatingDoublingHighMul() local
42 std::int16_t ab_x2_high16 = static_cast<std::int16_t>((ab_32) / (1 << 15)); in SaturatingDoublingHighMul()
/external/gemmlowp/fixedpoint/
Dfixedpoint.h358 std::int32_t ab_32 = a_32 * b_32;
359 std::int16_t nudge = ab_32 >= 0 ? (1 << 14) : (1 - (1 << 14));
361 static_cast<std::int16_t>((ab_32 + nudge) / (1 << 15));