Home
last modified time | relevance | path

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

/third_party/flutter/skia/third_party/externals/sdl/visualtest/src/windows/
Dwindows_process.c37 int path_length, args_length; in SDL_LaunchProcess() local
79 args_length = SDL_strlen(args); in SDL_LaunchProcess()
80 command_line = (char*)SDL_malloc(path_length + args_length + 2); in SDL_LaunchProcess()
88 SDL_memcpy(command_line + path_length + 1, args, args_length + 1); in SDL_LaunchProcess()
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-function-object.c984 ecma_length_t args_length = 1; in ecma_op_bound_function_get_argument_list() local
988 args_length = (ecma_length_t) ecma_get_integer_from_value (args_len_or_this); in ecma_op_bound_function_get_argument_list()
992 if (args_length != 1) in ecma_op_bound_function_get_argument_list()
1001 ecma_collection_append (list_p, args_p + 1, args_length - 1); in ecma_op_bound_function_get_argument_list()
1514 ecma_integer_value_t args_length = 1; in ecma_op_bound_function_try_to_lazy_instantiate_property() local
1519 args_length = ecma_get_integer_from_value (args_len_or_this); in ecma_op_bound_function_try_to_lazy_instantiate_property()
1529 length = bound_func_p->target_length - (args_length - 1); in ecma_op_bound_function_try_to_lazy_instantiate_property()
1548 length = ecma_get_integer_from_value (get_len_value) - (args_length - 1); in ecma_op_bound_function_try_to_lazy_instantiate_property()
/third_party/jerryscript/jerry-core/ecma/base/
Decma-gc.c268 ecma_integer_value_t args_length = ecma_get_integer_from_value (args_len_or_this); in ecma_gc_mark_bound_function_object() local
271 JERRY_ASSERT (args_length > 0); in ecma_gc_mark_bound_function_object()
273 for (ecma_integer_value_t i = 0; i < args_length; i++) in ecma_gc_mark_bound_function_object()
1323 ecma_integer_value_t args_length = ecma_get_integer_from_value (args_len_or_this); in ecma_gc_free_object() local
1326 for (ecma_integer_value_t i = 0; i < args_length; i++) in ecma_gc_free_object()
1331 size_t args_size = ((size_t) args_length) * sizeof (ecma_value_t); in ecma_gc_free_object()
/third_party/node/src/
Djs_native_api_v8.cc268 inline CallbackWrapper(napi_value this_arg, size_t args_length, void* data) in CallbackWrapper() argument
269 : _this(this_arg), _args_length(args_length), _data(data) {} in CallbackWrapper()
290 const size_t args_length) in CallbackWrapperBase() argument
292 args_length, in CallbackWrapperBase()