Home
last modified time | relevance | path

Searched refs:func_call (Results 1 – 10 of 10) sorted by relevance

/third_party/mindspore/tests/ut/cpp/python_input/gtest_input/pipeline/infer/
Dinfer_test.py112 def func_call(x, y, p=10, q=20): function
118 return func_call(x, y)
124 def func_call(x, y, z): function
129 return func_call(*args)
135 def func_call(x, y, *args): function
142 return func_call(x, y, *args)
148 def func_call(x, y, *args, p, q): function
157 return func_call(x, y, *args, p=p, q=q)
163 def func_call(x, y, **kwargs): function
170 return func_call(x, y, **kwargs)
[all …]
/third_party/python/Lib/asyncio/
Dthreads.py24 func_call = functools.partial(ctx.run, func, *args, **kwargs)
25 return await loop.run_in_executor(None, func_call)
/third_party/benchmark/test/
Dbenchmark_setup_teardown_test.cc46 static std::atomic<int> func_call(0); variable
62 concurrent::func_call.fetch_add(1, std::memory_order_acquire); in BM_concurrent()
144 concurrent::func_call.load(std::memory_order_relaxed)); in main()
/third_party/gn/src/gn/
Dcommand_format.cc217 int FunctionCall(const FunctionCallNode* func_call,
427 const FunctionCallNode* func_call = p->AsFunctionCall(); in SortImports() local
428 return func_call && func_call->function().value() == "import"; in SortImports()
535 } else if (const FunctionCallNode* func_call = node->AsFunctionCall()) { in SuffixCommentTreeWalk() local
536 RETURN_IF_SET(SuffixCommentTreeWalk(func_call->block())); in SuffixCommentTreeWalk()
537 RETURN_IF_SET(SuffixCommentTreeWalk(func_call->args())); in SuffixCommentTreeWalk()
901 } else if (const FunctionCallNode* func_call = root->AsFunctionCall()) { in Expr() local
902 penalty += FunctionCall(func_call, at_end); in Expr()
1015 int Printer::FunctionCall(const FunctionCallNode* func_call, in FunctionCall() argument
1019 Print(func_call->function().value()); in FunctionCall()
[all …]
Dparser.cc564 std::unique_ptr<FunctionCallNode> func_call = in IdentifierOrCall() local
566 func_call->set_function(token); in IdentifierOrCall()
567 func_call->set_args(std::move(list)); in IdentifierOrCall()
569 func_call->set_block(std::move(block)); in IdentifierOrCall()
570 return func_call; in IdentifierOrCall()
800 } else if (const FunctionCallNode* func_call = root->AsFunctionCall()) { in TraverseOrder() local
801 TraverseOrder(func_call->args(), pre, post); in TraverseOrder()
802 TraverseOrder(func_call->block(), pre, post); in TraverseOrder()
/third_party/mindspore/tests/ut/cpp/python_input/gtest_input/pipeline/parse/
Dparser_test.py338 def func_call(x, y, *var, a=0, b=1, **kwargs): function
346 return func_call(0, 1, 2, *t, b=6, a=5, c=5, z=10, **d)
/third_party/mbedtls/library/
Dconstant_time.c478 #define MD_CHK( func_call ) \ in mbedtls_ct_hmac() argument
480 ret = (func_call); \ in mbedtls_ct_hmac()
/third_party/quickjs/tests/
Dmicrobench.js492 function func_call(n) function
977 func_call,
/third_party/gstreamer/gstplugins_good/gst/goom/
Dgoomsl_yacc.y1248 %type <nPtr> expression constValue instruction test func_call func_call_expression
1350 | func_call { $$ = $1; }
1396 func_call: task_name '\n' leave_namespace { $$ = new_call($1,NULL); }
/third_party/mindspore/mindspore/ccsrc/runtime/device/gpu/
Dkernel_info_setter.cc107 auto func_call = kernel_node->input(0); in SelectAkgKernel() local