HomeSort by relevance Sort by last modified time
    Searched refs:ShiftLeft (Results 1 - 25 of 39) 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);
code-factory.h 90 static Callable ShiftLeft(Isolate* isolate);
code-factory.cc 263 Callable CodeFactory::ShiftLeft(Isolate* isolate) {
code-stubs.h 112 V(ShiftLeft) \
767 DEFINE_TURBOFAN_BINARY_OP_CODE_STUB(ShiftLeft, TurboFanCodeStub);
    [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/test/cctest/interpreter/bytecode_expectations/
PrimitiveExpressions.golden 201 B(ShiftLeft), R(0),
  /external/v8/test/unittests/compiler/
typer-unittest.cc 283 TestBinaryBitOp(javascript_.ShiftLeft(hints_), shift_left);
366 TEST_BINARY_MONOTONICITY(ShiftLeft)
js-typed-lowering-unittest.cc 420 javascript()->ShiftLeft(hints), lhs, NumberConstant(rhs), context,
436 Reduction r = Reduce(graph()->NewNode(javascript()->ShiftLeft(hints), lhs,
    [all...]
  /external/v8/src/runtime/
runtime-operators.cc 62 RETURN_RESULT_OR_FAILURE(isolate, Object::ShiftLeft(isolate, lhs, rhs));
  /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 399 const Operator* ShiftLeft(BinaryOperationHints hints);
js-operator.cc 487 const Operator* JSOperatorBuilder::ShiftLeft(BinaryOperationHints hints) {
    [all...]
js-generic-lowering.cc 73 REPLACE_STUB_CALL(ShiftLeft)
  /external/v8/src/compiler/s390/
code-generator-s390.cc     [all...]
  /external/v8/src/s390/
macro-assembler-s390.h 160 #define ShiftLeftP ShiftLeft
363 void ShiftLeft(Register dst, Register src, Register val);
364 void ShiftLeft(Register dst, Register src, const Operand& val);
    [all...]
  /external/v8/src/interpreter/
bytecodes.h 156 V(ShiftLeft, AccumulatorUse::kReadWrite, OperandType::kReg) \
    [all...]

Completed in 247 milliseconds

1 2