Home
last modified time | relevance | path

Searched refs:target_length (Results 1 – 5 of 5) sorted by relevance

/third_party/node/src/
Dnode_buffer.cc543 if (target_start >= target_length || source_start >= source_end) in Copy()
550 if (source_end - source_start > target_length - target_start) in Copy()
551 source_end = source_start + target_length - target_start; in Copy()
554 std::min(source_end - source_start, target_length - target_start), in Copy()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-function-prototype.c348 bound_func_p->target_length = len; in ecma_builtin_function_prototype_object_bind()
Decma-builtin-array-prototype.c913 uint32_t target_length = ext_to_obj_p->u.array.length; in ecma_builtin_array_prototype_object_slice() local
915 if (copied_length == target_length) in ecma_builtin_array_prototype_object_slice()
919 else if (copied_length > target_length) in ecma_builtin_array_prototype_object_slice()
/third_party/jerryscript/jerry-core/ecma/base/
Decma-globals.h967 ecma_integer_value_t target_length; /**< length of target function */ member
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-function-object.c1529 length = bound_func_p->target_length - (args_length - 1); in ecma_op_bound_function_try_to_lazy_instantiate_property()