HomeSort by: relevance | last modified time | path
    Searched defs:total_bytes (Results 1 - 25 of 25) sorted by relevancy

  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
long-inferior-output.c 20 static size_t total_bytes = 0; variable
34 total_bytes += printf ("this is line number %d\n", i);
36 printf ("total bytes written = %u\n", (unsigned) total_bytes);
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
long-inferior-output.c 20 static size_t total_bytes = 0; variable
34 total_bytes += printf ("this is line number %d\n", i);
36 printf ("total bytes written = %u\n", (unsigned) total_bytes);
  /src/sys/arch/hpcmips/stand/pbsdboot/
elf.c 54 static long total_bytes = 0; variable
113 if (total_bytes != 0) {
114 int tmp_progress = *byte_count * 100 / total_bytes;
232 total_bytes = byte_count;
344 total_bytes += dbg_info_size;
  /src/sys/external/bsd/drm2/dist/drm/i915/gt/
intel_ring.c 228 unsigned int total_bytes; local
234 total_bytes = bytes + rq->reserved_space;
235 GEM_BUG_ON(total_bytes > ring->effective_size);
237 if (unlikely(total_bytes > remain_usable)) {
246 total_bytes += remain_actual;
255 total_bytes = rq->reserved_space + remain_actual;
259 if (unlikely(total_bytes > ring->space)) {
275 total_bytes);
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_quarantine.h 280 uptr total_bytes = 0; local
284 total_bytes += (*it).size;
291 uptr total_quarantined_bytes = total_bytes - total_overhead_bytes;
297 batch_count, total_bytes, total_quarantined_bytes,
  /src/external/bsd/nsd/dist/
xfrd-tcp.h 66 uint32_t total_bytes; member in struct:xfrd_tcp
212 * On first call, make sure total_bytes = 0, msglen=0, buffer_clear().
220 * On first call, make sure total_bytes=0, msglen=buffer_limit(),
  /src/external/bsd/tre/dist/lib/
tre-match-approx.c 258 * contribute more than 1/8 of SIZE_MAX to total_bytes. */
271 size_t total_bytes = reach_bytes * 2 + (tnfa->num_states * 2 + 1 ) * tag_bytes; local
274 total_bytes += (sizeof(long) - 1) * 3;
278 buf = alloca(total_bytes);
280 buf = xmalloc((unsigned)total_bytes);
284 memset(buf, 0, (size_t)total_bytes);
309 assert(buf_cursor <= buf + total_bytes);
tre-match-parallel.c 143 size_t tbytes, rbytes, pbytes, xbytes, total_bytes; local
147 * they don't contribute more than 1/8 of SIZE_MAX to total_bytes. */
164 total_bytes =
170 buf = alloca(total_bytes);
172 buf = xmalloc((unsigned)total_bytes);
176 memset(buf, 0, (size_t)total_bytes);
  /src/external/gpl3/gcc.old/dist/libcpp/
symtab.cc 277 size_t total_bytes, longest, deleted = 0; local
288 total_bytes = longest = sum_of_squares = nids = 0;
298 total_bytes += n;
320 SCALE (total_bytes), LABEL (total_bytes));
323 overhead = obstack_memory_used (&table->stack) - total_bytes;
326 SCALE (total_bytes), LABEL (total_bytes),
332 exp_len = (double)total_bytes / (double)nelts;
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_quarantine.h 280 uptr total_bytes = 0; local
284 total_bytes += (*it).size;
291 uptr total_quarantined_bytes = total_bytes - total_overhead_bytes;
297 batch_count, total_bytes, total_quarantined_bytes,
  /src/external/gpl3/gcc/dist/libcpp/
symtab.cc 277 size_t total_bytes, longest, deleted = 0; local
288 total_bytes = longest = sum_of_squares = nids = 0;
298 total_bytes += n;
320 SCALE (total_bytes), LABEL (total_bytes));
323 overhead = obstack_memory_used (&table->stack) - total_bytes;
326 SCALE (total_bytes), LABEL (total_bytes),
332 exp_len = (double)total_bytes / (double)nelts;
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_quarantine.h 275 uptr total_bytes = 0; local
279 total_bytes += (*it).size;
286 uptr total_quarantined_bytes = total_bytes - total_overhead_bytes;
292 batch_count, total_bytes, total_quarantined_bytes,
  /src/external/gpl3/gcc.old/dist/gcc/config/nds32/
nds32-memory-manipulation.cc 268 unsigned HOST_WIDE_INT total_bytes = UINTVAL (size); local
289 if (total_bytes < 8)
291 /* Emit total_bytes less than 8 loop version of cpymem.
322 else if (total_bytes % 8 == 0)
394 rtx total_bytes, rtx alignment)
430 /* 1. Total_bytes is integer for sure.
438 if (GET_CODE (total_bytes) != CONST_INT
440 || INTVAL (total_bytes) > maximum_bytes
448 remain_bytes = INTVAL (total_bytes);
451 inst_num = ((INTVAL (total_bytes) + (maximum_bytes_per_inst - 1)
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/nds32/
nds32-memory-manipulation.cc 268 unsigned HOST_WIDE_INT total_bytes = UINTVAL (size); local
289 if (total_bytes < 8)
291 /* Emit total_bytes less than 8 loop version of cpymem.
322 else if (total_bytes % 8 == 0)
394 rtx total_bytes, rtx alignment)
430 /* 1. Total_bytes is integer for sure.
438 if (GET_CODE (total_bytes) != CONST_INT
440 || INTVAL (total_bytes) > maximum_bytes
448 remain_bytes = INTVAL (total_bytes);
451 inst_num = ((INTVAL (total_bytes) + (maximum_bytes_per_inst - 1)
    [all...]
  /src/libexec/ftpd/
extern.h 346 GLOBAL off_t total_bytes_in, total_bytes_out, total_bytes; variable
360 putc(c, f); total_bytes++; total_bytes_out++; \
  /src/external/bsd/jemalloc/dist/src/
stats.c 728 muzzy_bytes, retained_bytes, total_bytes; local
742 total_bytes = dirty_bytes + muzzy_bytes + retained_bytes;
775 col_total.size_val = total_bytes;
  /src/external/gpl3/gdb/dist/gdb/mi/
mi-main.c 1237 long total_bytes, nr_cols, nr_rows; local
1326 total_bytes = word_size * nr_rows * nr_cols;
1328 gdb::byte_vector mbuf (total_bytes);
1332 mbuf.data (), addr, total_bytes);
1339 uiout->field_signed ("total-bytes", total_bytes);
1342 uiout->field_core_addr ("next-page", gdbarch, addr + total_bytes);
1343 uiout->field_core_addr ("prev-page", gdbarch, addr - total_bytes);
  /src/external/gpl3/gdb.old/dist/gdb/mi/
mi-main.c 1240 long total_bytes, nr_cols, nr_rows; local
1329 total_bytes = word_size * nr_rows * nr_cols;
1331 gdb::byte_vector mbuf (total_bytes);
1335 mbuf.data (), addr, total_bytes);
1342 uiout->field_signed ("total-bytes", total_bytes);
1345 uiout->field_core_addr ("next-page", gdbarch, addr + total_bytes);
1346 uiout->field_core_addr ("prev-page", gdbarch, addr - total_bytes);
  /src/external/bsd/libarchive/dist/libarchive/
archive_read_support_format_cab.c 244 uint32_t total_bytes; member in struct:cfheader
665 hd->total_bytes = archive_le32dec(p + CFHEADER_cbCabinet);
  /src/external/gpl3/gcc.old/dist/gcc/
internal-fn.cc 3136 unsigned HOST_WIDE_INT total_bytes = tree_to_uhwi (var_size); local
3137 unsigned char *buf = XALLOCAVEC (unsigned char, total_bytes);
3139 ? INIT_PATTERN_VALUE : 0), total_bytes);
3141 (total_bytes * BITS_PER_UNIT, 1);
3142 wide_int w = wi::from_buffer (buf, total_bytes);
tree.cc 8621 uint64_t total_nodes, total_bytes;
8624 total_nodes = total_bytes = 0;
8639 total_bytes += tree_node_sizes[j];
8643 SIZE_AMOUNT (total_nodes), SIZE_AMOUNT (total_bytes));
8597 uint64_t total_nodes, total_bytes; local
varasm.cc 5432 HOST_WIDE_INT total_bytes; /* # bytes output so far / current position. */
5463 if (fieldpos > local->total_bytes)
5465 assemble_zeros (fieldpos - local->total_bytes);
5466 local->total_bytes = fieldpos;
5470 gcc_assert (fieldpos == local->total_bytes);
5494 local->total_bytes += fieldsize;
5515 local->total_bytes++;
5540 if (fieldpos > local->total_bytes)
5542 assemble_zeros (fieldpos - local->total_bytes);
5543 local->total_bytes = fieldpos
5407 HOST_WIDE_INT total_bytes; \/* # bytes output so far \/ current position. *\/ member in struct:oc_local_state
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
internal-fn.cc 3421 unsigned HOST_WIDE_INT total_bytes = tree_to_uhwi (var_size); local
3422 unsigned char *buf = XALLOCAVEC (unsigned char, total_bytes);
3424 ? INIT_PATTERN_VALUE : 0), total_bytes);
3426 (total_bytes * BITS_PER_UNIT, 1);
3427 wide_int w = wi::from_buffer (buf, total_bytes);
tree.cc 8767 uint64_t total_nodes, total_bytes;
8770 total_nodes = total_bytes = 0;
8785 total_bytes += tree_node_sizes[j];
8789 SIZE_AMOUNT (total_nodes), SIZE_AMOUNT (total_bytes));
8743 uint64_t total_nodes, total_bytes; local
varasm.cc 5533 HOST_WIDE_INT total_bytes; /* # bytes output so far / current position. */
5564 if (fieldpos > local->total_bytes)
5566 assemble_zeros (fieldpos - local->total_bytes);
5567 local->total_bytes = fieldpos;
5571 gcc_assert (fieldpos == local->total_bytes);
5595 local->total_bytes += fieldsize;
5616 local->total_bytes++;
5641 if (fieldpos > local->total_bytes)
5643 assemble_zeros (fieldpos - local->total_bytes);
5644 local->total_bytes = fieldpos
5508 HOST_WIDE_INT total_bytes; \/* # bytes output so far \/ current position. *\/ member in struct:oc_local_state
    [all...]

Completed in 113 milliseconds