Home
last modified time | relevance | path

Searched refs:star_flags (Results 1 – 4 of 4) sorted by relevance

/AliOS-Things-master/components/py_engine/engine/py/
A Demit.h152 … (*call_function)(emit_t *emit, mp_uint_t n_positional, mp_uint_t n_keyword, mp_uint_t star_flags);
153 …id (*call_method)(emit_t *emit, mp_uint_t n_positional, mp_uint_t n_keyword, mp_uint_t star_flags);
250 …_bc_call_function(emit_t *emit, mp_uint_t n_positional, mp_uint_t n_keyword, mp_uint_t star_flags);
251 …it_bc_call_method(emit_t *emit, mp_uint_t n_positional, mp_uint_t n_keyword, mp_uint_t star_flags);
A Demitbc.c811 …_adj, mp_uint_t bytecode_base, mp_uint_t n_positional, mp_uint_t n_keyword, mp_uint_t star_flags) { in emit_bc_call_function_method_helper() argument
812 if (star_flags) { in emit_bc_call_function_method_helper()
821 …bc_call_function(emit_t *emit, mp_uint_t n_positional, mp_uint_t n_keyword, mp_uint_t star_flags) { in mp_emit_bc_call_function() argument
822 …_bc_call_function_method_helper(emit, 0, MP_BC_CALL_FUNCTION, n_positional, n_keyword, star_flags); in mp_emit_bc_call_function()
825 …t_bc_call_method(emit_t *emit, mp_uint_t n_positional, mp_uint_t n_keyword, mp_uint_t star_flags) { in mp_emit_bc_call_method() argument
826 …t_bc_call_function_method_helper(emit, -1, MP_BC_CALL_METHOD, n_positional, n_keyword, star_flags); in mp_emit_bc_call_method()
A Dcompile.c2385 uint star_flags = 0; in compile_trailer_paren_helper() local
2391 if (star_flags & MP_EMIT_STAR_FLAG_SINGLE) { in compile_trailer_paren_helper()
2395 star_flags |= MP_EMIT_STAR_FLAG_SINGLE; in compile_trailer_paren_helper()
2398 if (star_flags & MP_EMIT_STAR_FLAG_DOUBLE) { in compile_trailer_paren_helper()
2402 star_flags |= MP_EMIT_STAR_FLAG_DOUBLE; in compile_trailer_paren_helper()
2428 if (star_flags) { in compile_trailer_paren_helper()
2443 if (star_flags != 0) { in compile_trailer_paren_helper()
2458 EMIT_ARG(call_method, n_positional, n_keyword, star_flags); in compile_trailer_paren_helper()
2460 EMIT_ARG(call_function, n_positional, n_keyword, star_flags); in compile_trailer_paren_helper()
A Demitnative.c2713 …ve_call_function(emit_t *emit, mp_uint_t n_positional, mp_uint_t n_keyword, mp_uint_t star_flags) { in emit_native_call_function() argument
2714 …" UINT_FMT ", n_kw=" UINT_FMT ", star_flags=" UINT_FMT ")\n", n_positional, n_keyword, star_flags); in emit_native_call_function()
2724 assert(!star_flags); in emit_native_call_function()
2753 if (star_flags) { in emit_native_call_function()
2768 …tive_call_method(emit_t *emit, mp_uint_t n_positional, mp_uint_t n_keyword, mp_uint_t star_flags) { in emit_native_call_method() argument
2769 if (star_flags) { in emit_native_call_method()

Completed in 21 milliseconds