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

/darwin-on-arm/xnu/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;
/darwin-on-arm/xnu/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;
/darwin-on-arm/xnu/osfmk/kern/
H A Dclock.c111 static int64_t calend_adjtotal; /* Nanosecond remaining total adjustment */
567 int64_t total, ototal; local
571 * Compute the total adjustment time in nanoseconds.
573 total = (int64_t)*secs * NSEC_PER_SEC + *microsecs * NSEC_PER_USEC;
586 * Save the old adjustment total for later return.
593 if (total != 0) {
599 if (total > 0) {
604 if (total > calend_adjbig)
606 if (delta > total)
607 delta = (int32_t)total;
[all...]
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 */
458 unsigned int total, hiwat, free; local
465 total = stack_total;
471 *count = total - free;
472 *cur_size = kernel_stack_size * total;
509 unsigned int total;
566 total = 0;
573 total
[all...]
/darwin-on-arm/xnu/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++)
/darwin-on-arm/xnu/osfmk/ipc/
H A Dmach_debug.c318 unsigned int total, used; local
331 total = 0;
337 total = requests->ipr_size->its_size;
340 index < total; index++) {
349 *totalp = total;
/darwin-on-arm/xnu/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.c1937 sp->total = cl->cl_total;
/darwin-on-arm/xnu/osfmk/profiling/i386/
H A Dprofile-md.c1027 "%12s total ticks\n",
1080 long double total = PROF_CNT_TO_LDOUBLE(stats->cnt);
1086 100.0L * (total_hits_dbl / total));
1091 "%12s times cache#%d matched (%5.2Lf%% of cache hits, %5.2Lf%% total)\n",
1095 100.0L * (PROF_CNT_TO_LDOUBLE(stats->cache_hits[i]) / total));
1070 long double total = PROF_CNT_TO_LDOUBLE(stats->cnt); local
/darwin-on-arm/xnu/osfmk/vm/
H A Dvm_pageout.c175 #define VM_PAGE_SPECULATIVE_TARGET(total) ((total) * 1 / (100 / vm_page_speculative_percentage))
180 #define VM_PAGE_INACTIVE_HEALTHY_LIMIT(total) ((total) * 1 / 200)
/darwin-on-arm/xnu/bsd/net/
H A Dif.c158 static int if_clone_list(int count, int * total, user_addr_t dst);
653 if_clone_list(int count, int * total, user_addr_t dst) argument
659 *total = if_cloners_count;
/darwin-on-arm/xnu/libkern/c++/
H A DOSKext.cpp2956 uint32_t total = num_items * size; local
2957 uint32_t allocSize = total + sizeof(zmem);

Completed in 96 milliseconds