Home
last modified time | relevance | path

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

/third_party/mbedtls/tests/scripts/
Dgenerate_pkcs7_tests.py38 def __init__(self, name, depends, func_call): argument
41 self.func_call = func_call
45 return "\n" + self.name + "\n" + self.depends + "\n" + self.func_call + "\n"
83 def add(self, name, func_call): argument
87 self.test_function + '"' + func_call + '"'))
/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/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/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/node/deps/v8/third_party/wasm-api/example/
Dhostref.c192 wasm_func_t* func_call = get_export_func(&exports, i++); in main() local
252 check(call_r_r(func_call, NULL), NULL); in main()
253 check(call_r_r(func_call, host1), host1); in main()
254 check(call_r_r(func_call, host2), host2); in main()
Dhostref.cc167 auto func_call = get_export_func(exports, i++); in run() local
218 check(call_r_r(func_call, nullptr), nullptr); in run()
219 check(call_r_r(func_call, host1.get()), host1.get()); in run()
220 check(call_r_r(func_call, host2.get()), host2.get()); in run()
/third_party/mbedtls/library/
Dconstant_time.c554 #define PSA_CHK(func_call) \ in mbedtls_ct_hmac() argument
556 status = (func_call); \ in mbedtls_ct_hmac()
672 #define MD_CHK(func_call) \ in mbedtls_ct_hmac() argument
674 ret = (func_call); \ in mbedtls_ct_hmac()