Home
last modified time | relevance | path

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

/f-stack/freebsd/contrib/openzfs/module/unicode/
H A Duconv.c678 int remaining_bytes; in uconv_u8tou16() local
718 if ((remaining_bytes = remaining_bytes_tbl[hi]) == 0) in uconv_u8tou16()
722 hi = hi & u8_masks_tbl[remaining_bytes]; in uconv_u8tou16()
724 for (; remaining_bytes > 0; remaining_bytes--) { in uconv_u8tou16()
789 int remaining_bytes; in uconv_u8tou32() local
818 if ((remaining_bytes = remaining_bytes_tbl[hi]) == 0) in uconv_u8tou32()
822 hi = hi & u8_masks_tbl[remaining_bytes]; in uconv_u8tou32()
824 for (; remaining_bytes > 0; remaining_bytes--) { in uconv_u8tou32()
/f-stack/freebsd/contrib/octeon-sdk/
H A Dcvmx-helper-util.c156 uint64_t remaining_bytes; in cvmx_helper_dump_packet() local
194 remaining_bytes = cvmx_wqe_get_len(work); in cvmx_helper_dump_packet()
196 while (remaining_bytes) in cvmx_helper_dump_packet()
212 if (remaining_bytes == 0) in cvmx_helper_dump_packet()
215 remaining_bytes--; in cvmx_helper_dump_packet()
218 if (remaining_bytes && (count == 7)) in cvmx_helper_dump_packet()
228 if (remaining_bytes) in cvmx_helper_dump_packet()
/f-stack/dpdk/app/test-crypto-perf/
H A Dcperf_test_verify.c207 uint32_t remaining_bytes = options->max_buffer_size; in cperf_mbuf_set() local
220 while (remaining_bytes) { in cperf_mbuf_set()
223 if (remaining_bytes <= segment_sz) { in cperf_mbuf_set()
224 memcpy(mbuf_data, test_data, remaining_bytes); in cperf_mbuf_set()
229 remaining_bytes -= segment_sz; in cperf_mbuf_set()
/f-stack/app/redis-5.0.5/src/
H A Dserver.c3404 off_t remaining_bytes = server.loading_total_bytes- in genRedisInfoString() local
3415 eta = (elapsed*remaining_bytes)/(server.loading_loaded_bytes+1); in genRedisInfoString()