Searched refs:total (Results 1 - 15 of 15) sorted by relevance

/xnu-2782.1.97/bsd/sys/
H A Dvmmeter.h82 unsigned int v_faults; /* total faults taken */
128 int32_t t_vm; /* total virtual memory */
130 int32_t t_rm; /* total real memory in use */
139 extern struct vmtotal total;
/xnu-2782.1.97/libkern/zlib/
H A Dinflate.h112 unsigned long total; /* protected copy of output count */ member in struct:inflate_state
H A Dinflate.c137 strm->total_in = strm->total_out = state->total = 0;
563 When returning, a "goto inf_leave" is used to update the total counters,
1111 state->total += out;
1133 if (hold != (state->total & 0xffffffffUL)) {
1157 Return from inflate(), updating the total counts and the check value.
1173 state->total += out;
/xnu-2782.1.97/tools/lldbmacros/
H A Dmbufs.py18 print hdr_format.format('class', 'total', 'cached', 'uncached', 'inuse', 'failed', 'waiter', 'notified', 'purge')
28 total = 0
29 total += int(mc.mc_full.bl_total) * int(mc.mc_cpu[0].cc_bktsize)
34 total += int(ccp.cc_objs)
36 total += int(ccp.cc_pobjs)
37 print entry_format.format(mcs.mbcl_cname, mcs.mbcl_total, total,
39 (mcs.mbcl_total - total - mcs.mbcl_infree),
89 out_string += "total " + str(tot) + "]"
110 out_string += "total " + str(tot) + "]"
273 total
[all...]
/xnu-2782.1.97/osfmk/kern/
H A Dstack.c66 unsigned int stack_total; /* current total count */
67 unsigned long long stack_allocs; /* total count of allocations */
74 static unsigned int stack_new_count; /* total new stack allocations */
465 unsigned int total, hiwat, free; local
472 total = stack_total;
478 *count = total - free;
479 *cur_size = kernel_stack_size * total;
516 unsigned int total;
573 total = 0;
580 total
[all...]
H A Dclock.c110 static int64_t calend_adjtotal; /* Nanosecond remaining total adjustment */
589 int64_t total, ototal; local
593 * Compute the total adjustment time in nanoseconds.
595 total = ((int64_t)*secs * (int64_t)NSEC_PER_SEC) + (*microsecs * (int64_t)NSEC_PER_USEC);
608 * Save the old adjustment total for later return.
615 if (total != 0) {
621 if (total > 0) {
626 if (total > (int64_t) calend_adjbig)
628 if (delta > total)
629 delta = (int32_t)total;
[all...]
/xnu-2782.1.97/tools/tests/libMicro/
H A Dpipe.c298 size_t total = 0; local
301 n = read(s, (void *)((long)buf + total), len - total);
305 total += n;
306 if (total >= len) {
307 return (total);
H A Dlibmicro.c1172 print_bar(long count, long total) argument
1177 for (i = 1; i < (32 * count) / total; i++)
/xnu-2782.1.97/osfmk/ipc/
H A Dmach_debug.c376 unsigned int total, used; local
389 total = 0;
395 total = requests->ipr_size->its_size;
398 index < total; index++) {
407 *totalp = total;
/xnu-2782.1.97/bsd/hfs/
H A Dhfs_fsctl.h58 uint32_t total; member in struct:hfsinfo_metadata
H A Dhfs_vfsutils.c3698 /* Calculate total number of metadata blocks */
3699 hinfo->total = hinfo->extents + hinfo->catalog +
/xnu-2782.1.97/bsd/net/pktsched/
H A Dpktsched_hfsc.h135 u_int64_t total; /* total work in bytes */ member in struct:hfsc_classstats
250 u_int64_t cl_total; /* total work in bytes */
H A Dpktsched_hfsc.c1943 sp->total = cl->cl_total;
/xnu-2782.1.97/libkern/c++/
H A DOSKext.cpp2631 uint64_t total = ((uint64_t)num_items) * ((uint64_t)size); local
2633 if (total > UINT32_MAX){
2638 uint64_t allocSize64 = total + ((uint64_t)sizeof(zmem));
2642 notused, num_items, size, (uint32_t)total, sizeof(zmem));
/xnu-2782.1.97/osfmk/vm/
H A Dvm_pageout.c199 #define VM_PAGE_SPECULATIVE_TARGET(total) ((total) * 1 / (100 / vm_page_speculative_percentage))
204 #define VM_PAGE_INACTIVE_HEALTHY_LIMIT(total) ((total) * 1 / 200)

Completed in 197 milliseconds