/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/ |
bignum-dtoa.cc | 413 numerator->ShiftLeft(Double(v).Exponent()); 420 denominator->ShiftLeft(1); 421 numerator->ShiftLeft(1); 425 delta_plus->ShiftLeft(Double(v).Exponent()); 428 delta_minus->ShiftLeft(Double(v).Exponent()); 439 denominator->ShiftLeft(1); // *2 440 numerator->ShiftLeft(1); // *2 441 delta_plus->ShiftLeft(1); // *2 464 denominator->ShiftLeft(-exponent); 469 denominator->ShiftLeft(1) [all...] |
bignum.h | 61 void ShiftLeft(int shift_amount);
|
strtod.cc | 398 boundary.ShiftLeft(upper_boundary.e()); 400 input.ShiftLeft(-upper_boundary.e());
|
bignum.cc | 242 void Bignum::ShiftLeft(int shift_amount) { 340 ShiftLeft(exponent); 485 ShiftLeft(shifts * power_exponent);
|
/external/chromium_org/v8/src/ |
bignum-dtoa.cc | 414 numerator->ShiftLeft(Double(v).Exponent()); 421 denominator->ShiftLeft(1); 422 numerator->ShiftLeft(1); 426 delta_plus->ShiftLeft(Double(v).Exponent()); 429 delta_minus->ShiftLeft(Double(v).Exponent()); 440 denominator->ShiftLeft(1); // *2 441 numerator->ShiftLeft(1); // *2 442 delta_plus->ShiftLeft(1); // *2 465 denominator->ShiftLeft(-exponent); 470 denominator->ShiftLeft(1) [all...] |
bignum.h | 58 void ShiftLeft(int shift_amount);
|
strtod.cc | 399 boundary.ShiftLeft(upper_boundary.e()); 401 input.ShiftLeft(-upper_boundary.e());
|
bignum.cc | 241 void Bignum::ShiftLeft(int shift_amount) { 339 ShiftLeft(exponent); 484 ShiftLeft(shifts * power_exponent);
|
/external/v8/src/ |
bignum-dtoa.cc | 414 numerator->ShiftLeft(Double(v).Exponent()); 421 denominator->ShiftLeft(1); 422 numerator->ShiftLeft(1); 426 delta_plus->ShiftLeft(Double(v).Exponent()); 429 delta_minus->ShiftLeft(Double(v).Exponent()); 440 denominator->ShiftLeft(1); // *2 441 numerator->ShiftLeft(1); // *2 442 delta_plus->ShiftLeft(1); // *2 465 denominator->ShiftLeft(-exponent); 470 denominator->ShiftLeft(1) [all...] |
bignum.h | 58 void ShiftLeft(int shift_amount);
|
strtod.cc | 399 boundary.ShiftLeft(upper_boundary.e()); 401 input.ShiftLeft(-upper_boundary.e());
|
bignum.cc | 240 void Bignum::ShiftLeft(int shift_amount) { 338 ShiftLeft(exponent); 483 ShiftLeft(shifts * power_exponent);
|
/external/chromium_org/v8/test/cctest/ |
test-bignum.cc | 120 TEST(ShiftLeft) { 124 bignum.ShiftLeft(100); 129 bignum.ShiftLeft(1); 134 bignum.ShiftLeft(4); 139 bignum.ShiftLeft(32); 144 bignum.ShiftLeft(64); 149 bignum.ShiftLeft(64); 152 bignum.ShiftLeft(1); 197 bignum.ShiftLeft(100); 203 bignum.ShiftLeft(100) [all...] |
test-strtod.cc | 387 other.ShiftLeft(diy_fp.e()); 389 bignum.ShiftLeft(-diy_fp.e());
|
/external/v8/test/cctest/ |
test-bignum.cc | 120 TEST(ShiftLeft) { 124 bignum.ShiftLeft(100); 129 bignum.ShiftLeft(1); 134 bignum.ShiftLeft(4); 139 bignum.ShiftLeft(32); 144 bignum.ShiftLeft(64); 149 bignum.ShiftLeft(64); 152 bignum.ShiftLeft(1); 197 bignum.ShiftLeft(100); 203 bignum.ShiftLeft(100) [all...] |
test-strtod.cc | 362 other.ShiftLeft(diy_fp.e()); 364 bignum.ShiftLeft(-diy_fp.e());
|
/external/qemu-pc-bios/bochs/bios/ |
acpi-dsdt.dsl | 111 Store(ShiftLeft(1, nr), B0EJ) \ 471 ShiftLeft (One, Local0, TMP) 518 ShiftLeft (One, Local0, TMP) 565 ShiftLeft (One, Local0, TMP) 612 ShiftLeft (One, Local0, TMP) 665 If (And(\_SB.PCI0.PCIU, ShiftLeft(1, nr))) { \ 668 If (And(\_SB.PCI0.PCID, ShiftLeft(1, nr))) { \
|
/external/llvm/lib/Transforms/InstCombine/ |
InstCombineMulDivRem.cpp | 787 Instruction *ShiftLeft = cast<Instruction>(Op1); 788 if (isa<ZExtInst>(ShiftLeft)) 789 ShiftLeft = cast<Instruction>(ShiftLeft->getOperand(0)); 792 cast<Constant>(ShiftLeft->getOperand(0))->getUniqueInteger(); 793 Value *N = ShiftLeft->getOperand(1); [all...] |