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

  /external/v8/src/compiler/
simplified-operator-reducer.cc 24 return IsSmiDouble(m.Value()) ? Decision::kTrue : Decision::kFalse;
26 if (m.IsAllocate()) return Decision::kFalse;
27 if (m.IsChangeBitToTagged()) return Decision::kFalse;
29 if (m.IsHeapConstant()) return Decision::kFalse;
134 if (DecideObjectIsSmi(input) == Decision::kFalse) {
153 case Decision::kFalse:
common-operator.h 24 enum class BranchHint : uint8_t { kNone, kTrue, kFalse };
31 return BranchHint::kFalse;
32 case BranchHint::kFalse:
common-operator-reducer.cc 26 return mcond.Value() ? Decision::kTrue : Decision::kFalse;
30 return mcond.Value()->BooleanValue() ? Decision::kTrue : Decision::kFalse;
112 Replace(use, (decision == Decision::kFalse) ? control : dead());
343 case Decision::kFalse:
effect-control-linearizer.cc 534 Node* branch_zero = graph()->NewNode(common()->Branch(BranchHint::kFalse),
545 Node* branch_negative = graph()->NewNode(common()->Branch(BranchHint::kFalse),
565 Node* branch_ovf = graph()->NewNode(common()->Branch(BranchHint::kFalse),
629 graph()->NewNode(common()->Branch(BranchHint::kFalse), ovf, control);
    [all...]
wasm-compiler.cc 145 BranchHint hint = iftrue ? BranchHint::kFalse : BranchHint::kTrue;
    [all...]
common-operator.cc 25 case BranchHint::kFalse:
381 BranchOperator<BranchHint::kFalse> kBranchFalseOperator;
556 case BranchHint::kFalse:
    [all...]
js-typed-lowering.cc     [all...]
simplified-lowering.cc     [all...]
ast-graph-builder.cc     [all...]
machine-operator-reducer.cc 660 common()->Select(MachineRepresentation::kWord32, BranchHint::kFalse));
    [all...]
scheduler.cc 452 case BranchHint::kFalse:
    [all...]
  /external/skia/bench/
Benchmark.h 39 kFalse
  /external/dbus-binding-generator/chromeos-dbus-bindings/
xml_interface_parser.h 63 static const char kFalse[];
xml_interface_parser.cc 38 const char XmlInterfaceParser::kFalse[] = "false";
158 CHECK(value == kTrue || value == kFalse);
161 CHECK(value == kTrue || value == kFalse);
  /external/v8/test/unittests/compiler/
diamond-unittest.cc 139 Diamond df(graph(), common(), Parameter(0), BranchHint::kFalse);
140 CHECK(BranchHint::kFalse == BranchHintOf(df.branch->op()));
common-operator-unittest.cc 168 BranchHint::kFalse};
dead-code-elimination-unittest.cc 75 BranchHint::kFalse};
common-operator-reducer-unittest.cc 54 const BranchHint kBranchHints[] = {BranchHint::kNone, BranchHint::kFalse,
scheduler-unittest.cc 530 Node* br = graph()->NewNode(common()->Branch(BranchHint::kFalse), p0, start);
  /external/v8/src/
globals.h 475 enum class Decision : uint8_t { kUnknown, kTrue, kFalse };
487 case Decision::kFalse:
    [all...]
json-stringifier.cc 305 case Oddball::kFalse:
objects.h     [all...]
  /external/boringssl/src/crypto/bytestring/
bytestring_test.cc 235 static const uint8_t kFalse[] = {0x0a, 3, CBS_ASN1_BOOLEAN, 1, 0x00};
253 CBS_init(&data, kFalse, sizeof(kFalse));
  /external/v8/src/heap/
heap.cc     [all...]

Completed in 819 milliseconds