Home
last modified time | relevance | path

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

/external/libopus/silk/
DA2NLSF.c135 opus_int32 ylo, yhi, ymid, thr; in silk_A2NLSF() local
171 yhi = silk_A2NLSF_eval_poly( p, xhi, dd ); in silk_A2NLSF()
174 if( ( ylo <= 0 && yhi >= thr ) || ( ylo >= 0 && yhi <= -thr ) ) { in silk_A2NLSF()
175 if( yhi == 0 ) { in silk_A2NLSF()
193 yhi = ymid; in silk_A2NLSF()
205 den = ylo - yhi; in silk_A2NLSF()
212 ffrac += silk_DIV32( ylo, silk_RSHIFT( ylo - yhi, 8 - BIN_DIV_STEPS_A2NLSF_FIX ) ); in silk_A2NLSF()
233 ylo = yhi; in silk_A2NLSF()
/external/compiler-rt/test/builtins/Unit/ppc/
Dqsub_test.c21 double yhi; double ylo; member
111 b.hi = edgeCases[i].yhi; in testEdgeCases()
1822 b.hi = -accuracyTests[i].yhi; in testAccuracy()
Dqadd_test.c21 double yhi; double ylo; member
111 b.hi = edgeCases[i].yhi; in testEdgeCases()
1820 b.hi = accuracyTests[i].yhi; in testAccuracy()
Dqdiv_test.c21 double yhi; double ylo; member
111 b.hi = edgeCases[i].yhi; in testEdgeCases()
743 b.hi = accuracyTests[i].yhi; in testAccuracy()
Dqmul_test.c21 double yhi; double ylo; member
111 b.hi = edgeCases[i].yhi; in testEdgeCases()
741 b.hi = accuracyTests[i].yhi; in testAccuracy()
/external/arm-optimized-routines/math/
Dpow.c362 double_t yhi = asdouble (iy & -1ULL << 27); in pow() local
363 double_t ylo = y - yhi; in pow()
366 ehi = yhi * lhi; in pow()
/external/python/cpython3/Lib/
Ddatetime.py1075 yhi, ylo = divmod(self._year, 256)
1076 return bytes([yhi, ylo, self._month, self._day]),
1079 yhi, ylo, self._month, self._day = string
1080 self._year = yhi * 256 + ylo
2084 yhi, ylo = divmod(self._year, 256)
2090 basestate = bytes([yhi, ylo, m, self._day,
2101 (yhi, ylo, m, self._day, self._hour,
2109 self._year = yhi * 256 + ylo