Home
last modified time | relevance | path

Searched refs:total_size (Results 1 – 25 of 131) sorted by relevance

123456

/openbsd/sys/arch/amd64/amd64/
H A Ducode.c50 uint32_t total_size; member
278 uint32_t total_size; in cpu_ucode_intel_find() local
295 total_size = hdr->total_size; in cpu_ucode_intel_find()
299 if (total_size > left) { in cpu_ucode_intel_find()
311 left -= total_size; in cpu_ucode_intel_find()
312 data += total_size; in cpu_ucode_intel_find()
322 size_t total_size; in cpu_ucode_intel_verify() local
338 total_size = hdr->total_size; in cpu_ucode_intel_verify()
342 if (total_size % 4 != 0) { in cpu_ucode_intel_verify()
365 uint32_t data_size, total_size; in cpu_ucode_intel_match() local
[all …]
/openbsd/sys/arch/i386/i386/
H A Ducode.c50 uint32_t total_size; member
301 uint32_t total_size; in cpu_ucode_intel_find() local
318 total_size = hdr->total_size; in cpu_ucode_intel_find()
322 if (total_size > left) { in cpu_ucode_intel_find()
334 left -= total_size; in cpu_ucode_intel_find()
335 data += total_size; in cpu_ucode_intel_find()
345 size_t total_size; in cpu_ucode_intel_verify() local
361 total_size = hdr->total_size; in cpu_ucode_intel_verify()
365 if (total_size % 4 != 0) { in cpu_ucode_intel_verify()
388 uint32_t data_size, total_size; in cpu_ucode_intel_match() local
[all …]
/openbsd/gnu/llvm/compiler-rt/lib/asan/
H A Dasan_memory_profile.cpp27 uptr total_size; member
53 return a.total_size > b.total_size; in Print()
68 Printf("%zd byte(s) (%zd%%) in %zd allocation(s)\n", a.total_size, in Print()
69 a.total_size * 100 / total_allocated_user_size_, a.count); in Print()
71 total_shown += a.total_size; in Print()
89 allocations_[i].total_size += size; in Insert()
/openbsd/gnu/llvm/lldb/examples/python/
H A Dcmdtemplate.py129 total_size = 0
133 total_size = total_size + variable_type.GetByteSize()
134 average_size = float(total_size) / variables_count
137 variables_count, total_size, average_size), file=result)
/openbsd/sys/dev/pci/drm/i915/gt/uc/
H A Dintel_guc_ads.c521 u32 total_size = 0, alloc_size, real_size; in guc_prep_golden_context() local
557 total_size += alloc_size; in guc_prep_golden_context()
585 return total_size; in guc_prep_golden_context()
633 total_size += alloc_size; in guc_init_golden_context()
716 total_size = PAGE_SIZE; in guc_capture_prep_lists()
743 total_size += size; in guc_capture_prep_lists()
745 if (total_size > guc->ads_capture_size || in guc_capture_prep_lists()
765 total_size += size; in guc_capture_prep_lists()
785 total_size += size; in guc_capture_prep_lists()
787 if (total_size > guc->ads_capture_size || in guc_capture_prep_lists()
[all …]
/openbsd/gnu/usr.bin/binutils/gdb/
H A Dbcache.c80 long total_size; /* total number of bytes cached, including dups */ member
211 bcache->total_size += length; in bcache_data()
392 printf_filtered (" Total object size: %ld\n", c->total_size); in print_bcache_statistics()
395 print_percentage (c->total_size - c->unique_size, c->total_size); in print_bcache_statistics()
412 print_percentage (c->total_size - c->structure_size, c->total_size); in print_bcache_statistics()
/openbsd/gnu/llvm/lldb/include/lldb/Target/
H A DProcessStructReader.h70 auto total_size = struct_type.GetByteSize(nullptr); in ProcessStructReader() local
71 if (!total_size) in ProcessStructReader()
73 lldb::WritableDataBufferSP buffer_sp(new DataBufferHeap(*total_size, 0)); in ProcessStructReader()
76 *total_size, error); in ProcessStructReader()
/openbsd/gnu/usr.bin/binutils-2.17/opcodes/
H A Dcrx-dis.c379 int inst_bit_size, total_size; in make_argument() local
436 total_size = a->size + 10; /* sizeof(rbase + ridx + scl2) = 10. */ in make_argument()
437 p = makelongparameter (allWords, inst_bit_size - total_size, in make_argument()
438 inst_bit_size - (total_size - 4)); in make_argument()
440 p = makelongparameter (allWords, inst_bit_size - (total_size - 4), in make_argument()
441 inst_bit_size - (total_size - 8)); in make_argument()
443 p = makelongparameter (allWords, inst_bit_size - (total_size - 8), in make_argument()
444 inst_bit_size - (total_size - 10)); in make_argument()
446 p = makelongparameter (allWords, inst_bit_size - (total_size - 10), in make_argument()
/openbsd/gnu/gcc/libstdc++-v3/include/ext/pb_ds/detail/ov_tree_map_/
H A Dcond_dtor.hpp51 cond_dtor(value_vector a_vec, iterator& r_last_it, Size_Type total_size) in cond_dtor() argument
52 : m_a_vec(a_vec), m_r_last_it(r_last_it), m_max_size(total_size), in cond_dtor()
/openbsd/usr.sbin/pkg_add/OpenBSD/PackageRepository/
H A DHTTP.pm286 my $total_size = 0;
297 $total_size = $h->{size};
305 print "TRANSFER: $total_size\n";
313 } while ($end < $total_size);
/openbsd/gnu/llvm/compiler-rt/lib/lsan/
H A Dlsan_common.cpp91 bool SuppressByRule(const StackTrace &stack, uptr hit_count, uptr total_size);
98 bool Suppress(u32 stack_trace_id, uptr hit_count, uptr total_size);
215 uptr hit_count, uptr total_size) { in SuppressByRule() argument
220 s->weight += total_size; in SuppressByRule()
229 uptr total_size) { in Suppress() argument
232 if (!SuppressInvalid(stack) && !SuppressByRule(stack, hit_count, total_size)) in Suppress()
849 leaks_[i].total_size += leaked_size; in AddLeakedChunks()
870 return leak1.total_size > leak2.total_size; in LeakComparator()
908 leaks_[index].total_size, leaks_[index].hit_count); in PrintReportForLeak()
936 bytes += leaks_[i].total_size; in PrintSummary()
[all …]
/openbsd/gnu/llvm/lldb/examples/scripting/
H A Dtree_utils.py95 total_size = left_size + right_size + 1
96 return total_size
/openbsd/gnu/gcc/gcc/config/mt/
H A Dmt.c860 unsigned int total_size; in mt_compute_frame_size() local
896 total_size += reg_size; in mt_compute_frame_size()
897 total_size = ((total_size + 3) & ~3); in mt_compute_frame_size()
899 frame_size = total_size; in mt_compute_frame_size()
907 current_frame_info.total_size = total_size; in mt_compute_frame_size()
912 return total_size; in mt_compute_frame_size()
953 int offset = info.total_size; in mt_emit_save_fp()
954 int stack_offset = info.total_size; in mt_emit_save_fp()
993 int offset = info.total_size; in mt_emit_save_regs()
994 int stack_offset = info.total_size; in mt_emit_save_regs()
[all …]
/openbsd/gnu/gcc/gcc/config/arc/
H A Darc.c977 unsigned int total_size; /* # bytes that the entire frame takes up. */ member
1083 total_size = extra_size + pretend_size + args_size + var_size; in arc_compute_frame_size()
1105 total_size += reg_size; in arc_compute_frame_size()
1110 if (total_size == extra_size in arc_compute_frame_size()
1112 total_size = extra_size = 0; in arc_compute_frame_size()
1114 total_size = ARC_STACK_ALIGN (total_size); in arc_compute_frame_size()
1117 current_frame_info.total_size = total_size; in arc_compute_frame_size()
1128 return total_size; in arc_compute_frame_size()
1205 : current_frame_info.total_size); in arc_output_function_prologue()
1265 : current_frame_info.total_size); in arc_output_function_epilogue()
[all …]
/openbsd/gnu/usr.bin/gcc/gcc/config/arc/
H A Darc.c935 unsigned int total_size; /* # bytes that the entire frame takes up. */ member
1043 total_size = extra_size + pretend_size + args_size + var_size;
1065 total_size += reg_size;
1070 if (total_size == extra_size
1072 total_size = extra_size = 0;
1074 total_size = ARC_STACK_ALIGN (total_size);
1077 current_frame_info.total_size = total_size;
1088 return total_size;
1171 : current_frame_info.total_size);
1234 : current_frame_info.total_size);
[all …]
/openbsd/sys/dev/pci/drm/i915/
H A Di915_query.c239 u32 flags, total_size; in query_perf_config_data() local
245 total_size = in query_perf_config_data()
250 return total_size; in query_perf_config_data()
252 if (query_item->length < total_size) { in query_perf_config_data()
255 query_item->length, total_size); in query_perf_config_data()
345 ret = total_size; in query_perf_config_data()
/openbsd/gnu/gcc/gcc/config/m32r/
H A Dm32r.c1311 total_size += reg_size; in m32r_compute_frame_size()
1315 total_size = M32R_STACK_ALIGN (total_size); in m32r_compute_frame_size()
1317 frame_size = total_size - (pretend_size + reg_size); in m32r_compute_frame_size()
1320 current_frame_info.total_size = total_size; in m32r_compute_frame_size()
1330 return total_size; in m32r_compute_frame_size()
1388 gcc_assert (current_frame_info.total_size || !gmask); in m32r_expand_prologue()
1421 frame_size = (current_frame_info.total_size in m32r_expand_prologue()
1492 int total_size; in m32r_output_function_epilogue() local
1499 total_size = current_frame_info.total_size; in m32r_output_function_epilogue()
1501 if (total_size == 0) in m32r_output_function_epilogue()
[all …]
/openbsd/usr.sbin/bgpd/
H A Dutil.c439 ssize_t total_size = 0; in aspath_strsize() local
450 if (total_size != 0) in aspath_strsize()
451 total_size += 1; in aspath_strsize()
452 total_size += strlen(aspath_delim(seg_type, 0)); in aspath_strsize()
459 total_size++; in aspath_strsize()
462 total_size += seg_len - 1; in aspath_strsize()
464 total_size += strlen(aspath_delim(seg_type, 1)); in aspath_strsize()
466 return (total_size + 1); in aspath_strsize()
/openbsd/usr.sbin/ldomctl/
H A Dmdesc.c423 size_t total_size; in md_ingest() local
444 total_size = node_blk_size + name_blk_size + data_blk_size; in md_ingest()
446 if (size < total_size) in md_ingest()
512 size_t total_size; in md_exhume() local
546 total_size = 16 + node_blk_size + name_blk_size + data_blk_size; in md_exhume()
547 mdh = xmalloc(total_size); in md_exhume()
611 return total_size; in md_exhume()
/openbsd/gnu/usr.bin/gcc/gcc/config/m32r/
H A Dm32r.c1931 total_size += reg_size;
1935 total_size = M32R_STACK_ALIGN (total_size);
1937 frame_size = total_size - (pretend_size + reg_size);
1940 current_frame_info.total_size = total_size;
1950 return total_size;
1981 if (current_frame_info.total_size == 0 && gmask) in m32r_expand_prologue()
2016 frame_size = (current_frame_info.total_size in m32r_expand_prologue()
2081 int total_size; local
2089 total_size = current_frame_info.total_size;
2091 if (total_size == 0)
[all …]
/openbsd/gnu/usr.sbin/mkhybrid/src/
H A Djoliet.c516 unsigned int total_size; in FDECL2() local
520 total_size = (dpnt->jsize + (SECTOR_SIZE - 1)) & ~(SECTOR_SIZE - 1); in FDECL2()
521 directory_buffer = (char *) e_malloc(total_size); in FDECL2()
522 memset(directory_buffer, 0, total_size); in FDECL2()
694 xfwrite(directory_buffer, 1, total_size, outfile); in FDECL2()
695 last_extent_written += total_size >> 11; in FDECL2()
/openbsd/lib/libcurses/tinfo/
H A Dwrite_entry.c70 static int total_size; variable
389 total_size += data.size; in _nc_write_entry()
405 total_size += data.size; in _nc_write_entry()
951 total_size = total_size + (int) (*offset + 1); in _nc_write_object()
962 total_written, total_parts, total_size)); in _nc_tic_written()
/openbsd/sys/dev/pci/drm/amd/amdgpu/
H A Damdgpu_trace.h481 TP_PROTO(uint64_t total_bo, uint64_t total_size),
482 TP_ARGS(total_bo, total_size),
485 __field(u64, total_size)
490 __entry->total_size = total_size;
493 __entry->total_bo, __entry->total_size)
H A Damdgpu_bo_list.c77 uint64_t total_size = 0; in amdgpu_bo_list_create() local
142 total_size += amdgpu_bo_size(bo); in amdgpu_bo_list_create()
151 trace_amdgpu_cs_bo_status(list->num_entries, total_size); in amdgpu_bo_list_create()
H A Dmmsch_v4_0_3.h32 uint32_t total_size; member

123456