HomeSort by relevance Sort by last modified time
    Searched defs:val_hi (Results 1 - 5 of 5) 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;
  /art/compiler/dex/quick/x86/
utility_x86.cc 319 int32_t val_hi = High32Bits(value); local
331 if (val_hi != 0) {
332 LoadConstantNoClobber(r_dest_hi, val_hi);
339 LoadConstantNoClobber(r_dest_hi, val_hi);
  /art/compiler/dex/quick/arm/
utility_arm.cc 593 int32_t val_hi = High32Bits(value); local
596 if ((val_lo == 0) && (val_hi == 0)) {
610 if ((InexpensiveConstantInt(val_lo) && (InexpensiveConstantInt(val_hi)))) {
612 LoadConstantNoClobber(r_dest_hi, val_hi);
617 LIR* data_target = ScanLiteralPoolWide(literal_list_, val_lo, val_hi);
619 data_target = AddWideData(&literal_list_, val_lo, val_hi);
int_arm.cc 123 int32_t val_hi = High32Bits(val); local
125 DCHECK_GE(ModifiedImmediate(val_hi), 0);
151 OpCmpImmBranch(kCondNe, high_reg, val_hi, target);
154 OpCmpImmBranch(kCondLt, high_reg, val_hi, taken);
155 OpCmpImmBranch(kCondGt, high_reg, val_hi, not_taken);
159 OpCmpImmBranch(kCondLt, high_reg, val_hi, taken);
160 OpCmpImmBranch(kCondGt, high_reg, val_hi, not_taken);
164 OpCmpImmBranch(kCondGt, high_reg, val_hi, taken);
165 OpCmpImmBranch(kCondLt, high_reg, val_hi, not_taken);
169 OpCmpImmBranch(kCondGt, high_reg, val_hi, taken)
1089 uint32_t val_hi = High32Bits(val); local
    [all...]

Completed in 75 milliseconds