Home | History | Annotate | Download | only in libiberty

Lines Matching full:physmem

113 	double pages = realmem.physmem;
122 int physmem;
124 if (getsysinfo (GSI_PHYSMEM, (caddr_t) &physmem, sizeof (physmem),
127 double kbytes = physmem;
137 unsigned int physmem;
138 size_t len = sizeof physmem;
141 if (sysctl (mib, ARRAY_SIZE (mib), &physmem, &len, NULL, 0) == 0
142 && len == sizeof (physmem))
143 return (double) physmem;
149 return _system_configuration.physmem;
303 compile-command: "gcc -DDEBUG -DHAVE_CONFIG_H -I.. -g -O -Wall -W physmem.c"