/external/srec/srec/cfront/ |
himul32.h | 126 asr_uint32_t xhi, xlo, yhi, ylo; 141 xhi = x >> 16; /* <= 2**15 */ 148 // xhi <= 2**15 and ylo <= 2**16-1, so 149 // xhi * ylo <= 2**31 - 2**15. 153 mid = xhi * ylo + yhi * xlo; 154 hi = xhi * yhi;
|
/external/chromium_org/third_party/opus/src/silk/ |
A2NLSF.c | 119 opus_int32 xlo, xhi, xmid; local 155 xhi = silk_LSFCosTab_FIX_Q12[ k ]; /* Q12 */ 156 yhi = silk_A2NLSF_eval_poly( p, xhi, dd ); 171 xmid = silk_RSHIFT_ROUND( xlo + xhi, 1 ); 177 xhi = xmid; 217 xlo = xhi;
|
/external/chromium_org/third_party/skia/src/opts/ |
SkBitmapProcState_matrix_clamp_neon.h | 308 * xlo,xhi,ylo,yhi distribution and we can ignore the 'lo' 326 int16x4_t xhi, yhi; local 336 asm ("vld4.16 {d0-d3},[%4] /* xlo=%P0 xhi=%P1 ylo=%P2 yhi=%P3 */" 340 xhi = t_xhi; 344 /* clamp X>>16 (aka xhi) to 0..maxX */ 345 xhi = vmax_s16(xhi, zero4); /* now 0.. */ 346 xhi = vmin_s16(xhi, maxX4); /* now 0..maxX */ 360 asm ("vld4.16 {d4-d7},[%4] /* xlo=%P0 xhi=%P1 ylo=%P2 yhi=%P3 */ [all...] |
/external/skia/src/opts/ |
SkBitmapProcState_matrix_clamp_neon.h | 308 * xlo,xhi,ylo,yhi distribution and we can ignore the 'lo' 326 int16x4_t xhi, yhi; local 336 asm ("vld4.16 {d0-d3},[%4] /* xlo=%P0 xhi=%P1 ylo=%P2 yhi=%P3 */" 340 xhi = t_xhi; 344 /* clamp X>>16 (aka xhi) to 0..maxX */ 345 xhi = vmax_s16(xhi, zero4); /* now 0.. */ 346 xhi = vmin_s16(xhi, maxX4); /* now 0..maxX */ 360 asm ("vld4.16 {d4-d7},[%4] /* xlo=%P0 xhi=%P1 ylo=%P2 yhi=%P3 */ [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
mhlib.py | 884 def addpair(self, xlo, xhi): 885 if xlo > xhi: return 886 self.pairs.append((xlo, xhi)) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
mhlib.py | 884 def addpair(self, xlo, xhi): 885 if xlo > xhi: return 886 self.pairs.append((xlo, xhi)) [all...] |
/external/compiler-rt/test/Unit/ppc/ |
fixtfdi_test.c | 6 struct testVector { double xhi; double xlo; int64_t result; }; member in struct:testVector 461 input.hi = testCases[i].xhi;
|
qdiv_test.c | 20 double xhi; double xlo; member in struct:testVector 109 a.hi = edgeCases[i].xhi; [all...] |
qmul_test.c | 20 double xhi; double xlo; member in struct:testVector 109 a.hi = edgeCases[i].xhi; [all...] |
qadd_test.c | 20 double xhi; double xlo; member in struct:testVector 109 a.hi = edgeCases[i].xhi; [all...] |
qsub_test.c | 20 double xhi; double xlo; member in struct:testVector 109 a.hi = edgeCases[i].xhi; [all...] |