/prebuilts/ndk/current/platforms/android-24/arch-arm/usr/include/asm/ |
setup.h | 34 __u32 pagesize; member in struct:tag_core
|
/prebuilts/ndk/current/platforms/android-3/arch-arm/usr/include/linux/mtd/ |
nand.h | 245 unsigned long pagesize; member in struct:nand_flash_dev
|
/prebuilts/ndk/current/platforms/android-4/arch-arm/usr/include/linux/mtd/ |
nand.h | 245 unsigned long pagesize; member in struct:nand_flash_dev
|
/prebuilts/ndk/current/platforms/android-5/arch-arm/usr/include/linux/mtd/ |
nand.h | 245 unsigned long pagesize; member in struct:nand_flash_dev
|
/prebuilts/ndk/current/platforms/android-8/arch-arm/usr/include/linux/mtd/ |
nand.h | 245 unsigned long pagesize; member in struct:nand_flash_dev
|
/prebuilts/ndk/current/platforms/android-9/arch-arm/usr/include/linux/mtd/ |
nand.h | 245 unsigned long pagesize; member in struct:nand_flash_dev
|
/prebuilts/ndk/current/platforms/android-9/arch-mips/usr/include/linux/mtd/ |
nand.h | 245 unsigned long pagesize; member in struct:nand_flash_dev
|
/prebuilts/ndk/current/platforms/android-9/arch-x86/usr/include/linux/mtd/ |
nand.h | 245 unsigned long pagesize; member in struct:nand_flash_dev
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-dynload/ |
mmap.so | |
/system/core/logd/ |
LogBuffer.cpp | 50 long pagesize = sysconf(_SC_PAGESIZE); local 51 if (pagesize <= 1) { 52 pagesize = PAGE_SIZE; 57 unsigned long maximum = pages * pagesize; [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
winldap.h | [all...] |
/prebuilts/go/darwin-x86/src/runtime/ |
malloc.go | 98 pageSize = _PageSize 344 // PageSize can be larger than OS definition of page size, 345 // so SysReserve can give us a PageSize-unaligned pointer. 346 // To overcome this we ask for PageSize more and round up the pointer. 357 println("bad pagesize", hex(p), hex(p1), hex(spansSize), hex(bitmapSize), hex(_PageSize), "start", hex(mheap_.arena_start))
|
/prebuilts/go/linux-x86/src/runtime/ |
malloc.go | 98 pageSize = _PageSize 344 // PageSize can be larger than OS definition of page size, 345 // so SysReserve can give us a PageSize-unaligned pointer. 346 // To overcome this we ask for PageSize more and round up the pointer. 357 println("bad pagesize", hex(p), hex(p1), hex(spansSize), hex(bitmapSize), hex(_PageSize), "start", hex(mheap_.arena_start))
|
/external/skia/src/pdf/ |
SkPDFDevice.cpp | 703 SkPDFDevice::SkPDFDevice(SkISize pageSize, SkScalar rasterDpi, SkPDFCanon* canon, bool flip) 705 , fPageSize(pageSize) 706 , fContentSize(pageSize) 707 , fExistingClipRegion(SkIRect::MakeSize(pageSize)) 715 SkASSERT(pageSize.width() > 0); 716 SkASSERT(pageSize.height() > 0); 718 SkImageInfo::MakeUnknown(pageSize.width(), pageSize.height())); 724 fInitialTransform.setTranslate(0, SkIntToScalar(pageSize.fHeight)); [all...] |
/external/elfutils/src/ |
ld.c | 139 { "pagesize", ARGP_pagesize, "SIZE", 0, 140 N_("Assume pagesize for the target system to be SIZE."), 0 }, 622 ld_state.pagesize = strtoul (arg, &endp, 0); 626 ld_state.pagesize *= 1024; 628 ld_state.pagesize *= 1024 * 1024; 634 ld_state.pagesize = 0; [all...] |
ldlex.l | 141 PAGESIZE { return kPAGESIZE; }
|
/external/regex-re2/re2/testing/ |
re2_test.cc | 665 long pagesize = sysconf(_SC_PAGE_SIZE); local 670 v = static_cast<char*>(mmap(NULL, 2*pagesize, PROT_READ|PROT_WRITE, 674 CHECK_EQ(munmap(v + pagesize, pagesize), 0) << " error " << errno; 675 v[pagesize - 1] = '1'; 678 CHECK(RE2::FullMatch(StringPiece(v + pagesize - 1, 1), "(.*)", &x)); [all...] |
/external/valgrind/VEX/switchback/ |
linker.c | [all...] |
/libcore/ojluni/src/main/native/ |
zip_util.c | 566 static jlong pagesize; local 623 if (pagesize == 0) { 624 pagesize = (jlong)sysconf(_SC_PAGESIZE); 625 if (pagesize == 0) goto Catch; 627 if (cenpos > pagesize) { 628 offset = cenpos & ~(pagesize - 1); [all...] |
/external/llvm/include/llvm/ExecutionEngine/Orc/ |
IndirectionUtils.h | 182 sys::Memory::allocateMappedMemory(TargetT::PageSize, nullptr, 189 (TargetT::PageSize - TargetT::PointerSize) / TargetT::TrampolineSize;
|
/external/skia/src/doc/ |
SkDocument_PDF.cpp | 342 SkISize pageSize = SkISize::Make( 345 SkPDFDevice::Create(pageSize, fRasterDpi, &fCanon));
|
/external/compiler-rt/lib/asan/ |
asan_allocator.cc | 740 uptr PageSize = GetPageSizeCached(); 741 size = RoundUpTo(size, PageSize); 744 size = PageSize; 746 return instance.Allocate(size, PageSize, stack, FROM_MALLOC, true);
|
asan_interceptors.cc | 312 uptr PageSize = GetPageSizeCached(); 313 uptr bottom = stack & ~(PageSize - 1); 315 ssize = RoundUpTo(ssize, PageSize);
|
/external/skia/include/device/xps/ |
SkXPSDevice.h | 184 const XPS_SIZE& pageSize,
|
/bionic/libc/malloc_debug/ |
malloc_debug.cpp | 683 size_t pagesize = getpagesize(); 684 size_t size = BIONIC_ALIGN(bytes, pagesize); 690 return debug_memalign(pagesize, size);
|