HomeSort by relevance Sort by last modified time
    Searched refs:val_hi (Results 1 - 7 of 7) 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/arm/
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...]
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);
  /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/
codegen_util.cc 296 LIR* Mir2Lir::ScanLiteralPoolWide(LIR* data_target, int val_lo, int val_hi) {
300 if (lo_match && (data_target->operands[0] == val_hi)) {
302 lo_target->operands[1] = val_hi;
334 LIR* Mir2Lir::AddWideData(LIR* *constant_list_p, int val_lo, int val_hi) {
335 AddWordData(constant_list_p, val_hi);
    [all...]
mir_to_lir.h 271 LIR* ScanLiteralPoolWide(LIR* data_target, int val_lo, int val_hi);
273 LIR* AddWideData(LIR* *constant_list_p, int val_lo, int val_hi);
    [all...]

Completed in 224 milliseconds