OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:currentPageOffset
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
PoolAlloc.cpp
90
// A large
currentPageOffset
indicates a new page needs to
93
currentPageOffset
= pageSize;
169
tAllocState state = {
currentPageOffset
, inUseList };
176
currentPageOffset
= pageSize;
192
currentPageOffset
= stack.back().offset;
240
if (
currentPageOffset
+ allocationSize <= pageSize) {
242
// Safe to allocate from
currentPageOffset
.
244
unsigned char* memory = reinterpret_cast<unsigned char *>(inUseList) +
currentPageOffset
;
245
currentPageOffset
+= allocationSize;
246
currentPageOffset
= (currentPageOffset + alignmentMask) & ~alignmentMask
[
all
...]
PoolAlloc.h
204
size_t
currentPageOffset
; // next offset in top of inUseList to allocate from
Completed in 6264 milliseconds