Searched refs:numPages (Results 1 - 10 of 10) sorted by relevance

/macosx-10.10/JavaScriptCore-7600.1.17/jit/
H A DExecutableAllocator.cpp105 virtual void* allocateNewSpace(size_t& numPages) argument
107 size_t newNumPages = (((numPages * pageSize() + JIT_ALLOCATOR_LARGE_ALLOC_SIZE - 1) / JIT_ALLOCATOR_LARGE_ALLOC_SIZE * JIT_ALLOCATOR_LARGE_ALLOC_SIZE) + pageSize() - 1) / pageSize();
109 ASSERT(newNumPages >= numPages);
111 numPages = newNumPages;
118 PageReservation reservation = PageReservation::reserve(numPages * pageSize(), OSAllocator::JSJITCodePages, EXECUTABLE_POOL_WRITABLE, true);
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Quartz/Examples/Programming with Quartz/ConfidentialStamper/
H A DConfidentialStamper.py58 numPages = CGPDFDocumentGetNumberOfPages(sourcePDFDoc)
61 for i in range(1, numPages+1):
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Quartz/Examples/Programming with Quartz/ConfidentialStamper/
H A DConfidentialStamper.py58 numPages = CGPDFDocumentGetNumberOfPages(sourcePDFDoc)
61 for i in range(1, numPages+1):
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Quartz-2.5.1/Examples/Programming with Quartz/ConfidentialStamper/
H A DConfidentialStamper.py58 numPages = CGPDFDocumentGetNumberOfPages(sourcePDFDoc)
61 for i in range(1, numPages+1):
/macosx-10.10/WTF-7600.1.24/wtf/
H A DMetaAllocator.h109 // pages than we asked, in which case numPages is changed.
110 virtual void* allocateNewSpace(size_t& numPages) = 0;
/macosx-10.10/tcl-105/tcl/tcl/generic/
H A DtclEncoding.c1691 int i, hi, lo, numPages, symbol, fallback;
1728 numPages = (int) strtol(line, &line, 10);
1731 if (numPages < 0) {
1732 numPages = 0;
1733 } else if (numPages > 256) {
1734 numPages = 256;
1753 size = 256 * sizeof(unsigned short *) + numPages * PAGESIZE;
1760 for (i = 0; i < numPages; i++) {
1805 numPages = 0;
1808 numPages
1664 int i, hi, lo, numPages, symbol, fallback; local
[all...]
/macosx-10.10/tcl-105/tcl84/tcl/generic/
H A DtclEncoding.c1477 int i, hi, lo, numPages, symbol, fallback;
1514 numPages = (int) strtol(line, &line, 10);
1517 if (numPages < 0) {
1518 numPages = 0;
1519 } else if (numPages > 256) {
1520 numPages = 256;
1539 size = 256 * sizeof(unsigned short *) + numPages * PAGESIZE;
1549 for (i = 0; i < numPages; i++) {
1598 numPages = 0;
1601 numPages
1455 int i, hi, lo, numPages, symbol, fallback; local
[all...]
/macosx-10.10/libmalloc-53.1.1/src/
H A Dstack_logging.c71 static int enter_pair_in_table(unsigned *table, unsigned numPages, unsigned *uniquedParent, unsigned thisPC) { argument
73 unsigned base = numPages * vm_page_size / (sizeof(int)*2*2);
H A Dstack_logging_disk.c131 uint64_t numPages; // number of pages of the table member in struct:__anon9582
264 uniquing_table->numPages = DEFAULT_UNIQUING_PAGE_SIZE;
265 uniquing_table->tableSize = uniquing_table->numPages * vm_page_size;
293 uniquing_table->numPages = uniquing_table->numPages << EXPAND_FACTOR;
294 uniquing_table->tableSize = uniquing_table->numPages * vm_page_size;
/macosx-10.10/xnu-2782.1.97/iokit/Kernel/
H A DIODMACommand.cpp327 uint32_t numPages; local
370 numPages = atop_64(round_page_64((address & PAGE_MASK) + length));
374 state->fCopyPageCount += numPages;
383 for (IOItemCount idx = 0; idx < numPages; idx++)
393 for (IOItemCount idx = 0; idx < numPages; idx++)

Completed in 162 milliseconds