Home
last modified time | relevance | path

Searched refs:add_func (Results 1 – 6 of 6) sorted by relevance

/external/v8/src/builtins/
Dbuiltins-collections-gen.cc226 TNode<JSFunction> add_func = GetInitialAddFunction(variant, native_context); in AddConstructorEntriesFromFastJSArray() local
229 WordEqual(GetAddFunction(variant, native_context, collection), add_func)); in AddConstructorEntriesFromFastJSArray()
249 AddConstructorEntry(variant, context, collection, add_func, element, in AddConstructorEntriesFromFastJSArray()
276 AddConstructorEntry(variant, context, collection, add_func, entry); in AddConstructorEntriesFromFastJSArray()
298 TNode<Object> add_func = GetAddFunction(variant, context, collection); in AddConstructorEntriesFromIterable() local
315 AddConstructorEntry(variant, context, collection, add_func, next_value, in AddConstructorEntriesFromIterable()
383 TNode<Object> add_func = GetProperty(context, collection, add_func_name); in GetAddFunction() local
386 GotoIf(TaggedIsSmi(add_func), &if_notcallable); in GetAddFunction()
387 GotoIfNot(IsCallable(CAST(add_func)), &if_notcallable); in GetAddFunction()
391 ThrowTypeError(context, MessageTemplate::kPropertyNotFunction, add_func, in GetAddFunction()
[all …]
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_evaluator_test.cc1449 auto add_func = m->AddEmbeddedComputation(add_computation.Build()); in TEST_F() local
1453 /*dimensions_to_reduce=*/{0}, add_func)); in TEST_F()
1485 auto add_func = module.AddEmbeddedComputation(add_computation.Build()); in BM_ReducePrecisely() local
1489 /*dimensions_to_reduce=*/{0}, add_func)); in BM_ReducePrecisely()
1526 auto add_func = m_->AddEmbeddedComputation(add_computation.Build()); in TEST_P() local
1531 /*dimensions_to_reduce=*/{1}, add_func)); in TEST_P()
1671 auto add_func = m_->AddEmbeddedComputation(add_computation.Build()); in TEST_P() local
1692 shape, arg_instruction, init_value, window, add_func)); in TEST_P()
1724 auto add_func = m_->AddEmbeddedComputation(add_computation.Build()); in TEST_P() local
1753 shape, arg_instruction, init_value, window, add_func)); in TEST_P()
/external/tensorflow/tensorflow/core/framework/
Dattr_value_util_test.cc55 NameAttrList* entry = ret.mutable_list()->add_func(); in Fs()
Dattr_value_util.cc543 *out->mutable_list()->add_func() = v; in SetAttrValue()
/external/tensorflow/tensorflow/core/grappler/optimizers/
Dfunction_optimizer_test.cc1315 FunctionDef add_func = FunctionDefHelper::Create( in TEST_F() local
1370 {add_or_mul_func, add_func, mul_func}); in TEST_F()
/external/python/cpython3/Modules/
D_pickle.c6149 PyObject *add_func; in load_additems() local
6152 add_func = _PyObject_GetAttrId(set, &PyId_add); in load_additems()
6153 if (add_func == NULL) in load_additems()
6160 result = _Pickle_FastCall(add_func, item); in load_additems()