Home
last modified time | relevance | path

Searched refs:func_idx (Results 1 – 2 of 2) sorted by relevance

/third_party/mbedtls/tests/suites/
Dmain_test.function152 * \param func_idx Test function index.
160 int dispatch_test( size_t func_idx, void ** params )
165 if ( func_idx < (int)( sizeof( test_funcs ) / sizeof( TestWrapper_t ) ) )
167 fp = test_funcs[func_idx];
196 * \param func_idx Test function index.
202 int check_test( size_t func_idx )
207 if ( func_idx < (int)( sizeof(test_funcs)/sizeof( TestWrapper_t ) ) )
209 fp = test_funcs[func_idx];
/third_party/quickjs/
Dquickjs.c32910 int func_idx, lexical_func_idx = -1; in js_parse_function_decl2() local
32981 && !((func_idx = find_var(ctx, fd, func_name)) >= 0 && (func_idx & ARGUMENT_VAR_OFFSET)) in js_parse_function_decl2()
33381 func_idx = find_var(ctx, s->cur_func, func_name); in js_parse_function_decl2()
33382 if (func_idx < 0) { in js_parse_function_decl2()
33383 func_idx = add_var(ctx, s->cur_func, func_name); in js_parse_function_decl2()
33384 if (func_idx < 0) in js_parse_function_decl2()