Searched refs:yhi (Results 1 – 6 of 6) sorted by relevance
/external/libopus/silk/ |
D | A2NLSF.c | 135 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/ |
D | qsub_test.c | 21 double yhi; double ylo; member 111 b.hi = edgeCases[i].yhi; in testEdgeCases() 1822 b.hi = -accuracyTests[i].yhi; in testAccuracy()
|
D | qadd_test.c | 21 double yhi; double ylo; member 111 b.hi = edgeCases[i].yhi; in testEdgeCases() 1820 b.hi = accuracyTests[i].yhi; in testAccuracy()
|
D | qdiv_test.c | 21 double yhi; double ylo; member 111 b.hi = edgeCases[i].yhi; in testEdgeCases() 743 b.hi = accuracyTests[i].yhi; in testAccuracy()
|
D | qmul_test.c | 21 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/ |
D | datetime.py | 936 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
|