Home
last modified time | relevance | path

Searched refs:yhi (Results 1 – 6 of 6) 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/python/cpython3/Lib/
Ddatetime.py936 yhi, ylo = divmod(self._year, 256)
937 return bytes([yhi, ylo, self._month, self._day]),
940 yhi, ylo, self._month, self._day = string
941 self._year = yhi * 256 + ylo
1897 yhi, ylo = divmod(self._year, 256)
1903 basestate = bytes([yhi, ylo, m, self._day,
1914 (yhi, ylo, m, self._day, self._hour,
1922 self._year = yhi * 256 + ylo