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;
168 if (DecideObjectIsSmi(input) == Decision::kFalse) {
200 case Decision::kFalse:
common-operator.h 28 enum class BranchHint : uint8_t { kNone, kTrue, kFalse };
35 return BranchHint::kFalse;
36 case BranchHint::kFalse:
common-operator-reducer.cc 26 return mcond.Value() ? Decision::kTrue : Decision::kFalse;
30 return mcond.Value()->BooleanValue() ? Decision::kTrue : Decision::kFalse;
84 DecideCondition(cond->InputAt(1)) == Decision::kFalse &&
116 Replace(use, (decision == Decision::kFalse) ? control : dead());
381 case Decision::kFalse:
wasm-compiler.cc 248 BranchHint hint = iftrue ? BranchHint::kFalse : BranchHint::kTrue;
    [all...]
common-operator.cc 27 case BranchHint::kFalse:
550 BranchOperator<BranchHint::kFalse> kBranchFalseOperator;
821 case BranchHint::kFalse:
    [all...]
graph-assembler.cc 187 hint = if_false->IsDeferred() ? BranchHint::kTrue : BranchHint::kFalse;
js-builtin-reducer.cc 361 graph()->NewNode(common()->Branch(BranchHint::kFalse), check0, control);
514 graph()->NewNode(common()->Branch(BranchHint::kFalse), check0, control);
754 graph()->NewNode(common()->Branch(BranchHint::kFalse), check, control);
    [all...]
graph-assembler.h 406 label->IsDeferred() ? BranchHint::kFalse : BranchHint::kNone;
js-intrinsic-lowering.cc 345 common()->Select(MachineRepresentation::kTagged, BranchHint::kFalse),
js-typed-lowering.cc     [all...]
machine-operator-reducer.cc 57 BranchHint::kFalse);
    [all...]
js-create-lowering.cc 636 graph()->NewNode(common()->Branch(BranchHint::kFalse), equal, control);
    [all...]
scheduler.cc 452 case BranchHint::kFalse:
    [all...]
simplified-lowering.cc     [all...]
js-native-context-specialization.cc     [all...]
  /external/v8/tools/clang/blink_gc_plugin/
RecordInfo.cpp 177 is_eagerly_finalized_ = kFalse;
209 is_stack_allocated_ = kFalse;
244 is_non_newable_ = (deleted && all_deleted) ? kTrue : kFalse;
264 is_only_placement_newable_ = (placement && new_deleted) ? kTrue : kFalse;
348 is_declaring_local_trace_ = trace_method_ ? kTrue : kFalse;
481 has_adjust_and_mark && has_is_heap_object_alive ? kTrue : kFalse;
518 record_->hasNonTrivialDestructor() ? kTrue : kFalse;
540 does_need_finalization_ = kFalse;
RecordInfo.h 141 enum CachedBool { kFalse = 0, kTrue = 1, kNotComputed = 2 };
  /external/skia/bench/
Benchmark.h 39 kFalse
  /external/boringssl/src/crypto/bytestring/
bytestring_test.cc 222 static const uint8_t kFalse[] = {0x0a, 3, CBS_ASN1_BOOLEAN, 1, 0x00};
236 CBS_init(&data, kFalse, sizeof(kFalse));
  /external/v8/src/
globals.h 518 enum class Decision : uint8_t { kUnknown, kTrue, kFalse };
530 case Decision::kFalse:
    [all...]
value-serializer.cc 60 kFalse = 'F',
359 case Oddball::kFalse:
360 tag = SerializationTag::kFalse;
    [all...]
json-stringifier.cc 305 case Oddball::kFalse:
objects.h     [all...]
  /external/v8/src/heap/
heap.cc     [all...]

Completed in 963 milliseconds