HomeSort by relevance Sort by last modified time
    Searched full:pagesize (Results 226 - 250 of 425) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/linux/mtd/
nand.h 245 unsigned long pagesize; member in struct:nand_flash_dev
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/linux/mtd/
nand.h 245 unsigned long pagesize; member in struct:nand_flash_dev
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/mtd/
nand.h 245 unsigned long pagesize; member in struct:nand_flash_dev
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/mtd/
nand.h 245 unsigned long pagesize; member in struct:nand_flash_dev
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/mtd/
nand.h 245 unsigned long pagesize; member in struct:nand_flash_dev
  /external/chromium_org/base/
file_util_posix.cc 181 size_t pagesize = static_cast<size_t>(sysconf_result); local
182 CHECK_GE(sizeof(pagesize), sizeof(sysconf_result));
183 void *mapping = mmap(NULL, pagesize, PROT_READ, MAP_SHARED, fd, 0);
185 if (mprotect(mapping, pagesize, PROT_READ | PROT_EXEC) == 0)
187 munmap(mapping, pagesize);
  /external/chromium_org/third_party/sqlite/src/src/
btreeInt.h 198 ** filled with data (pagesize - 4 bytes). The last page can have as little
221 #define MX_CELL_SIZE(pBt) ((int)(pBt->pageSize-8))
228 #define MX_CELL(pBt) ((pBt->pageSize-8)/6)
423 u32 pageSize; /* Total number of bytes on a page */
439 u8 *pTmpSpace; /* BtShared.pageSize bytes of space for tmp use */
  /external/chromium_org/third_party/re2/re2/testing/
re2_test.cc 673 long pagesize = sysconf(_SC_PAGE_SIZE); local
678 v = static_cast<char*>(mmap(NULL, 2*pagesize, PROT_READ|PROT_WRITE,
682 CHECK_EQ(munmap(v + pagesize, pagesize), 0) << " error " << errno;
683 v[pagesize - 1] = '1';
686 CHECK(RE2::FullMatch(StringPiece(v + pagesize - 1, 1), "(.*)", &x));
    [all...]
  /external/elfutils/src/
ld.c 148 { "pagesize", ARGP_pagesize, "SIZE", 0,
149 N_("Assume pagesize for the target system to be SIZE."), 0 },
636 ld_state.pagesize = strtoul (arg, &endp, 0);
640 ld_state.pagesize *= 1024;
642 ld_state.pagesize *= 1024 * 1024;
648 ld_state.pagesize = 0;
    [all...]
ldlex.l 149 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/main/VEX/switchback/
linker.c     [all...]
  /external/chromium_org/tools/deep_memory_profiler/lib/
dump.py 122 def pagesize(self): member in class:Dump
258 elif self._lines[ln].startswith('PageSize: '):
  /external/stressapptest/src/
finelock_queue.cc 38 uint64 queuesize, int64 pagesize) {
42 page_size_ = pagesize;
  /external/chromium_org/base/process/
process_metrics_win.cc 15 // System pagesize. This value remains constant on x86/64 architectures.
  /external/chromium_org/third_party/WebKit/Source/core/frame/
Frame.h 172 void setPrinting(bool printing, const FloatSize& pageSize, const FloatSize& originalPageSize, float maximumShrinkRatio, AdjustViewSizeOrNot);
  /external/chromium_org/third_party/skia/include/device/xps/
SkXPSDevice.h 185 const XPS_SIZE& pageSize,
  /external/chromium_org/third_party/tcmalloc/chromium/src/
memfs_malloc.cc 153 // Ask for extra memory if alignment > pagesize
  /external/chromium_org/third_party/tcmalloc/vendor/src/
memfs_malloc.cc 153 // Ask for extra memory if alignment > pagesize
  /external/llvm/lib/Support/Windows/
Process.inc 91 self_process::self_process() : PageSize(getPageSize()) {
  /external/skia/include/device/xps/
SkXPSDevice.h 185 const XPS_SIZE& pageSize,
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
MemoryCache.cpp 522 size_t pageSize = (o->encodedSize() + o->overheadSize() + 4095) & ~4095;
529 purgeableSize += purgeable ? pageSize : 0;
530 purgedSize += purged ? pageSize : 0;
  /external/compiler-rt/lib/asan/
asan_interceptors.cc 192 uptr PageSize = GetPageSizeCached();
193 uptr bottom = stack & ~(PageSize - 1);
195 ssize = RoundUpTo(ssize, PageSize);
asan_rtl.cc 413 uptr PageSize = GetPageSizeCached();
415 uptr bottom = ((uptr)&local_stack - PageSize) & ~(PageSize-1);
  /external/skia/tests/
CanvasTest.cpp 749 SkISize pageSize = SkISize::Make(kWidth, kHeight);
750 SkPDFDevice device(pageSize, pageSize, SkMatrix::I());
    [all...]

Completed in 987 milliseconds

1 2 3 4 5 6 7 8 91011>>