HomeSort by relevance Sort by last modified time
    Searched defs:kPageSize (Results 1 - 10 of 10) sorted by null

  /external/compiler-rt/lib/asan/lit_tests/
dlclose-test.cc 47 static const int kPageSize = 4096;
76 size_t page_beg = ((size_t)addr) & ~(kPageSize - 1);
77 void *res = mmap((void*)(page_beg), kPageSize,
  /external/compiler-rt/lib/asan/tests/
asan_test_utils.h 67 static const int kPageSize = 4096;
  /frameworks/av/media/libstagefright/include/
NuCachedSource2.h 74 kPageSize = 65536,
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl.cc 506 const uptr kPageSize = 4096;
510 // Set at least first kPageSize/2 to page boundary.
511 while ((p < begin + kPageSize / kShadowSize / 2) || ((uptr)p % kPageSize)) {
518 p = RoundDown(end, kPageSize);
  /external/v8/src/ia32/
regexp-macro-assembler-ia32.cc 753 const int kPageSize = 4096;
754 const int kRegistersPerPage = kPageSize / kPointerSize;
    [all...]
lithium-codegen-ia32.cc 177 const int kPageSize = 4 * KB;
178 for (int offset = slots * kPointerSize - kPageSize;
180 offset -= kPageSize) {
    [all...]
  /external/v8/src/arm/
simulator-arm.h 102 static const int kPageSize = 1 << kPageShift;
103 static const int kPageMask = kPageSize - 1;
121 char data_[kPageSize]; // The cached data.
122 static const int kValidityMapSize = kPageSize >> kLineShift;
  /external/v8/src/mips/
simulator-mips.h 114 static const int kPageSize = 1 << kPageShift;
115 static const int kPageMask = kPageSize - 1;
133 char data_[kPageSize]; // The cached data.
134 static const int kValidityMapSize = kPageSize >> kLineShift;
  /external/v8/src/
spaces.h 111 && (offset <= Page::kPageSize))
303 // Only works if the pointer is in the first kPageSize of the MemoryChunk.
651 // from [page_addr .. page_addr + kPageSize[
661 // [page_addr + kObjectStartOffset .. page_addr + kPageSize].
693 static const int kPageSize = 1 << kPageSizeBits;
696 static const int kNonCodeObjectAreaSize = kPageSize - kObjectStartOffset;
852 ASSERT(size >= static_cast<size_t>(Page::kPageSize));
857 ASSERT(size >= static_cast<size_t>(Page::kPageSize));
928 static const int kSize = Page::kPageSize / kRegionSize;
930 STATIC_ASSERT(Page::kPageSize % kRegionSize == 0)
    [all...]
  /external/v8/src/x64/
lithium-codegen-x64.cc 175 const int kPageSize = 4 * KB;
176 for (int offset = slots * kPointerSize - kPageSize;
178 offset -= kPageSize) {
    [all...]

Completed in 929 milliseconds