Home
last modified time | relevance | path

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

/third_party/grpc/src/core/lib/iomgr/
Dtcp_posix.cc364 double target_length; member
579 if (tcp->bytes_read_this_round > tcp->target_length * 0.8) { in finish_estimate()
580 tcp->target_length = in finish_estimate()
581 GPR_MAX(2 * tcp->target_length, tcp->bytes_read_this_round); in finish_estimate()
583 tcp->target_length = in finish_estimate()
584 0.99 * tcp->target_length + 0.01 * tcp->bytes_read_this_round; in finish_estimate()
593 tcp->target_length * (pressure > 0.8 ? (1.0 - pressure) / 0.2 : 1.0); in get_target_read_size()
1781 tcp->target_length = static_cast<double>(tcp_read_chunk_size); in grpc_tcp_create()
/third_party/grpc/src/php/ext/grpc/
Dchannel.c325 php_grpc_int target_length; in PHP_METHOD() local
337 &target_length, &args_array) == FAILURE) { in PHP_METHOD()
411 php_grpc_int key_len = target_length + strlen(sha1str); in PHP_METHOD()
/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()