Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/lite/kernels/internal/
Dquantization_util.cc229 const int64_t b_fraction = IntegerFrExp(b, &b_shift); in IntegerDoubleMultiply() local
236 const int64_t result_fraction = (a_fraction * b_fraction) >> 32; in IntegerDoubleMultiply()
244 const int64_t b_fraction = IntegerFrExp(b, &b_shift); in IntegerDoubleCompare() local
252 if ((a_fraction == 0) && (b_fraction < 0)) { in IntegerDoubleCompare()
254 } else if ((a_fraction < 0) && (b_fraction == 0)) { in IntegerDoubleCompare()
260 } else if (a_fraction < b_fraction) { in IntegerDoubleCompare()
262 } else if (a_fraction > b_fraction) { in IntegerDoubleCompare()