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

  /external/v8/src/compiler/
common-operator.h 32 enum class BranchHint : uint8_t { kNone, kTrue, kFalse };
39 return BranchHint::kFalse;
40 case BranchHint::kFalse:
common-operator-reducer.cc 22 enum class Decision { kUnknown, kTrue, kFalse };
28 return mcond.Value() ? Decision::kTrue : Decision::kFalse;
32 return mcond.Value() ? Decision::kTrue : Decision::kFalse;
36 return mcond.Value()->BooleanValue() ? Decision::kTrue : Decision::kFalse;
117 Replace(use, (decision == Decision::kFalse) ? control : dead());
316 case Decision::kFalse:
change-lowering.cc 190 Node* branch_zero = graph()->NewNode(common()->Branch(BranchHint::kFalse),
202 common()->Branch(BranchHint::kFalse), check_negative, if_zero);
222 Node* branch_ovf = graph()->NewNode(common()->Branch(BranchHint::kFalse),
252 graph()->NewNode(common()->Branch(BranchHint::kFalse), ovf, control);
285 graph()->NewNode(common()->Branch(BranchHint::kFalse), check, control);
338 graph()->NewNode(common()->Branch(BranchHint::kFalse), check1, control);
382 graph()->NewNode(common()->Branch(BranchHint::kFalse), check, control);
js-native-context-specialization.cc 239 Node* branch = graph()->NewNode(common()->Branch(BranchHint::kFalse),
331 Node* branch = graph()->NewNode(common()->Branch(BranchHint::kFalse),
530 graph()->NewNode(common()->Branch(BranchHint::kFalse), check, control);
    [all...]
common-operator.cc 25 case BranchHint::kFalse:
322 BranchOperator<BranchHint::kFalse> kBranchFalseOperator;
483 case BranchHint::kFalse:
js-global-object-specialization.cc 208 Node* branch = graph()->NewNode(common()->Branch(BranchHint::kFalse),
js-typed-lowering.cc     [all...]
simplified-lowering.cc     [all...]
ast-graph-builder.cc     [all...]
machine-operator-reducer.cc 604 common()->Select(MachineRepresentation::kWord32, BranchHint::kFalse));
    [all...]
scheduler.cc 444 case BranchHint::kFalse:
    [all...]
wasm-compiler.cc 157 BranchHint hint = iftrue ? BranchHint::kFalse : BranchHint::kTrue;
    [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     [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/
json-stringifier.h 318 case Oddball::kFalse:
objects-inl.h 1080 return IsOddball() && Oddball::cast(this)->kind() == Oddball::kFalse;
    [all...]
objects.h     [all...]
  /external/v8/src/heap/
heap.cc     [all...]

Completed in 1871 milliseconds