Searched refs:PAGE_SIZE (Results 76 - 100 of 194) sorted by relevance

12345678

/macosx-10.9.5/WebKit2-7537.78.2/PluginProcess/mac/
H A DPluginProcessShim.mm240 descriptorPtr->mmapedSize = (descriptorPtr->requestedSize + PAGE_SIZE) & ~(PAGE_SIZE - 1);
/macosx-10.9.5/emacs-92/emacs/src/s/
H A Dgnu-linux.h301 #define N_PAGSIZ(x) PAGE_SIZE
/macosx-10.9.5/xnu-2422.115.4/iokit/Kernel/
H A DIODataQueue.cpp93 dataQueue = (IODataQueueMemory *)IOMallocAligned(allocSize, PAGE_SIZE);
/macosx-10.9.5/xnu-2422.115.4/libkern/gen/
H A DOSDebug.cpp147 if (((PAGE_SIZE - (stackptr & PAGE_MASK)) < x86_64_RETURN_OFFSET) &&
/macosx-10.9.5/xnu-2422.115.4/osfmk/mach/
H A Dvm_param.h85 #define PAGE_SIZE_64 (unsigned long long)PAGE_SIZE /* pagesize in addr units */
/macosx-10.9.5/xnu-2422.115.4/osfmk/profiling/
H A Dprofile-mk.c117 pv->page_size = PAGE_SIZE;
/macosx-10.9.5/xnu-2422.115.4/osfmk/vm/
H A Dvm_external.c107 #define LARGE_SIZE PAGE_SIZE
H A Dvm_shared_region.h105 #define NUM_SLIDING_BITMAPS_PER_PAGE (PAGE_SIZE/sizeof(int)/NBBY) /*128*/
H A Dvm_object.c3056 target_off < end; target_off += PAGE_SIZE) {
3242 fault_info.cluster_size = (vm_size_t) (0 - PAGE_SIZE);
4359 PAGE_SIZE);
4568 if ((uint32_t) (object->vo_size/PAGE_SIZE) !=
4569 (object->vo_size/PAGE_SIZE)) {
4574 0x0FFFFFFFFULL*PAGE_SIZE);
4588 assert((uint32_t) (object->vo_size/PAGE_SIZE) ==
4589 (object->vo_size/PAGE_SIZE));
5795 base_offset += PAGE_SIZE;
5796 size -= PAGE_SIZE;
[all...]
H A Dvm_fault.c137 get_task_resident_size(current_task()) > (((AVAILABLE_NON_COMPRESSED_MEMORY) * PAGE_SIZE) / 5)) && \
330 sequential += PAGE_SIZE;
345 sequential -= PAGE_SIZE;
363 sequential += PAGE_SIZE;
372 sequential -= PAGE_SIZE;
461 if (sequential_run >= (int)PAGE_SIZE) {
467 if (sequential_run >= (int)PAGE_SIZE) {
481 if ((uint64_t)sequential_run >= behind && (sequential_run % (VM_DEFAULT_DEACTIVATE_BEHIND_CLUSTER * PAGE_SIZE)) == 0) {
1676 fault_info->cluster_size = PAGE_SIZE;
1684 PAGE_SIZE,
[all...]
/macosx-10.9.5/xnu-2422.115.4/bsd/kern/
H A Dubc_subr.c1003 kret = ubc_create_upl(vp, lastpg, PAGE_SIZE, &upl, &pl, UPL_SET_LITE);
1009 cluster_zero(upl, (uint32_t)lastoff, PAGE_SIZE - (uint32_t)lastoff, NULL);
1011 ubc_upl_abort_range(upl, 0, PAGE_SIZE, UPL_ABORT_FREE_ON_EMPTY);
2198 if (bufsize > MAX_UPL_SIZE * PAGE_SIZE)
2223 * if the requested size == PAGE_SIZE, we don't want to set
2230 if (bufsize > PAGE_SIZE)
2266 return(MAX_UPL_SIZE * PAGE_SIZE);
2705 blob->csb_start_offset = ntohl(scatter->base) * PAGE_SIZE;
2707 blob->csb_start_offset = (blob->csb_end_offset - (ntohl(cd->nCodeSlots) * PAGE_SIZE));
2854 blob->csb_start_offset = ntohl(scatter->base) * PAGE_SIZE;
[all...]
H A Dkern_exec.c385 imgp->ip_strspace = ( NCARGS + PAGE_SIZE );
644 PAGE_SIZE, fat_arch.offset,
1238 error = vn_rdwr(UIO_READ, imgp->ip_vp, imgp->ip_vdata, PAGE_SIZE, 0,
1711 px_args->mac_extensions_size > PAGE_SIZE) {
1727 if (extension->datalen == 0 || extension->datalen > PAGE_SIZE) {
1915 px_args.port_actions_size > PAGE_SIZE) {
3693 size += PAGE_SIZE;
3721 prot_size = PAGE_SIZE;
3773 (void) vm_allocate(current_map(), &init_addr, PAGE_SIZE, local
4018 imgp->ip_vdata = imgp->ip_strings + ( NCARGS + PAGE_SIZE );
[all...]
H A Dsubr_sbuf.c82 #define SBUF_MAXEXTENDSIZE PAGE_SIZE
83 #define SBUF_MAXEXTENDINCR PAGE_SIZE
/macosx-10.9.5/xnu-2422.115.4/osfmk/i386/
H A Dhpet.c197 rcbaArea = io_map_spec(rcbaAreap & -4096, PAGE_SIZE * 4, VM_WIMG_IO);
228 hpetArea = io_map_spec(hpetAreap & -4096, PAGE_SIZE * 4, VM_WIMG_IO);
/macosx-10.9.5/cddafs-252/
H A DAppleCDDAFileSystemVNodeOps.c1057 bzero ( ( caddr_t )( vmOffsetPtr + pageInArgsPtr->a_pl_offset ), PAGE_SIZE );
1059 amountToCopy = ( UInt32 ) __u64min ( PAGE_SIZE, numBytes - pageInArgsPtr->a_f_offset );
1083 PAGE_SIZE,
1728 ( off_t ) ( blockToOffsetArgsPtr->a_lblkno * PAGE_SIZE );
1766 *( offsetToBlockArgsPtr->a_lblkno ) = ( offsetToBlockArgsPtr->a_offset / PAGE_SIZE );
/macosx-10.9.5/xnu-2422.115.4/bsd/hfs/
H A Dhfs_readwrite.c4176 ubc_upl_range_needed (upl, ap->a_pl_offset / PAGE_SIZE, 1);
4259 ubc_upl_range_needed(upl, ap->a_pl_offset / PAGE_SIZE, 1);
4268 for (pg_index = ((isize) / PAGE_SIZE); pg_index > 0;) {
4287 isize = ((pg_index + 1) * PAGE_SIZE);
4302 f_offset += PAGE_SIZE;
4303 offset += PAGE_SIZE;
4304 isize -= PAGE_SIZE;
4314 xsize = isize - PAGE_SIZE;
4320 xsize -= PAGE_SIZE;
4322 xsize = num_of_pages * PAGE_SIZE;
[all...]
/macosx-10.9.5/xnu-2422.115.4/tools/tests/MPMMTest/
H A DMPMMtest.c438 if (++i > client_pages * PAGE_SIZE / sizeof(long))
541 client_memory = (long *) malloc(client_pages * PAGE_SIZE);
543 client_memory[i * PAGE_SIZE / sizeof(long)] = 0;
/macosx-10.9.5/ntfs-83/kext/
H A Dntfs_dir.c382 if ((u8*)ia < kaddr || (u8*)ia > kaddr + PAGE_SIZE) {
421 if (index_end > kaddr + PAGE_SIZE) {
1667 if ((bmp_ofs >> 3) >= PAGE_SIZE) {
1669 bmp_pos += PAGE_SIZE * 8;
1695 if ((u8*)ia < kaddr || (u8*)ia > kaddr + PAGE_SIZE) {
1736 if (index_end > kaddr + PAGE_SIZE) {
H A Dntfs_secure.c355 if ((u8*)ia < kaddr || (u8*)ia > kaddr + PAGE_SIZE) {
389 if (index_end > kaddr + PAGE_SIZE) {
/macosx-10.9.5/AppleUSBCDCDriver-4201.2.5/AppleUSBCDCACM/DataDriver/Headers/
H A DAppleUSBCDCACMData.h47 #define kMaxCirBufferSize PAGE_SIZE*3
103 #define MAX_BLOCK_SIZE PAGE_SIZE
/macosx-10.9.5/objc4-551.1/runtime/
H A Dobjc-externalref.mm88 size_t new_size = list->_size + PAGE_SIZE / sizeof(void *);
/macosx-10.9.5/xnu-2422.115.4/osfmk/kern/
H A Ddebug.c112 #define DEBUG_BUF_SIZE (3 * PAGE_SIZE)
577 kdb_printf("PageTables:%lu\n",(uintptr_t)(PAGE_SIZE * inuse_ptepages_count));
H A Dkalloc.c373 if (PAGE_SIZE < 16*1024)
376 kalloc_max = PAGE_SIZE;
/macosx-10.9.5/AppleUSBCDCDriver-4201.2.5/AppleUSBCDCEEM/Headers/
H A DAppleUSBCDCEEM.h90 #define MAX_BLOCK_SIZE PAGE_SIZE
/macosx-10.9.5/smb-697.95.1/kernel/smbfs/
H A Dsmbfs.h320 #define SMB_IOMAX ((size_t)MAX_UPL_SIZE * PAGE_SIZE)

Completed in 304 milliseconds

12345678