/freebsd/contrib/ofed/opensm/opensm/ |
H A D | osm_mad_pool.c | 76 IN uint32_t total_size, in osm_mad_pool_get() argument 83 CL_ASSERT(total_size); in osm_mad_pool_get() 92 osm_madw_init(p_madw, h_bind, total_size, p_mad_addr); in osm_mad_pool_get() 97 p_mad = osm_vendor_get(h_bind, total_size, &p_madw->vend_wrap); in osm_mad_pool_get() 117 IN uint32_t total_size, in osm_mad_pool_get_wrapper() argument 124 CL_ASSERT(total_size); in osm_mad_pool_get_wrapper() 138 osm_madw_init(p_madw, h_bind, total_size, p_mad_addr); in osm_mad_pool_get_wrapper()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/ |
H A D | asan_memory_profile.cpp | 26 uptr total_size; member 52 return a.total_size > b.total_size; in Print() 67 Printf("%zd byte(s) (%zd%%) in %zd allocation(s)\n", a.total_size, in Print() 68 a.total_size * 100 / total_allocated_user_size_, a.count); in Print() 70 total_shown += a.total_size; in Print() 88 allocations_[i].total_size += size; in Insert()
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_send/ |
H A D | zfs_send_006_pos.ksh | 59 typeset total_size=$(zfs send $option $snapshot 2>&1 | tail -1) 61 typeset total_size=$(zfs send $option $base_snapshot $snapshot \ 64 total_size=$(echo "$total_size" | awk '{print $NF}') 66 total_size=${total_size%M} 67 total_size=$(echo "$total_size * $block_count" | bc) 69 echo $total_size
|
/freebsd/usr.sbin/cpucontrol/ |
H A D | intel.c | 94 size_t data_size, total_size; in intel_update() local 170 if (fw_header->total_size == 0) in intel_update() 171 total_size = data_size + sizeof(*fw_header); in intel_update() 173 total_size = fw_header->total_size; in intel_update() 174 if (total_size > params->fwsize) { in intel_update() 194 ext_size = total_size - payload_size; in intel_update() 207 if (ext_table_size + payload_size > total_size) { in intel_update()
|
H A D | via.c | 89 size_t data_size, total_size; in via_update() local 146 total_size = fw_header->total_size; in via_update() 147 if (total_size > params->fwsize) { in via_update()
|
/freebsd/tools/tools/intel-ucode-split/ |
H A D | intel-ucode-split.c | 49 uint32_t total_size; member 104 printf("size\t\t0x%x\t\t0x%x\n", hdr->total_size, in dump_header() 105 hdr->total_size != 0 ? hdr->total_size : 2048); in dump_header() 170 resid = (hdr.total_size != 0 ? hdr.total_size : 2048) - in main()
|
/freebsd/sys/dev/mthca/ |
H A D | mthca_profile.c | 78 s64 total_size = 0; in mthca_make_profile() local 144 profile[i].start = mem_base + total_size; in mthca_make_profile() 145 total_size += profile[i].size; in mthca_make_profile() 147 if (total_size > mem_avail) { in mthca_make_profile() 150 (unsigned long long) total_size, in mthca_make_profile() 166 (int) (total_size >> 10)); in mthca_make_profile() 169 (int) (total_size >> 10), (int) (mem_avail >> 10), in mthca_make_profile() 170 (int) ((mem_avail - total_size) >> 10)); in mthca_make_profile() 280 return total_size; in mthca_make_profile()
|
/freebsd/sys/x86/x86/ |
H A D | ucode.c | 158 size = hdr->total_size; in ucode_intel_verify() 187 uint32_t data_size, flags, regs[4], sig, total_size; in ucode_intel_match() local 196 for (resid = *len; resid > 0; data += total_size, resid -= total_size) { in ucode_intel_match() 204 total_size = hdr->total_size; in ucode_intel_match() 207 if (total_size == 0) in ucode_intel_match() 208 total_size = UCODE_INTEL_DEFAULT_DATA_SIZE + in ucode_intel_match() 210 if (data_size > total_size + sizeof(struct ucode_intel_header)) in ucode_intel_match()
|
/freebsd/sys/dev/bhnd/nvram/ |
H A D | bhnd_nvram_value_subr.c | 280 size_t total_size; in bhnd_nvram_value_size() local 288 total_size = 0; in bhnd_nvram_value_size() 292 elem_size = strnlen(p, ilen - total_size); in bhnd_nvram_value_size() 296 if (total_size < ilen && *p == '\0') { in bhnd_nvram_value_size() 305 if (SIZE_MAX - total_size < elem_size) in bhnd_nvram_value_size() 308 total_size += elem_size; in bhnd_nvram_value_size() 311 return (total_size); in bhnd_nvram_value_size()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
H A D | ProcessStructReader.h | 70 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()
|
/freebsd/contrib/arm-optimized-routines/string/bench/ |
H A D | memset.c | 140 size_t total_size = 0; in main() local 157 total_size += memset_size; in main() 161 printf( "avg %.2f\n", (double)total_size / tsum); in main() 164 size_t total_size = 0; in main() local 181 total_size += memset_size; in main() 185 printf( "avg %.2f\n", (double)total_size / tsum); in main()
|
/freebsd/sys/dev/sfxge/ |
H A D | sfxge_nvram.c | 56 size_t total_size = ip->u.nvram.size; in sfxge_nvram_rw() local 66 MIN(total_size, sizeof(fake_dynamic_cfg_nvram))); in sfxge_nvram_rw() 76 while (total_size) { in sfxge_nvram_rw() 77 size_t len = MIN(chunk_size, total_size); in sfxge_nvram_rw() 97 total_size -= len; in sfxge_nvram_rw()
|
/freebsd/sys/dev/mlx4/mlx4_core/ |
H A D | mlx4_profile.c | 83 u64 total_size = 0; in mlx4_make_profile() local 138 profile[i].start = total_size; in mlx4_make_profile() 139 total_size += profile[i].size; in mlx4_make_profile() 142 if (total_size > dev_cap->max_icm_sz) { in mlx4_make_profile() 144 (unsigned long long) total_size, in mlx4_make_profile() 159 (int) (total_size >> 10)); in mlx4_make_profile() 249 return total_size; in mlx4_make_profile()
|
/freebsd/contrib/ofed/libirdma/ |
H A D | irdma_uk.c | 231 u16 *quanta, u32 total_size, in irdma_qp_get_next_send_wqe() argument 280 qp->sq_wrtrk_array[*wqe_idx].wr_len = total_size; in irdma_qp_get_next_send_wqe() 327 u32 total_size = 0, byte_off; in irdma_uk_rdma_write() local 340 total_size += op_info->lo_sg_list[i].length; in irdma_uk_rdma_write() 353 wqe = irdma_qp_get_next_send_wqe(qp, &wqe_idx, &quanta, total_size, info); in irdma_uk_rdma_write() 423 u32 i, byte_off, total_size = 0; in irdma_uk_rdma_read() local 439 total_size += op_info->lo_sg_list[i].length; in irdma_uk_rdma_read() 445 wqe = irdma_qp_get_next_send_wqe(qp, &wqe_idx, &quanta, total_size, info); in irdma_uk_rdma_read() 514 u32 i, wqe_idx, total_size = 0, byte_off; in irdma_uk_send() local 527 total_size += op_info->sg_list[i].length; in irdma_uk_send() [all …]
|
/freebsd/sys/dev/irdma/ |
H A D | irdma_uk.c | 231 u16 *quanta, u32 total_size, in irdma_qp_get_next_send_wqe() argument 280 qp->sq_wrtrk_array[*wqe_idx].wr_len = total_size; in irdma_qp_get_next_send_wqe() 327 u32 total_size = 0, byte_off; in irdma_uk_rdma_write() local 340 total_size += op_info->lo_sg_list[i].length; in irdma_uk_rdma_write() 353 wqe = irdma_qp_get_next_send_wqe(qp, &wqe_idx, &quanta, total_size, info); in irdma_uk_rdma_write() 423 u32 i, byte_off, total_size = 0; in irdma_uk_rdma_read() local 439 total_size += op_info->lo_sg_list[i].length; in irdma_uk_rdma_read() 445 wqe = irdma_qp_get_next_send_wqe(qp, &wqe_idx, &quanta, total_size, info); in irdma_uk_rdma_read() 514 u32 i, wqe_idx, total_size = 0, byte_off; in irdma_uk_send() local 527 total_size += op_info->sg_list[i].length; in irdma_uk_send() [all …]
|
/freebsd/usr.sbin/bhyve/ |
H A D | bootrom.c | 199 off_t rom_size, var_size, total_size; in bootrom_loadrom() local 265 total_size = rom_size + var_size; in bootrom_loadrom() 267 if (total_size > BOOTROM_SIZE) { in bootrom_loadrom() 269 total_size); in bootrom_loadrom()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/lsan/ |
H A D | lsan_common.cpp | 92 bool SuppressByRule(const StackTrace &stack, uptr hit_count, uptr total_size); 99 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() 866 leaks_[i].total_size += leaked_size; in AddLeakedChunks() 887 return leak1.total_size > leak2.total_size; in LeakComparator() 925 leaks_[index].total_size, leaks_[index].hit_count); in PrintReportForLeak() 953 bytes += leaks_[i].total_size; in PrintSummary() [all …]
|
/freebsd/contrib/ofed/opensm/include/opensm/ |
H A D | osm_mad_pool.h | 196 IN uint32_t total_size, 270 IN uint32_t total_size,
|
/freebsd/sys/contrib/libsodium/src/libsodium/sodium/ |
H A D | utils.c | 525 size_t total_size; in _sodium_malloc() local 537 total_size = page_size + page_size + unprotected_size + page_size; in _sodium_malloc() 538 if ((base_ptr = _alloc_aligned(total_size)) == NULL) { in _sodium_malloc() 596 size_t total_size; in sodium_free() local 606 total_size = page_size + page_size + unprotected_size + page_size; in sodium_free() 607 _mprotect_readwrite(base_ptr, total_size); in sodium_free() 618 _free_aligned(base_ptr, total_size); in sodium_free()
|
/freebsd/contrib/libarchive/libarchive/ |
H A D | archive_read.c | 402 a->client.dataset[iindex].total_size = -1; in archive_read_set_callback_data2() 432 a->client.dataset[i].total_size = -1; in archive_read_add_callback_data() 436 a->client.dataset[iindex].total_size = -1; in archive_read_add_callback_data() 1651 client->dataset[cursor].total_size < 0 || in __archive_read_filter_seek() 1653 client->dataset[cursor].total_size - 1 > offset || in __archive_read_filter_seek() 1657 client->dataset[cursor].total_size; in __archive_read_filter_seek() 1666 client->dataset[cursor].total_size = r; in __archive_read_filter_seek() 1668 client->dataset[cursor].total_size - 1 > offset || in __archive_read_filter_seek() 1672 client->dataset[cursor].total_size; in __archive_read_filter_seek() 1677 || offset > client->dataset[cursor].total_size) in __archive_read_filter_seek() [all …]
|
/freebsd/sys/dev/bnxt/bnxt_re/ |
H A D | qplib_tlv.h | 35 u8 total_size; member 49 (rtlv)->total_size = (tot_chunks); \ 144 return ((struct roce_tlv *)(req))->total_size; in __get_cmdq_base_cmd_size()
|
/freebsd/stand/efi/loader/arch/amd64/ |
H A D | multiboot2.c | 329 uint32_t *total_size; in exec() local 474 total_size = (uint32_t *)(uintptr_t)(addr); in exec() 475 *total_size = (uintptr_t)multiboot_space - addr; in exec() 477 if (*total_size > PAGE_SIZE) in exec()
|
/freebsd/contrib/openbsm/libauditd/ |
H A D | auditd_lib.c | 416 size_t expire_size, total_size = 0L; in auditd_expire_trails() local 476 total_size += stbuf.st_size; in auditd_expire_trails() 562 if ((expire_size && total_size > expire_size) && in auditd_expire_trails() 568 total_size -= at->at_size; in auditd_expire_trails() 571 if ((expire_size && total_size > expire_size) || in auditd_expire_trails() 577 total_size -= at->at_size; in auditd_expire_trails()
|
/freebsd/contrib/ncurses/ncurses/tinfo/ |
H A D | write_entry.c | 68 static int total_size; variable 387 total_size += (int) data.size; in _nc_write_entry() 403 total_size += (int) data.size; in _nc_write_entry() 950 total_size = total_size + (int) (*offset + 1); in _nc_write_object() 961 total_written, total_parts, total_size)); in _nc_tic_written()
|
/freebsd/contrib/libarchive/unzip/ |
H A D | bsdunzip.c | 975 uintmax_t total_size, file_count, error_count; in unzip() local 1005 total_size = 0; in unzip() 1027 total_size += archive_entry_size(e); in unzip() 1035 total_size, y_str, file_count, file_count != 1 ? "s" : ""); in unzip() 1039 total_size, total_size, y_str, file_count, in unzip()
|