Home
last modified time | relevance | path

Searched refs:total_bytes (Results 1 – 23 of 23) sorted by relevance

/dflybsd-src/contrib/gcc-8.0/libcpp/
H A Dsymtab.c277 size_t total_bytes, longest, deleted = 0; in ht_dump_statistics() local
288 total_bytes = longest = sum_of_squares = nids = 0; in ht_dump_statistics()
298 total_bytes += n; in ht_dump_statistics()
307 overhead = obstack_memory_used (&table->stack) - total_bytes; in ht_dump_statistics()
319 SCALE (total_bytes), LABEL (total_bytes), in ht_dump_statistics()
324 exp_len = (double)total_bytes / (double)nelts; in ht_dump_statistics()
/dflybsd-src/contrib/gcc-4.7/libcpp/
H A Dsymtab.c280 size_t total_bytes, longest, deleted = 0; in ht_dump_statistics() local
291 total_bytes = longest = sum_of_squares = nids = 0; in ht_dump_statistics()
301 total_bytes += n; in ht_dump_statistics()
310 overhead = obstack_memory_used (&table->stack) - total_bytes; in ht_dump_statistics()
322 SCALE (total_bytes), LABEL (total_bytes), in ht_dump_statistics()
327 exp_len = (double)total_bytes / (double)nelts; in ht_dump_statistics()
/dflybsd-src/lib/libdevstat/
H A Ddevstat.h104 long double etime, u_int64_t *total_bytes,
111 long double etime, u_int64_t *total_bytes,
118 long double etime, u_int64_t *total_bytes,
H A Ddevstat.c1023 long double etime, u_int64_t *total_bytes, in compute_stats() argument
1044 if (total_bytes) in compute_stats()
1045 *total_bytes = totalbytes; in compute_stats()
1114 long double etime, u_int64_t *total_bytes, in compute_stats_read() argument
1134 if (total_bytes) in compute_stats_read()
1135 *total_bytes = totalbytes; in compute_stats_read()
1199 long double etime, u_int64_t *total_bytes, in compute_stats_write() argument
1219 if (total_bytes) in compute_stats_write()
1220 *total_bytes = totalbytes; in compute_stats_write()
/dflybsd-src/contrib/tre/lib/
H A Dtre-match-parallel.c162 int rbytes, pbytes, total_bytes; in tre_tnfa_run_parallel() local
168 total_bytes = in tre_tnfa_run_parallel()
172 DPRINT(("tre_tnfa_run_parallel, allocate %d bytes\n", total_bytes)); in tre_tnfa_run_parallel()
175 buf = alloca(total_bytes); in tre_tnfa_run_parallel()
177 buf = xmalloc((unsigned)total_bytes); in tre_tnfa_run_parallel()
181 memset(buf, 0, (size_t)total_bytes); in tre_tnfa_run_parallel()
H A Dtre-match-backtrack.c279 int pbytes, sbytes, total_bytes; in tre_tnfa_run_backtrack() local
285 total_bytes = in tre_tnfa_run_backtrack()
289 DPRINT(("tre_tnfa_run_backtrack, allocate %d bytes\n", total_bytes)); in tre_tnfa_run_backtrack()
292 buf = alloca(total_bytes); in tre_tnfa_run_backtrack()
294 buf = xmalloc((unsigned)total_bytes); in tre_tnfa_run_backtrack()
/dflybsd-src/sys/kern/
H A Dsubr_csprng.c131 int total_bytes = 0; in csprng_get_random() local
165 total_bytes += cnt; in csprng_get_random()
168 return total_bytes; in csprng_get_random()
/dflybsd-src/sbin/fsck_hammer2/
H A Dtest.c96 uint64_t total_bytes; member
115 uint64_t total_bytes; member
596 sizetostr(bstats->total_bytes)); in print_blockref_stats()
605 sizetostr(bstats->total_bytes)); in print_blockref_stats()
707 bstats->total_bytes += dstats->total_bytes; in load_delta_stats()
733 dst->total_bytes += src->total_bytes; in accumulate_delta_stats()
862 bstats->total_bytes += bytes; in verify_blockref()
863 dstats->total_bytes += bytes; in verify_blockref()
868 bstats->total_bytes -= bytes; in verify_blockref()
869 dstats->total_bytes -= bytes; in verify_blockref()
/dflybsd-src/usr.sbin/iostat/
H A Diostat.c607 u_int64_t total_bytes, total_transfers, total_blocks; in devstats() local
628 &total_bytes, &total_transfers, in devstats()
649 dev_select[dn].bytes = total_bytes; in devstats()
691 total_mb = total_bytes; in devstats()
/dflybsd-src/sys/dev/drm/i915/
H A Dintel_ringbuffer.c1624 unsigned int total_bytes; in intel_ring_begin() local
1630 total_bytes = bytes + req->reserved_space; in intel_ring_begin()
1631 GEM_BUG_ON(total_bytes > ring->effective_size); in intel_ring_begin()
1633 if (unlikely(total_bytes > remain_usable)) { in intel_ring_begin()
1642 total_bytes += remain_actual; in intel_ring_begin()
1651 total_bytes = req->reserved_space + remain_actual; in intel_ring_begin()
1655 if (unlikely(total_bytes > ring->space)) { in intel_ring_begin()
1656 int ret = wait_for_space(req, total_bytes); in intel_ring_begin()
/dflybsd-src/contrib/gcc-8.0/gcc/
H A Dvarasm.c5052 HOST_WIDE_INT total_bytes; /* # bytes output so far / current position. */ member
5094 local->total_bytes += fieldsize; in output_constructor_array_range()
5115 local->total_bytes++; in output_constructor_regular_field()
5140 if (fieldpos > local->total_bytes) in output_constructor_regular_field()
5142 assemble_zeros (fieldpos - local->total_bytes); in output_constructor_regular_field()
5143 local->total_bytes = fieldpos; in output_constructor_regular_field()
5147 gcc_assert (fieldpos == local->total_bytes); in output_constructor_regular_field()
5188 local->total_bytes += fieldsize; in output_constructor_regular_field()
5248 if (next_offset / BITS_PER_UNIT != local->total_bytes) in output_constructor_bitfield()
5254 local->total_bytes++; in output_constructor_bitfield()
[all …]
H A Dfold-const.c7125 int total_bytes = GET_MODE_SIZE (SCALAR_INT_TYPE_MODE (type)); in native_encode_int() local
7129 if ((off == -1 && total_bytes > len) || off >= total_bytes) in native_encode_int()
7136 return MIN (len, total_bytes - off); in native_encode_int()
7138 words = total_bytes / UNITS_PER_WORD; in native_encode_int()
7140 for (byte = 0; byte < total_bytes; byte++) in native_encode_int()
7147 if (total_bytes > UNITS_PER_WORD) in native_encode_int()
7159 offset = BYTES_BIG_ENDIAN ? (total_bytes - 1) - byte : byte; in native_encode_int()
7163 return MIN (len, total_bytes - off); in native_encode_int()
7177 int total_bytes = GET_MODE_SIZE (mode); in native_encode_fixed() local
7181 if (total_bytes * BITS_PER_UNIT > HOST_BITS_PER_DOUBLE_INT) in native_encode_fixed()
[all …]
H A Dgimple.c2082 uint64_t total_tuples = 0, total_bytes = 0; in dump_gimple_statistics() local
2099 total_bytes += gimple_alloc_sizes[i]; in dump_gimple_statistics()
2103 total_tuples, total_bytes); in dump_gimple_statistics()
H A Dgimple-ssa-store-merging.c1600 unsigned int total_bytes) in encode_tree_to_bitpos() argument
1609 return native_encode_expr (tmp_int, ptr + first_byte, total_bytes) != 0; in encode_tree_to_bitpos()
H A Dtree.c9088 uint64_t total_nodes, total_bytes; in dump_tree_statistics() local
9091 total_nodes = total_bytes = 0; in dump_tree_statistics()
9098 total_bytes += tree_node_sizes[i]; in dump_tree_statistics()
9102 total_nodes, total_bytes); in dump_tree_statistics()
/dflybsd-src/contrib/gcc-4.7/gcc/
H A Dvarasm.c4737 HOST_WIDE_INT total_bytes; /* # bytes output so far / current position. */ member
4777 local->total_bytes += fieldsize; in output_constructor_array_range()
4811 local->total_bytes++; in output_constructor_regular_field()
4819 && fieldpos != local->total_bytes) in output_constructor_regular_field()
4821 gcc_assert (fieldpos >= local->total_bytes); in output_constructor_regular_field()
4822 assemble_zeros (fieldpos - local->total_bytes); in output_constructor_regular_field()
4823 local->total_bytes = fieldpos; in output_constructor_regular_field()
4861 local->total_bytes += fieldsize; in output_constructor_regular_field()
4921 if (next_offset / BITS_PER_UNIT != local->total_bytes) in output_constructor_bitfield()
4927 local->total_bytes++; in output_constructor_bitfield()
[all …]
H A Dfold-const.c7239 int total_bytes = GET_MODE_SIZE (TYPE_MODE (type)); in native_encode_int() local
7243 if (total_bytes > len) in native_encode_int()
7245 words = total_bytes / UNITS_PER_WORD; in native_encode_int()
7247 for (byte = 0; byte < total_bytes; byte++) in native_encode_int()
7256 if (total_bytes > UNITS_PER_WORD) in native_encode_int()
7268 offset = BYTES_BIG_ENDIAN ? (total_bytes - 1) - byte : byte; in native_encode_int()
7271 return total_bytes; in native_encode_int()
7284 int total_bytes = GET_MODE_SIZE (TYPE_MODE (type)); in native_encode_real() local
7293 if (total_bytes > len) in native_encode_real()
7299 for (bitpos = 0; bitpos < total_bytes * BITS_PER_UNIT; in native_encode_real()
[all …]
H A Dgimple.c2563 int i, total_tuples = 0, total_bytes = 0; in dump_gimple_statistics() local
2573 total_bytes += gimple_alloc_sizes[i]; in dump_gimple_statistics()
2576 fprintf (stderr, "%-20s %7d %10d\n", "Total", total_tuples, total_bytes); in dump_gimple_statistics()
H A Dtree.c8662 int total_nodes, total_bytes; in dump_tree_statistics() local
8669 total_nodes = total_bytes = 0; in dump_tree_statistics()
8675 total_bytes += tree_node_sizes[i]; in dump_tree_statistics()
8678 fprintf (stderr, "%-20s %7d %10d\n", "Total", total_nodes, total_bytes); in dump_tree_statistics()
/dflybsd-src/contrib/gdb-7/gdb/mi/
H A Dmi-main.c1302 long total_bytes, nr_cols, nr_rows; in mi_cmd_data_read_memory() local
1392 total_bytes = word_size * nr_rows * nr_cols; in mi_cmd_data_read_memory()
1393 mbuf = xcalloc (total_bytes, 1); in mi_cmd_data_read_memory()
1400 addr, total_bytes); in mi_cmd_data_read_memory()
1407 ui_out_field_int (uiout, "total-bytes", total_bytes); in mi_cmd_data_read_memory()
1412 ui_out_field_core_addr (uiout, "next-page", gdbarch, addr + total_bytes); in mi_cmd_data_read_memory()
1413 ui_out_field_core_addr (uiout, "prev-page", gdbarch, addr - total_bytes); in mi_cmd_data_read_memory()
/dflybsd-src/sbin/hammer/
H A Dcmd_mirror.c107 int64_t total_bytes; in hammer_cmd_mirror_read() local
144 total_bytes = 0; in hammer_cmd_mirror_read()
321 total_bytes += mirror.count; in hammer_cmd_mirror_read()
328 (intmax_t)total_bytes); in hammer_cmd_mirror_read()
337 (intmax_t)total_bytes); in hammer_cmd_mirror_read()
/dflybsd-src/crypto/libressl/apps/openssl/
H A Ds_server.c2207 total_bytes += i; in www_body()
2209 if (total_bytes > 3 * 1024) { in www_body()
2210 total_bytes = 0; in www_body()
/dflybsd-src/contrib/libarchive/libarchive/
H A Darchive_read_support_format_cab.c244 uint32_t total_bytes; member
660 hd->total_bytes = archive_le32dec(p + CFHEADER_cbCabinet); in cab_read_header()