| /src/sys/arch/mips/include/ |
| wired_map.h | 69 #define MIPS3_WIRED_ENTRY_SIZE(pgsize) ((pgsize) * 2) 70 #define MIPS3_WIRED_ENTRY_OFFMASK(pgsize) (MIPS3_WIRED_ENTRY_SIZE(pgsize) - 1)
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.python/ |
| py-auto-load-chaining.c | 34 int pgsize = sysconf(_SC_PAGE_SIZE); local 35 addr = mmap (NULL, pgsize, PROT_EXEC | PROT_READ | PROT_WRITE,
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/ |
| py-auto-load-chaining.c | 34 int pgsize = sysconf(_SC_PAGE_SIZE); local 35 addr = mmap (NULL, pgsize, PROT_EXEC | PROT_READ | PROT_WRITE,
|
| /src/sys/arch/mips/mips/ |
| wired_map.c | 91 mips3_wired_enter_page(vaddr_t va, paddr_t pa, vsize_t pgsize) 98 KASSERT((va & (pgsize - 1)) == 0); 99 KASSERT((pa & (pgsize - 1)) == 0); 102 va0 = va & ~MIPS3_WIRED_ENTRY_OFFMASK(pgsize); 107 if ((va & pgsize) == 0) { 140 mips3_wired_map[index].pgmask = MIPS3_PG_SIZE_TO_MASK(pgsize);
|
| /src/tests/fs/puffs/h_dtfs/ |
| dtfs_vfsops.c | 200 int pgsize; local 203 pgsize = getpagesize(); 217 sbp->f_blocks = ROUND(btot, pgsize) / pgsize; 220 sbp->f_bsize = sbp->f_frsize = sbp->f_iosize = pgsize; 221 sbp->f_bfree = sbp->f_bavail = ROUND(bfree, pgsize) / pgsize;
|
| /src/crypto/external/apache2/openssl/dist/crypto/ |
| mem_sec.c | 429 size_t pgsize; local 502 pgsize = PAGE_SIZE; 504 pgsize = (size_t)tmppgsize; 508 pgsize = (size_t)systemInfo.dwPageSize; 510 pgsize = PAGE_SIZE; 512 sh.map_size = pgsize + sh.arena_size + pgsize; 539 sh.arena = (char *)(sh.map_result + pgsize); 548 if (mprotect(sh.map_result, pgsize, PROT_NONE) < 0) 551 if (VirtualProtect(sh.map_result, pgsize, PAGE_NOACCESS, &flOldProtect) == FALSE [all...] |
| /src/crypto/external/bsd/openssl/dist/crypto/ |
| mem_sec.c | 414 size_t pgsize; local 487 pgsize = PAGE_SIZE; 489 pgsize = (size_t)tmppgsize; 493 pgsize = (size_t)systemInfo.dwPageSize; 495 pgsize = PAGE_SIZE; 497 sh.map_size = pgsize + sh.arena_size + pgsize; 524 sh.arena = (char *)(sh.map_result + pgsize); 533 if (mprotect(sh.map_result, pgsize, PROT_NONE) < 0) 536 if (VirtualProtect(sh.map_result, pgsize, PAGE_NOACCESS, &flOldProtect) == FALSE [all...] |
| /src/crypto/external/bsd/openssl.old/dist/crypto/ |
| mem_sec.c | 386 size_t pgsize; local 440 pgsize = PAGE_SIZE; 442 pgsize = (size_t)tmppgsize; 445 pgsize = PAGE_SIZE; 447 sh.map_size = pgsize + sh.arena_size + pgsize; 465 sh.arena = (char *)(sh.map_result + pgsize); 473 if (mprotect(sh.map_result, pgsize, PROT_NONE) < 0) 477 aligned = (pgsize + sh.arena_size + (pgsize - 1)) & ~(pgsize - 1) [all...] |
| /src/sys/arch/ews4800mips/sbd/ |
| fb_sbdio.c | 383 vsize_t fb_off, reg_off, pgsize; local 385 pgsize = MIPS3_WIRED_SIZE; 392 if (mips3_wired_enter_page(va, fb_paddr, pgsize) == false) { 397 if (mips3_wired_enter_page(va + pgsize, reg_paddr, pgsize) == false) { 403 *reg_vaddr = va + pgsize + reg_off;
|
| /src/usr.sbin/cpuctl/arch/ |
| i386.c | 1031 uint32_t pgsize; local 1039 pgsize = __SHIFTOUT(descs[1], CPUID_DATP_PGSIZE); 1043 switch (pgsize) { 1057 pgsize); 1062 switch (pgsize) { 1076 pgsize); 1093 if (pgsize == CPUID_DATP_PGSIZE_4KB) 1095 else if (pgsize == (CPUID_DATP_PGSIZE_4KB 1098 else if (pgsize == (CPUID_DATP_PGSIZE_2MB 1101 else if ((pgsize & CPUID_DATP_PGSIZE_1GB [all...] |
| /src/sys/arch/sgimips/sgimips/ |
| arcemu.c | 648 const int pgsize = ARCBIOS_PAGESIZE; local 649 int bp = PIC_MEMCFG_ADDR(memcfg) / pgsize; 650 int pc = PIC_MEMCFG_SIZ(memcfg) / pgsize;
|
| /src/tests/kernel/ |
| t_sysv.c | 81 size_t pgsize; variable 628 pgsize = sysconf(_SC_PAGESIZE); 633 ATF_REQUIRE_MSG((sender_shmid = shmget(shmkey, pgsize, 751 shmid = shmget(shmkey, pgsize, 0);
|
| /src/sys/arch/sparc/sparc/ |
| pmap.c | 4194 int pgsize = PAGE_SIZE; local 4198 va += pgsize; 4199 pa += pgsize;
|