HomeSort by relevance Sort by last modified time
    Searched refs:pageStart (Results 1 - 4 of 4) sorted by null

  /external/webkit/Tools/DumpRenderTree/mac/
CheckedMalloc.cpp 74 mach_vm_address_t pageStart = reinterpret_cast<vm_address_t>(zone) & static_cast<vm_size_t>(~(getpagesize() - 1));
75 vm_prot_t initialProtection = protectionOfRegion(pageStart);
77 vm_size_t len = reinterpret_cast<vm_address_t>(zone) - pageStart + sizeof(malloc_zone_t);
78 if (mach_vm_protect(mach_task_self(), pageStart, len, 0, initialProtection | VM_PROT_WRITE))
88 if (mach_vm_protect(mach_task_self(), pageStart, len, 0, initialProtection))
  /external/webkit/Source/JavaScriptCore/jit/
ExecutableAllocator.cpp 97 void* pageStart = reinterpret_cast<void*>(pageStartPtr);
104 mprotect(pageStart, size, (setting == Writable) ? PROTECTION_FLAGS_RW : PROTECTION_FLAGS_RX);
  /system/core/libpixelflinger/codeflinger/
CodeCache.cpp 96 uint32_t* pageStart = (uint32_t*) (((uintptr_t) mBase) & pagemask);
97 size_t adjustedLength = (mBase - pageStart) * sizeof(uint32_t) + mSize;
99 if (mBase && mprotect(pageStart, adjustedLength, PROT_READ | PROT_WRITE | PROT_EXEC) != 0) {
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
CandidateView.java 601 int pageStart = mDecInfo.mPageStart.get(mPageNo);
602 int pageSize = mDecInfo.mPageStart.get(mPageNo + 1) - pageStart;

Completed in 120 milliseconds