Home | History | Annotate | Download | only in other

Lines Matching defs:out

20     cached, kilobytes swapped in and out per second, file disk blocks input and
43 // a big array, then read the elements back out by name
54 // We use vmstuff to fill out vmstat_proc as an array of uint64_t:
138 uint64_t out = ptr[order[i]];
142 if (i>5) out -= oldptr[order[i]];
143 if (order[i]<7) out = ((out*100) + (total_hz/2)) / total_hz;
144 else if (order[i]>17) out = ((out * page_kb)+(units-1))/units;
145 else if (order[i]>15) out = ((out)+(units-1))/units;
146 else if (order[i]<9) out = (out+(units-1)) / units;
152 offset += printf(" %*"PRIu64+!i, len, out);