HomeSort by: relevance | last modified time | path
    Searched refs:pageshift (Results 1 - 17 of 17) sorted by relevancy

  /src/sys/uvm/
uvm_init.c 66 const int * const uvmexp_pageshift = &uvmexp.pageshift;
uvm_stat.c 78 (*pr)(" pagesize=%d (0x%x), pagemask=0x%x, pageshift=%d, ncolors=%d\n",
80 uvmexp.pageshift, uvmexp.ncolors);
uvm_meter.c 108 u.pageshift = uvmexp.pageshift;
uvm_extern.h 317 int pageshift; /* page shift */ member in struct:uvmexp
428 int64_t pageshift; member in struct:uvmexp_sysctl
uvm_page.c 518 for (uvmexp.pageshift = 0; ; uvmexp.pageshift++)
519 if ((1 << uvmexp.pageshift) == uvmexp.pagesize)
  /src/external/bsd/top/dist/machine/
m_hpux10.c 170 static int pageshift; /* log base 2 of the pagesize */ variable
172 /* define pagetok in terms of pageshift */
173 #define pagetok(size) ((size) << pageshift)
287 * Calculate pageshift -- the value needed to convert pages to Kbytes.
290 pageshift = 0;
292 pageshift += 1;
293 pageshift -= LOG1024;
m_hpux7.c 241 static int pageshift; /* log base 2 of the pagesize */ variable
243 /* define pagetok in terms of pageshift */
245 #define pagetok(size) ((size) << pageshift)
350 /* get the page size with "getpagesize" and calculate pageshift from it */
352 pageshift = 0;
355 pageshift++;
360 pageshift -= LOG1024;
m_hpux8.c 231 static int pageshift; /* log base 2 of the pagesize */ variable
233 /* define pagetok in terms of pageshift */
235 #define pagetok(size) ((size) << pageshift)
312 /* get the page size with "getpagesize" and calculate pageshift from it */
314 pageshift = 0;
317 pageshift++;
322 pageshift -= LOG1024;
m_hpux9.c 243 static int pageshift; /* log base 2 of the pagesize */ variable
245 /* define pagetok in terms of pageshift */
247 #define pagetok(size) ((size) << pageshift)
324 /* get the page size with "getpagesize" and calculate pageshift from it */
326 pageshift = 0;
329 pageshift++;
334 pageshift -= LOG1024;
m_macosx.c 144 static int pageshift = 0; variable
146 #define pagetok(size) ((size) << pageshift)
758 * calculate the pageshift from the system page size
762 pageshift = 0;
764 pageshift++;
766 pageshift -= LOG1024;
m_sunos4.c 277 static int pageshift; /* log base 2 of the pagesize */ variable
279 /* define pagetok in terms of pageshift */
281 #define pagetok(size) ((size) << pageshift)
392 /* get the page size with "getpagesize" and calculate pageshift from it */
394 pageshift = 0;
397 pageshift++;
402 pageshift -= LOG1024;
m_decosf1.c 237 static int pageshift; /* log base 2 of the pagesize */ variable
239 /* define pagetok in terms of pageshift */
241 #define pagetok(size) ((size) << pageshift)
332 /* get the page size with "getpagesize" and calculate pageshift from it */
334 pageshift = 0;
337 pageshift++;
342 pageshift -= LOG1024;
m_sunos5.c 339 static int pageshift; variable
524 return(size << pageshift);
530 return(size >> pageshift);
1311 /* calculate pageshift value */
1313 pageshift = 0;
1316 pageshift++;
1321 pageshift -= 10;
1323 /* now determine which pageshift function is appropriate for the
1325 if (pageshift > 0)
1330 else if (pageshift == 0
    [all...]
m_netbsd.c 255 static int pageshift; /* log base 2 of the pagesize */ variable
259 /* define pagetok in terms of pageshift */
261 #define pagetok(size) ((size) << pageshift)
389 /* get the page size with "getpagesize" and calculate pageshift from it */
391 pageshift = 0;
393 pageshift++;
398 pageshift -= LOG1024;
m_freebsd.c 345 static int pageshift; /* log base 2 of the pagesize */ variable
347 /* define pagetok in terms of pageshift */
349 #define pagetok(size) ((size) << pageshift)
902 /* get the page size with "getpagesize" and calculate pageshift from it */
904 pageshift = 0;
907 pageshift++;
921 pageshift -= LOG1024;
  /src/libexec/ld.elf_so/
xmalloc.c 137 static size_t pageshift; /* page size shift */ variable
180 pageshift = ffs(pagesz) - 1;
268 if (morepages((amt >> pageshift) + NPOOLPAGES) == 0)
  /src/sys/rump/librump/rumpkern/
vm.c 94 const int * const uvmexp_pageshift = &uvmexp.pageshift;
376 uvmexp.pageshift = PAGE_SHIFT;
380 uvmexp.pageshift = ffs(uvmexp.pagesize)-1;

Completed in 30 milliseconds