Searched refs:total_received (Results 1 – 3 of 3) sorted by relevance
/external/libevent/test/ |
D | test-ratelim.c | 261 ev_uint64_t total_received; in test_ratelimiting() local 422 total_received = 0; in test_ratelimiting() 428 total_received += states[i].received; in test_ratelimiting() 434 ((double)total_received)/cfg_duration); in test_ratelimiting() 437 ((double)total_received/cfg_duration); in test_ratelimiting() 447 (((double)total_received)/cfg_duration)/cfg_n_connections); in test_ratelimiting() 449 double diff = expected_avg_persec - (((double)total_received)/cfg_duration)/cfg_n_connections; in test_ratelimiting()
|
/external/v8/src/d8/ |
D | d8-posix.cc | 743 ssize_t total_received = 0; in ReadCharsFromTcpPort() local 744 while (total_received < file_length) { in ReadCharsFromTcpPort() 746 recv(sockfd, chars + total_received, file_length - total_received, 0); in ReadCharsFromTcpPort() 754 total_received += received; in ReadCharsFromTcpPort()
|
/external/iperf3/src/ |
D | iperf_api.c | 3026 iperf_size_t bytes_received, total_received = 0; in iperf_print_results() local 3095 total_received += bytes_received; in iperf_print_results() 3311 unit_snprintf(ubuf, UNIT_LEN, (double) total_received, 'A'); in iperf_print_results() 3314 bandwidth = (double) total_received / (double) receiver_time; in iperf_print_results() 3321 …tart_time, (double) receiver_time, (double) receiver_time, (int64_t) total_received, bandwidth * 8… in iperf_print_results() 3354 unit_snprintf(ubuf, UNIT_LEN, (double) total_received, 'A'); in iperf_print_results() 3357 bandwidth = (double) total_received / (double) receiver_time; in iperf_print_results()
|