HomeSort by relevance Sort by last modified time
    Searched refs:val_hi (Results 1 - 13 of 13) sorted by null

  /bionic/libm/upstream-freebsd/lib/msun/src/
e_log2.c 44 double f,hfsq,hi,lo,r,val_hi,val_lo,w,y; local
92 * This uses Dekker's theorem to normalize y+val_hi, so the
104 val_hi = hi*ivln2hi;
107 /* spadd(val_hi, val_lo, y), except for not using double_t: */
108 w = y + val_hi;
109 val_lo += (y - w) + val_hi;
110 val_hi = w;
112 return val_lo + val_hi;
e_log10.c 44 double f,hfsq,hi,lo,r,val_hi,val_lo,w,y,y2; local
75 val_hi = hi*ivln10hi;
85 w = y2 + val_hi;
86 val_lo += (y2 - w) + val_hi;
87 val_hi = w;
89 return val_lo + val_hi;
  /ndk/sources/android/support/src/msun/
e_log2.c 44 double f,hfsq,hi,lo,r,val_hi,val_lo,w,y; local
92 * This uses Dekker's theorem to normalize y+val_hi, so the
104 val_hi = hi*ivln2hi;
107 /* spadd(val_hi, val_lo, y), except for not using double_t: */
108 w = y + val_hi;
109 val_lo += (y - w) + val_hi;
110 val_hi = w;
112 return val_lo + val_hi;
  /bionic/libm/upstream-freebsd/lib/msun/ld128/
s_logl.c 455 long double d, val_hi, val_lo; local
553 val_hi = d;
559 _3sumF(val_hi, val_lo, F_hi(i) + dk * ln2_hi);
560 RETURN2(rp, val_hi, val_lo);
566 long double d, d_hi, f_lo, val_hi, val_lo; local
662 val_hi = d_hi;
668 _3sumF(val_hi, val_lo, F_hi(i) + dk * ln2_hi);
669 RETURN2PI(val_hi, val_lo);
  /external/valgrind/main/memcheck/tests/amd64/
insn-pmovmskb.c 52 static void doit(ULong vbits_hi, ULong vbits_lo, ULong val_hi, ULong val_lo)
55 V128 val = { { val_lo, val_hi } };
  /art/compiler/dex/quick/arm/
int_arm.cc 158 int32_t val_hi = High32Bits(val); local
160 DCHECK_GE(ModifiedImmediate(val_hi), 0);
178 OpCmpImmBranch(kCondNe, high_reg, val_hi, (ccode == kCondEq) ? not_taken : taken);
181 OpCmpImmBranch(kCondLt, high_reg, val_hi, taken);
182 OpCmpImmBranch(kCondGt, high_reg, val_hi, not_taken);
186 OpCmpImmBranch(kCondLt, high_reg, val_hi, taken);
187 OpCmpImmBranch(kCondGt, high_reg, val_hi, not_taken);
191 OpCmpImmBranch(kCondGt, high_reg, val_hi, taken);
192 OpCmpImmBranch(kCondLt, high_reg, val_hi, not_taken);
196 OpCmpImmBranch(kCondGt, high_reg, val_hi, taken)
1557 uint32_t val_hi = High32Bits(val); local
    [all...]
utility_arm.cc 644 int32_t val_hi = High32Bits(value); local
647 if ((val_lo == 0) && (val_hi == 0)) {
663 if ((InexpensiveConstantInt(val_lo) && (InexpensiveConstantInt(val_hi)))) {
665 LoadConstantNoClobber(r_dest.GetHigh(), val_hi);
670 LIR* data_target = ScanLiteralPoolWide(literal_list_, val_lo, val_hi);
672 data_target = AddWideData(&literal_list_, val_lo, val_hi);
    [all...]
  /art/compiler/dex/quick/x86/
int_x86.cc 450 int32_t val_hi = High32Bits(val); local
459 } else if (is_equality_test && val_hi == 0 && val_lo > 0) {
495 NewLIR2(kX86Sbb32RI, high_reg.GetReg(), val_hi);
510 NewLIR2(kX86Sbb32RI, high_reg.GetReg(), val_hi);
517 NewLIR2(kX86Sbb32RI, t_reg.GetReg(), val_hi);
1403 int32_t val_hi = High32Bits(val); local
2506 int32_t val_hi = High32Bits(val); local
2582 int32_t val_hi = High32Bits(val); local
    [all...]
utility_x86.cc 562 int32_t val_hi = High32Bits(value); local
573 LIR* data_target = ScanLiteralPoolWide(literal_list_, val_lo, val_hi);
575 data_target = AddWideData(&literal_list_, val_lo, val_hi);
604 if (val_hi != 0) {
606 LoadConstantNoClobber(r_dest_hi, val_hi);
620 LoadConstantNoClobber(r_dest.GetHigh(), val_hi);
627 res = NewLIR3(kX86Mov64RI64, r_dest.GetReg(), val_hi, val_lo);
    [all...]
target_x86.cc 914 int32_t val_hi = High32Bits(value); local
922 store = NewLIR3(kX86Mov32MI, r_base, displacement + HIWORD_OFFSET, val_hi);
    [all...]
  /art/compiler/dex/quick/arm64/
utility_arm64.cc 147 int32_t val_hi = High32Bits(value); local
148 LIR* data_target = ScanLiteralPoolWide(literal_list_, val_lo, val_hi);
150 data_target = AddWideData(&literal_list_, val_lo, val_hi);
524 int32_t val_hi = High32Bits(value); local
525 LIR* data_target = ScanLiteralPoolWide(literal_list_, val_lo, val_hi);
527 data_target = AddWideData(&literal_list_, val_lo, val_hi);
    [all...]
  /art/compiler/dex/quick/
codegen_util.cc 373 LIR* Mir2Lir::ScanLiteralPoolWide(LIR* data_target, int val_lo, int val_hi) {
377 if (lo_match && (data_target->operands[0] == val_hi)) {
379 lo_target->operands[1] = val_hi;
424 LIR* Mir2Lir::AddWideData(LIR* *constant_list_p, int val_lo, int val_hi) {
425 AddWordData(constant_list_p, val_hi);
    [all...]
mir_to_lir.h 686 LIR* ScanLiteralPoolWide(LIR* data_target, int val_lo, int val_hi);
689 LIR* AddWideData(LIR* *constant_list_p, int val_lo, int val_hi);
    [all...]

Completed in 1147 milliseconds