OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pageStart
(Results
1 - 3
of
3
) 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);
/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 810 milliseconds