Home
last modified time | relevance | path

Searched refs:CheckFunc (Results 1 – 8 of 8) sorted by relevance

/third_party/mindspore/mindspore/ccsrc/frontend/optimizer/irpass/
Dsymbol_resolver.cc73 attr_node.CheckFunc(IsValueNode<StringImm>, node)); in operator ()()
77 …ns_node.CheckFunc(IsValueNode<parse::NameSpace>, node) && attr_node.CheckFunc(IsValueNode<StringIm… in operator ()()
81 …bool_node.CheckFunc(IsValueNode<BoolImm>, node) && attr_node.CheckFunc(IsValueNode<StringImm>, nod… in operator ()()
85 …ns_node.CheckFunc(IsValueNode<parse::NameSpace>, node) && sym_node.CheckFunc(IsValueNode<parse::Sy… in operator ()()
Darithmetic_simplify.cc36 …MATCH_REPLACE_IF(node, x * one_, any_const.WithValueOf(x), !one_.CheckFunc(IsParam, node)); // Mu… in operator ()()
72 one_scalar_.CheckFunc(IsValueNode<Scalar>, node)); in operator ()()
86 !zero_.CheckFunc(IsParam, node) && !x.CheckFunc(IsLoad, node) && in operator ()()
90 … !zero_prim.CheckFunc(IsParam, node) && x.GetNode(node)->func_graph() == node->func_graph()); in operator ()()
Dref_eliminate.h82 …MATCH_REPLACE_IF(node, PPrimitive(prim::kPrimGetRefValue, x), x, x.CheckFunc(IsCNodeSwitch, node)); in operator()
91 …MATCH_REPLACE_LAMBDA_IF(node, PPrimitive(prim::kPrimGetRefValue, x), GetRefLambda, x.CheckFunc(IsC… in operator()
117 MATCH_REPLACE_LAMBDA_IF(node, x, RefKeyLambda, x.CheckFunc(IsValueNode<RefKey>, node)); in operator()
Dbranch_culling.h48 cond.CheckFunc(IsValueNode<BoolImm>, node)); in operator()
64 x.CheckFunc(IsVNode, node)); in operator()
/third_party/openh264/test/api/
Dc_interface_test.c10 typedef void (*CheckFunc) (int, int, const char*); typedef
12 void CheckEncoderInterface (ISVCEncoder* p, CheckFunc check) { in CheckEncoderInterface()
24 void CheckDecoderInterface (ISVCDecoder* p, CheckFunc check) { in CheckDecoderInterface()
Dcpp_interface_test.cpp9 typedef void (*CheckFunc) (int, int, const char*); typedef
10 extern "C" void CheckEncoderInterface (ISVCEncoder* p, CheckFunc);
11 extern "C" void CheckDecoderInterface (ISVCDecoder* p, CheckFunc);
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceASanInstrumentation.cpp413 Constant *CheckFunc) { in instrumentAccess() argument
441 CheckFunc, NoTailCall); in instrumentAccess()
/third_party/mindspore/mindspore/core/ir/
Dpattern_matcher.h45 …bool CheckFunc(const PredicateFuncType &func, const AnfNodePtr &node) { return func(get_object().G… in CheckFunc() function