Home | History | Annotate | Download | only in other

Lines Matching refs:in

1 /* free.c - Display amount of free and used memory in the system.
5 // Flag order is signifcant: b-t are units in order, FLAG_h-1 is unit mask
43 struct sysinfo in;
45 sysinfo(&in);
46 TT.units = in.mem_unit ? in.mem_unit : 1;
53 "Swap:%16s%12s%12s\n", convert(in.totalram),
54 convert(in.totalram-in.freeram), convert(in.freeram), convert(in.sharedram),
55 convert(in.bufferram), convert(in.totalram - in.freeram - in.bufferram),
56 convert(in.freeram + in.bufferram), convert(in.totalswap),
57 convert(in.totalswap - in.freeswap), convert(in.freeswap));