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

1 2

  /external/v8/src/compiler/
common-operator.h 32 enum class BranchHint : uint8_t { kNone, kTrue, kFalse };
38 case BranchHint::kTrue:
41 return BranchHint::kTrue;
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;
114 Replace(use, (decision == Decision::kTrue) ? control : dead());
314 case Decision::kTrue:
js-native-context-specialization.cc 104 graph()->NewNode(common()->Branch(BranchHint::kTrue), check, control);
211 Node* branch = graph()->NewNode(common()->Branch(BranchHint::kTrue),
278 Node* branch = graph()->NewNode(common()->Branch(BranchHint::kTrue),
321 Node* branch = graph()->NewNode(common()->Branch(BranchHint::kTrue),
346 branch = graph()->NewNode(common()->Branch(BranchHint::kTrue),
639 Node* branch = graph()->NewNode(common()->Branch(BranchHint::kTrue),
654 Node* branch = graph()->NewNode(common()->Branch(BranchHint::kTrue),
679 branch = graph()->NewNode(common()->Branch(BranchHint::kTrue), check,
699 Node* branch = graph()->NewNode(common()->Branch(BranchHint::kTrue), check,
    [all...]
js-global-object-specialization.cc 189 graph()->NewNode(common()->Branch(BranchHint::kTrue), check, control);
230 graph()->NewNode(common()->Branch(BranchHint::kTrue), check, control);
js-call-reducer.cc 332 graph()->NewNode(common()->Branch(BranchHint::kTrue), check, control);
357 graph()->NewNode(common()->Branch(BranchHint::kTrue), check, control);
475 graph()->NewNode(common()->Branch(BranchHint::kTrue), check, control);
506 graph()->NewNode(common()->Branch(BranchHint::kTrue), check, control);
common-operator.cc 23 case BranchHint::kTrue:
321 BranchOperator<BranchHint::kTrue> kBranchTrueOperator;
481 case BranchHint::kTrue:
js-generic-lowering.cc 652 graph()->NewNode(common()->Branch(BranchHint::kTrue), check0, control);
673 graph()->NewNode(common()->Branch(BranchHint::kTrue), check1, if_true0);
    [all...]
simplified-lowering.cc     [all...]
change-lowering.cc 406 graph()->NewNode(common()->Branch(BranchHint::kTrue), check, control);
js-typed-lowering.cc     [all...]
scheduler.cc 441 case BranchHint::kTrue:
    [all...]
wasm-compiler.cc 157 BranchHint hint = iftrue ? BranchHint::kFalse : BranchHint::kTrue;
    [all...]
ast-graph-builder.cc     [all...]
  /external/skia/bench/
Benchmark.cpp 69 paint->setDither(SkTriState::kTrue == fDither);
Benchmark.h 38 kTrue,
  /external/dbus-binding-generator/chromeos-dbus-bindings/
xml_interface_parser.cc 37 const char XmlInterfaceParser::kTrue[] = "true";
158 CHECK(value == kTrue || value == kFalse);
159 method.is_const = (value == kTrue);
161 CHECK(value == kTrue || value == kFalse);
162 method.include_dbus_message = (value == kTrue);
xml_interface_parser.h 62 static const char kTrue[];
  /external/v8/test/unittests/compiler/
diamond-unittest.cc 136 Diamond dt(graph(), common(), Parameter(0), BranchHint::kTrue);
137 CHECK(BranchHint::kTrue == BranchHintOf(dt.branch->op()));
common-operator-unittest.cc 167 const BranchHint kBranchHints[] = {BranchHint::kNone, BranchHint::kTrue,
dead-code-elimination-unittest.cc 74 BranchHint const kHints[] = {BranchHint::kNone, BranchHint::kTrue,
common-operator-reducer-unittest.cc 55 BranchHint::kTrue};
scheduler-unittest.cc     [all...]
  /external/boringssl/src/crypto/bytestring/
bytestring_test.cc 234 static const uint8_t kTrue[] = {0x0a, 3, CBS_ASN1_BOOLEAN, 1, 0xff};
246 CBS_init(&data, kTrue, sizeof(kTrue));
  /external/v8/src/
json-stringifier.h 322 case Oddball::kTrue:
  /external/v8/src/heap/
heap.cc     [all...]

Completed in 743 milliseconds

1 2