HomeSort by relevance Sort by last modified time
    Searched refs:Float64LessThan (Results 1 - 14 of 14) sorted by null

  /external/v8/src/builtins/
builtins-math.cc 456 GotoIf(Float64LessThan(x_value, Float64Constant(0.0)), &if_xisnegative);
457 GotoIf(Float64LessThan(Float64Constant(0.0), x_value), &if_xispositive);
builtins-string.cc     [all...]
builtins-number.cc 305 GotoIfNot(Float64LessThan(input_value_abs, Float64Constant(1e9)),
307 Branch(Float64LessThan(Float64Constant(0.01), input_value_abs),
    [all...]
  /external/v8/src/compiler/
effect-control-linearizer.cc     [all...]
raw-machine-assembler.h 524 Node* Float64LessThan(Node* a, Node* b) {
525 return AddNode(machine()->Float64LessThan(), a, b);
530 Node* Float64GreaterThan(Node* a, Node* b) { return Float64LessThan(b, a); }
simplified-lowering.cc     [all...]
code-assembler.h 52 V(Float64LessThan) \
graph-assembler.h 56 V(Float64LessThan) \
machine-operator.h 357 const Operator* Float64LessThan();
representation-change.cc 746 return jsgraph()->graph()->NewNode(machine()->Float64LessThan(),
    [all...]
opcodes.h 374 V(Float64LessThan) \
machine-operator.cc 207 V(Float64LessThan, Operator::kNoProperties, 2, 0, 1) \
    [all...]
wasm-compiler.cc 735 op = m->Float64LessThan();
741 op = m->Float64LessThan();
    [all...]
  /external/v8/src/
code-stub-assembler.cc 251 GotoIfNot(Float64LessThan(var_x.value(), x), &return_x);
260 GotoIfNot(Float64LessThan(x, zero), &return_x);
312 GotoIfNot(Float64LessThan(x, zero), &return_x);
317 GotoIfNot(Float64LessThan(var_x.value(), minus_x), &return_minus_x);
341 GotoIf(Float64LessThan(f_and_half, x), &return_f_plus_one);
342 GotoIf(Float64LessThan(x, f_and_half), &return_f);
403 GotoIfNot(Float64LessThan(x, zero), &return_x);
887 Branch(Float64LessThan(Float64Constant(0.0), Float64Abs(value_value)),
    [all...]

Completed in 1087 milliseconds