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.cc214 const int64_t b_fraction = IntegerFrExp(b, &b_shift); in IntegerDoubleMultiply() local
221 const int64_t result_fraction = (a_fraction * b_fraction) >> 32; in IntegerDoubleMultiply()
229 const int64_t b_fraction = IntegerFrExp(b, &b_shift); in IntegerDoubleCompare() local
237 if ((a_fraction == 0) && (b_fraction < 0)) { in IntegerDoubleCompare()
239 } else if ((a_fraction < 0) && (b_fraction == 0)) { in IntegerDoubleCompare()
245 } else if (a_fraction < b_fraction) { in IntegerDoubleCompare()
247 } else if (a_fraction > b_fraction) { in IntegerDoubleCompare()