Home
last modified time | relevance | path

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

/illumos-gate/usr/src/tools/smatch/src/
H A Dallocate.c57 desc->total_bytes = 0; in drop_all_allocations()
108 desc->total_bytes += chunking; in allocate()
127 x->name, x->allocations, x->useful_bytes, x->total_bytes, in show_allocations()
128 100 * (double) x->useful_bytes / x->total_bytes, in show_allocations()
137 s->total_bytes = x->total_bytes; in get_allocator_stats()
H A Dstats.c20 x.name, x.allocations, x.useful_bytes, x.total_bytes, in show_stats()
21 100 * (double) x.useful_bytes / (x.total_bytes ? : 1), in show_stats()
26 tot->total_bytes += x.total_bytes; in show_stats()
H A Dallocate.h19 unsigned long allocations, total_bytes, useful_bytes; member
25 unsigned long total_bytes, useful_bytes; member
H A Dsmatch_slist.c359 desc->total_bytes = 0; in free_every_single_sm_state()
H A Dsmatch_ranges.c2052 desc->total_bytes = 0; in free_data_info_allocs()
/illumos-gate/usr/src/uts/common/fs/smbsrv/
H A Dsmb_nt_transact_notify_change.c153 int total_bytes, n_setup, n_param, n_data; in smb_nt_transact_notify_finish() local
207 total_bytes = param_pad + n_param + data_pad + n_data; in smb_nt_transact_notify_finish()
209 (void) smbsr_encode_result(sr, 18+n_setup, total_bytes, in smb_nt_transact_notify_finish()
222 total_bytes, /* Total data bytes */ in smb_nt_transact_notify_finish()
H A Dsmb_common_transact.c464 int total_bytes, n_setup, n_param, n_data; in smb_nt_trans_dispatch() local
536 total_bytes = param_pad + n_param + data_pad + n_data; in smb_nt_trans_dispatch()
538 rc = smbsr_encode_result(sr, 18+n_setup, total_bytes, in smb_nt_trans_dispatch()
551 total_bytes, /* Total data bytes */ in smb_nt_trans_dispatch()
1473 int total_bytes, n_setup, n_param, n_data; in smb_trans_dispatch() local
1578 total_bytes = param_pad + n_param + data_pad + n_data; in smb_trans_dispatch()
1580 rc = smbsr_encode_result(sr, 10+n_setup, total_bytes, in smb_trans_dispatch()
1593 total_bytes, /* Total data bytes */ in smb_trans_dispatch()
1626 int total_bytes, n_setup, n_param, n_data; in smb_trans2_dispatch() local
1794 rc = smbsr_encode_result(sr, 10+n_setup, total_bytes, in smb_trans2_dispatch()
[all …]
H A Dsmb_dispatch.c955 int total_bytes; in smbsr_check_result() local
959 total_bytes = 0; in smbsr_check_result()
962 total_bytes += m->m_len; in smbsr_check_result()
966 if ((offset + 3) > total_bytes) in smbsr_check_result()
973 if ((offset + (wct * 2 + 1)) > total_bytes) in smbsr_check_result()
979 if ((offset + 2) > total_bytes) in smbsr_check_result()
987 bcc = (total_bytes - offset) - 2; in smbsr_check_result()
998 if (offset != total_bytes) in smbsr_check_result()
/illumos-gate/usr/src/cmd/audio/audiotest/
H A Daudiotest.c235 long long total_bytes = 0; in testdsp() local
312 total_bytes += ccfg->len; in testdsp()
329 total_bytes -= delay; in testdsp()
330 total_bytes *= 1000; in testdsp()
332 total_bytes /= t; in testdsp()
333 total_bytes /= (tcfg->nchan * sizeof (int16_t)); in testdsp()
335 ratio = ((float)total_bytes / (float)sample_rate) * 100.0; in testdsp()
/illumos-gate/usr/src/uts/common/crypto/api/
H A Dkcf_random.c255 int total_bytes = 0; in rngprov_getbytes() local
271 total_bytes += need; in rngprov_getbytes()
302 return (total_bytes); in rngprov_getbytes()
328 int rv, total_bytes; in rngprov_getbytes_nblk() local
338 total_bytes = 0; in rngprov_getbytes_nblk()
359 return (total_bytes); in rngprov_getbytes_nblk()
395 total_bytes += blen; in rngprov_getbytes_nblk()
399 total_bytes += len; in rngprov_getbytes_nblk()
443 return (total_bytes); in rngprov_getbytes_nblk()
/illumos-gate/usr/src/uts/common/io/igb/
H A Digb_rx.c329 uint32_t total_bytes; in igb_rx() local
360 total_bytes = 0; in igb_rx()
382 ((pkt_len + total_bytes) > poll_bytes)) in igb_rx()
386 total_bytes += pkt_len; in igb_rx()
/illumos-gate/usr/src/uts/common/io/ena/
H A Dena_rx.c340 uint64_t total_bytes = 0; in ena_ring_rx() local
439 total_bytes += rcb->ercb_length; in ena_ring_rx()
501 if (polling && total_bytes > poll_bytes) { in ena_ring_rx()
519 rxq->er_stat.ers_bytes.value.ui64 += total_bytes; in ena_ring_rx()
523 bool, polling, uint64_t, num_frames, uint64_t, total_bytes); in ena_ring_rx()
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/netstat/
H A Dnetstat.c6740 kmem_cache_stats(char *title, char *name, int prefix, int64_t *total_bytes) in kmem_cache_stats() argument
6803 *total_bytes += (int64_t)buf_inuse * buf_size; in kmem_cache_stats()
6824 int64_t total_bytes = 0; in m_report() local
6832 "stream_head_cache", 0, &total_bytes); in m_report()
6833 kmem_cache_stats("queues", "queue_cache", 0, &total_bytes); in m_report()
6834 kmem_cache_stats("mblk", "streams_mblk", 0, &total_bytes); in m_report()
6835 kmem_cache_stats("dblk", "streams_dblk", 1, &total_bytes); in m_report()
6836 kmem_cache_stats("linkblk", "linkinfo_cache", 0, &total_bytes); in m_report()
6837 kmem_cache_stats("syncq", "syncq_cache", 0, &total_bytes); in m_report()
6838 kmem_cache_stats("qband", "qband_cache", 0, &total_bytes); in m_report()
[all …]
/illumos-gate/usr/src/lib/smbsrv/libmlsvc/common/
H A Dspoolss_svc.c922 pinfo0->total_bytes = 1040771; in spoolss_s_GetPrinter()
/illumos-gate/usr/src/uts/common/smbsrv/ndl/
H A Dspoolss.ndl183 DWORD total_bytes;