Searched refs:PAGE_SIZE (Results 151 - 175 of 194) sorted by relevance

12345678

/macosx-10.9.5/xnu-2422.115.4/osfmk/i386/
H A Dmp.c174 char mp_slave_stack[PAGE_SIZE] __attribute__((aligned(PAGE_SIZE))); // Temp stack for slave init
/macosx-10.9.5/xnu-2422.115.4/osfmk/kern/
H A Dwait_queue.c144 hsize = P2ROUNDUP(queues * sizeof(struct wait_queue), PAGE_SIZE);
179 whsize = P2ROUNDUP(num_wait_queues * qsz, PAGE_SIZE);
/macosx-10.9.5/ntfs-83/kext/
H A Dntfs_vnops.c2559 * compression block boundaries and to PAGE_SIZE boundaries and
2710 ubc_upl_abort_range(upl, cur_pg << PAGE_SHIFT, PAGE_SIZE,
2882 if (size > PAGE_SIZE) {
2883 ntfs_warning(ni->vol->mp, "Unexpected count 0x%llx > PAGE_SIZE "
2884 "0x%x, overriding it to PAGE_SIZE.",
2885 (unsigned long long)size, PAGE_SIZE);
2886 size = PAGE_SIZE;
3461 if (ofs > PAGE_SIZE)
3462 panic("%s(): ofs > PAGE_SIZE\n", __FUNCTION__);
3464 if (count > PAGE_SIZE
[all...]
H A Dntfs_index.c687 if ((u8*)ia < addr || (u8*)ia > addr + PAGE_SIZE) {
723 if ((u8*)ia + idx_ni->block_size > addr + PAGE_SIZE)
725 "PAGE_SIZE\n", __FUNCTION__);
2025 bmp_end = bmp + PAGE_SIZE;
2026 if (bmp_pos + PAGE_SIZE > end_pos)
2386 bzero(ia, PAGE_SIZE);
4152 * cases and the PAGE_SIZE is 4096 bytes both on x86 and PPC
H A Dntfs_inode.c1429 if (afp_size > PAGE_SIZE)
1430 afp_size = PAGE_SIZE;
1675 bzero(afp, PAGE_SIZE);
2926 if (ni->block_size > PAGE_SIZE) {
2927 ntfs_error(vol->mp, "Index block size (%u) > PAGE_SIZE (%u) "
2929 (unsigned)ni->block_size, PAGE_SIZE);
H A Dntfs_lcnalloc.c311 bsize = PAGE_SIZE - bsize;
H A Dntfs_attr.c3048 bzero(kaddr + attr_size, PAGE_SIZE - attr_size);
4343 end_vcn = (ofs + PAGE_SIZE + vol->cluster_size_mask) >>
4442 ofs += PAGE_SIZE;
8865 size = PAGE_SIZE;
8870 ofs += PAGE_SIZE;
8886 for (; ofs < end; ofs += PAGE_SIZE) {
8894 memset(kaddr, val, PAGE_SIZE);
/macosx-10.9.5/cxxfilt-11/cxxfilt/binutils/
H A Ddlltool.c244 #define PAGE_SIZE 4096 macro
245 #define PAGE_MASK (-PAGE_SIZE)
1980 long need[PAGE_SIZE];
/macosx-10.9.5/xnu-2422.115.4/bsd/kern/
H A Duipc_syscalls.c2527 xfsize = PAGE_SIZE;
2533 else if (xfsize > PAGE_SIZE)
2536 if (pgoff > 0 && PAGE_SIZE - pgoff < xfsize)
H A Dkern_mman.c225 * as the file offset taken modulo PAGE_SIZE, so it
976 for( ; addr < end; addr += PAGE_SIZE ) {
H A Dkdebug.c1979 pad_size = PAGE_SIZE - ((sizeof(RAW_header) + (count * sizeof(kd_threadmap))) & PAGE_MASK_64);
2021 pad_size = PAGE_SIZE - (RAW_file_offset & PAGE_MASK_64);
H A Dkern_resource.c131 rlim_t maxsmap = MAXSSIZ - PAGE_SIZE; /* XXX */
/macosx-10.9.5/xnu-2422.115.4/osfmk/kdp/
H A Dkdp.c1090 uint64_t src_rem = PAGE_SIZE - (phys_src & PAGE_MASK);
1091 uint64_t dst_rem = PAGE_SIZE - (phys_dest & PAGE_MASK);
/macosx-10.9.5/IOFireWireSBP2-426.4.1/IOFireWireSBP2/
H A DIOFireWireSBP2ORB.cpp115 status = allocatePageTable( PAGE_SIZE / sizeof(FWSBP2PTE) ); // default size
/macosx-10.9.5/xnu-2422.115.4/bsd/dev/i386/
H A Dsysctl.c699 uint32_t pmap_kernel_text_ps = PAGE_SIZE;
/macosx-10.9.5/xnu-2422.115.4/bsd/nfs/
H A Dnfsnode.h123 #define NFS_MAXBSIZE (32 * PAGE_SIZE) /* valid/dirty page masks limit buffer size */
/macosx-10.9.5/xnu-2422.115.4/osfmk/vm/
H A Dvm_map.h267 #define SUPERPAGE_SIZE (PAGE_SIZE*SUPERPAGE_NBASEPAGES)
H A Dvm_user.c158 * minimum is 0, bump it up by PAGE_SIZE. We want to limit
227 * minimum is 0, bump it up by PAGE_SIZE. We want to limit
3612 if (*upl_size > (MAX_UPL_TRANSFER*PAGE_SIZE))
3613 *upl_size = (MAX_UPL_TRANSFER*PAGE_SIZE);
/macosx-10.9.5/smb-697.95.1/kernel/smbfs/
H A Dsmbfs_vnops.c2664 *ap->a_bpn = (daddr64_t)(ap->a_foffset / PAGE_SIZE);
2719 uio = uio_create(1, ((off_t)buf_blkno(bp)) * PAGE_SIZE, UIO_SYSSPACE,
2787 uio = uio_create(1, ((off_t)buf_blkno(bp)) * PAGE_SIZE, UIO_SYSSPACE,
2829 size_t bytes_to_zero = (uio_resid(uio) > PAGE_SIZE) ? PAGE_SIZE : (size_t)uio_resid(uio);
/macosx-10.9.5/AppleUSBCDCDriver-4201.2.5/AppleUSBCDCACM/DataDriver/Classes/
H A DAppleUSBCDCACMData.cpp3851 fPort.inPool[i].pipeMDP = IOBufferMemoryDescriptor::withOptions(kIODirectionIn | kIOMemoryPhysicallyContiguous, DATA_BUFF_SIZE, PAGE_SIZE);
3879 fPort.outPool[i].pipeMDP = IOBufferMemoryDescriptor::withOptions(kIODirectionOut | kIOMemoryPhysicallyContiguous, MAX_BLOCK_SIZE, PAGE_SIZE);
/macosx-10.9.5/objc4-551.1/runtime/
H A Dobjc-auto.mm1132 z = malloc_create_zone(PAGE_SIZE, 0);
/macosx-10.9.5/xnu-2422.115.4/bsd/hfs/
H A Dhfs_vfsutils.c1467 if (allocationBlockSize % PAGE_SIZE == 0) return PAGE_SIZE;
/macosx-10.9.5/msdosfs-198/msdosfs.kextproj/msdosfs.kmodproj/
H A Dmsdosfs_vfsops.c621 pmp->pm_fatblocksize = PAGE_SIZE;
/macosx-10.9.5/xnu-2422.115.4/bsd/vm/
H A Dvm_unix.c244 vaddr += PAGE_SIZE) {
/macosx-10.9.5/xnu-2422.115.4/osfmk/x86_64/
H A Didt64.s785 cmpq $(PAGE_SIZE), %rax /* current stack in PCB? */

Completed in 540 milliseconds

12345678