Home
last modified time | relevance | path

Searched refs:ShiftLeft (Results 1 – 16 of 16) sorted by relevance

/external/chromium_org/v8/test/cctest/
Dtest-bignum.cc120 TEST(ShiftLeft) { in TEST() argument
124 bignum.ShiftLeft(100); in TEST()
129 bignum.ShiftLeft(1); in TEST()
134 bignum.ShiftLeft(4); in TEST()
139 bignum.ShiftLeft(32); in TEST()
144 bignum.ShiftLeft(64); in TEST()
149 bignum.ShiftLeft(64); in TEST()
152 bignum.ShiftLeft(1); in TEST()
197 bignum.ShiftLeft(100); in TEST()
203 bignum.ShiftLeft(100); in TEST()
[all …]
Dtest-strtod.cc388 other.ShiftLeft(diy_fp.e()); in CompareBignumToDiyFp()
390 bignum.ShiftLeft(-diy_fp.e()); in CompareBignumToDiyFp()
/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
Dbignum-dtoa.cc413 numerator->ShiftLeft(Double(v).Exponent()); in InitialScaledStartValuesPositiveExponent()
420 denominator->ShiftLeft(1); in InitialScaledStartValuesPositiveExponent()
421 numerator->ShiftLeft(1); in InitialScaledStartValuesPositiveExponent()
425 delta_plus->ShiftLeft(Double(v).Exponent()); in InitialScaledStartValuesPositiveExponent()
428 delta_minus->ShiftLeft(Double(v).Exponent()); in InitialScaledStartValuesPositiveExponent()
439 denominator->ShiftLeft(1); // *2 in InitialScaledStartValuesPositiveExponent()
440 numerator->ShiftLeft(1); // *2 in InitialScaledStartValuesPositiveExponent()
441 delta_plus->ShiftLeft(1); // *2 in InitialScaledStartValuesPositiveExponent()
464 denominator->ShiftLeft(-exponent); in InitialScaledStartValuesNegativeExponentPositivePower()
469 denominator->ShiftLeft(1); in InitialScaledStartValuesNegativeExponentPositivePower()
[all …]
Dstrtod.cc398 boundary.ShiftLeft(upper_boundary.e()); in BignumStrtod()
400 input.ShiftLeft(-upper_boundary.e()); in BignumStrtod()
Dbignum.h61 void ShiftLeft(int shift_amount);
Dbignum.cc242 void Bignum::ShiftLeft(int shift_amount) { in ShiftLeft() function in WTF::double_conversion::Bignum
340 ShiftLeft(exponent); in MultiplyByPowerOfTen()
485 ShiftLeft(shifts * power_exponent); in AssignPowerUInt16()
/external/chromium_org/v8/src/
Dbignum-dtoa.cc392 numerator->ShiftLeft(Double(v).Exponent()); in InitialScaledStartValuesPositiveExponent()
399 denominator->ShiftLeft(1); in InitialScaledStartValuesPositiveExponent()
400 numerator->ShiftLeft(1); in InitialScaledStartValuesPositiveExponent()
404 delta_plus->ShiftLeft(Double(v).Exponent()); in InitialScaledStartValuesPositiveExponent()
407 delta_minus->ShiftLeft(Double(v).Exponent()); in InitialScaledStartValuesPositiveExponent()
418 denominator->ShiftLeft(1); // *2 in InitialScaledStartValuesPositiveExponent()
419 numerator->ShiftLeft(1); // *2 in InitialScaledStartValuesPositiveExponent()
420 delta_plus->ShiftLeft(1); // *2 in InitialScaledStartValuesPositiveExponent()
443 denominator->ShiftLeft(-exponent); in InitialScaledStartValuesNegativeExponentPositivePower()
448 denominator->ShiftLeft(1); in InitialScaledStartValuesNegativeExponentPositivePower()
[all …]
Dstrtod.cc379 boundary.ShiftLeft(upper_boundary.e()); in BignumStrtod()
381 input.ShiftLeft(-upper_boundary.e()); in BignumStrtod()
Dbignum.h35 void ShiftLeft(int shift_amount);
Dbignum.cc219 void Bignum::ShiftLeft(int shift_amount) { in ShiftLeft() function in v8::internal::Bignum
317 ShiftLeft(exponent); in MultiplyByPowerOfTen()
462 ShiftLeft(shifts * power_exponent); in AssignPowerUInt16()
/external/qemu-pc-bios/bochs/bios/
Dacpi-dsdt.dsl111 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/ExecutionEngine/RuntimeDyld/
DRuntimeDyldChecker.cpp73 BitwiseOr, ShiftLeft, ShiftRight }; enumerator
139 return std::make_pair(BinOpToken::ShiftLeft, in parseBinOpToken()
170 case BinOpToken::ShiftLeft: in computeBinOpResult()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineMulDivRem.cpp847 Instruction *ShiftLeft = cast<Instruction>(Op1); in foldUDivShl() local
848 if (isa<ZExtInst>(ShiftLeft)) in foldUDivShl()
849 ShiftLeft = cast<Instruction>(ShiftLeft->getOperand(0)); in foldUDivShl()
852 cast<Constant>(ShiftLeft->getOperand(0))->getUniqueInteger(); in foldUDivShl()
853 Value *N = ShiftLeft->getOperand(1); in foldUDivShl()
/external/chromium_org/v8/src/compiler/
Djs-operator.h95 const Operator* ShiftLeft() { BINOP(JSShiftLeft); } in ShiftLeft() function
Dast-graph-builder.cc1991 js_op = javascript()->ShiftLeft(); in BuildBinaryOp()
/external/chromium_org/v8/test/cctest/compiler/
Dtest-js-typed-lowering.cc286 set(i++, javascript.ShiftLeft(), true); in JSBitwiseShiftTypedLoweringTester()