Home
last modified time | relevance | path

Searched refs:if_found (Results 1 – 7 of 7) sorted by relevance

/external/v8/src/builtins/
Dbuiltins-collections-gen.cc1148 Label if_found(this), if_not_found(this); in TF_BUILTIN() local
1149 Branch(SmiGreaterThanOrEqual(index, SmiConstant(0)), &if_found, in TF_BUILTIN()
1152 BIND(&if_found); in TF_BUILTIN()
1173 Label if_found(this), if_not_found(this); in TF_BUILTIN() local
1174 Branch(SmiGreaterThanOrEqual(index, SmiConstant(0)), &if_found, in TF_BUILTIN()
1177 BIND(&if_found); in TF_BUILTIN()
2110 Label loop(this, arraysize(loop_vars), loop_vars), if_found(this); in FindKeyIndex() local
2118 key_compare(entry_key, &if_found); in FindKeyIndex()
2127 BIND(&if_found); in FindKeyIndex()
2135 auto is_not_live = [&](TNode<Object> entry_key, Label* if_found) { in FindKeyIndexForInsertion() argument
[all …]
Dbuiltins-internal-gen.cc1222 Label if_found(this); in TF_BUILTIN() local
1224 holder_instance_type, unique_name, &if_found, in TF_BUILTIN()
1226 BIND(&if_found); in TF_BUILTIN()
Dbuiltins-object-gen.cc596 Label if_found(this); in ObjectAssignFast() local
636 Goto(&if_found); in ObjectAssignFast()
652 Goto(&if_found); in ObjectAssignFast()
656 BIND(&if_found); in ObjectAssignFast()
/external/v8/src/
Dcode-stub-assembler.cc7635 TNode<Dictionary> dictionary, TNode<Name> unique_name, Label* if_found, in NameDictionaryLookup() argument
7643 inlined_probes == 0 && if_found == nullptr); in NameDictionaryLookup()
7662 GotoIf(WordEqual(current, unique_name), if_found); in NameDictionaryLookup()
7689 GotoIf(WordEqual(current, unique_name), if_found); in NameDictionaryLookup()
7732 Label* if_found, TVariable<IntPtrT>* var_entry, Label* if_not_found) { in NumberDictionaryLookup() argument
7778 Branch(WordEqual(current_value, intptr_index), if_found, &next_probe); in NumberDictionaryLookup()
7785 Branch(Float64Equal(current_value, key_as_float64), if_found, in NumberDictionaryLookup()
7804 Label if_found(this); in BasicLoadNumberDictionaryElement() local
7805 NumberDictionaryLookup(dictionary, intptr_index, &if_found, &var_entry, in BasicLoadNumberDictionaryElement()
7807 BIND(&if_found); in BasicLoadNumberDictionaryElement()
[all …]
Dcode-stub-assembler.h2285 TNode<Name> unique_name, Label* if_found,
2295 TNode<IntPtrT> intptr_index, Label* if_found,
2322 Node* unique_name, Label* if_found,
2333 Label* if_found, Variable* var_value,
2337 Label* if_found, Variable* var_value,
2432 SloppyTNode<IntPtrT> intptr_index, Label* if_found,
2804 SloppyTNode<Uint32T> bitfield3, Label* if_found,
2813 Label* if_found, TVariable<IntPtrT>* var_name_index,
2819 TNode<Uint32T> number_of_valid_entries, Label* if_found,
2825 TNode<Uint32T> number_of_valid_entries, Label* if_found,
[all …]
/external/tensorflow/tensorflow/python/kernel_tests/
Dcond_v2_test.py687 if_found = any(
692 self.assertFalse(if_found,
724 if_found = any(
730 if_found,
/external/v8/src/compiler/
Djs-call-reducer.cc2127 Node* if_found = graph()->NewNode(common()->IfTrue(), found_branch); in ReduceArrayFind() local
2134 control = graph()->NewNode(common()->Merge(2), if_found, if_false); in ReduceArrayFind()