HomeSort by relevance Sort by last modified time
    Searched refs:ShiftLeft (Results 1 - 25 of 29) sorted by null

1 2

  /external/v8/src/
bignum-dtoa.cc 390 numerator->ShiftLeft(Double(v).Exponent());
397 denominator->ShiftLeft(1);
398 numerator->ShiftLeft(1);
402 delta_plus->ShiftLeft(Double(v).Exponent());
405 delta_minus->ShiftLeft(Double(v).Exponent());
416 denominator->ShiftLeft(1); // *2
417 numerator->ShiftLeft(1); // *2
418 delta_plus->ShiftLeft(1); // *2
441 denominator->ShiftLeft(-exponent);
446 denominator->ShiftLeft(1)
    [all...]
bignum.h 37 void ShiftLeft(int shift_amount);
strtod.cc 378 boundary.ShiftLeft(upper_boundary.e());
380 input.ShiftLeft(-upper_boundary.e());
bignum.cc 219 void Bignum::ShiftLeft(int shift_amount) {
317 ShiftLeft(exponent);
462 ShiftLeft(shifts * power_exponent);
objects.h     [all...]
  /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 388 other.ShiftLeft(diy_fp.e());
390 bignum.ShiftLeft(-diy_fp.e());
  /external/gemmlowp/internal/
fixedpoint_neon.h 63 inline int32x4_t ShiftLeft(int32x4_t a, int offset) {
output.h 277 ShiftLeft(fixedpoint_input.raw(), 28 - inverse_amplitude_neg_exponent);
fixedpoint.h 75 tIntegerType ShiftLeft(tIntegerType a, int offset) {
  /external/v8/src/runtime/
runtime-operators.cc 139 Object::ShiftLeft(isolate, lhs, rhs));
151 isolate, result, Object::ShiftLeft(isolate, lhs, rhs, Strength::STRONG));
runtime.h 508 F(ShiftLeft, 2, 1) \
    [all...]
  /external/v8/test/unittests/compiler/
typer-unittest.cc 303 TestBinaryBitOp(javascript_.ShiftLeft(LanguageMode::SLOPPY, hints_),
305 TestBinaryBitOp(javascript_.ShiftLeft(LanguageMode::STRONG, hints_),
409 TEST_BINARY_MONOTONICITY(ShiftLeft)
js-typed-lowering-unittest.cc 440 graph()->NewNode(javascript()->ShiftLeft(language_mode, hints), lhs,
460 javascript()->ShiftLeft(language_mode, hints), lhs, rhs, context,
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp     [all...]
InstCombineCalls.cpp 203 bool ShiftLeft = false;
216 LogicalShift = false; ShiftLeft = false;
230 LogicalShift = true; ShiftLeft = false;
244 LogicalShift = true; ShiftLeft = true;
247 assert((LogicalShift || !ShiftLeft) && "Only logical shifts can shift left");
301 if (ShiftLeft)
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldChecker.cpp 92 ShiftLeft,
157 return std::make_pair(BinOpToken::ShiftLeft, Expr.substr(2).ltrim());
196 case BinOpToken::ShiftLeft:
    [all...]
  /external/v8/src/compiler/
js-operator.h 488 const Operator* ShiftLeft(LanguageMode language_mode,
js-operator.cc 630 const Operator* JSOperatorBuilder::ShiftLeft(LanguageMode language_mode,
    [all...]
bytecode-graph-builder.cc     [all...]
ast-graph-builder.cc     [all...]
  /external/v8/src/interpreter/
bytecodes.h 131 V(ShiftLeft, OperandType::kReg8) \
  /external/v8/test/cctest/compiler/
test-js-typed-lowering.cc 335 set(i++, javascript.ShiftLeft(language_mode_, hints), true);
    [all...]
  /external/v8/src/ic/
ic.cc     [all...]
  /external/v8/test/cctest/interpreter/
test-bytecode-generator.cc 391 B(ShiftLeft), R(1), //
    [all...]

Completed in 437 milliseconds

1 2