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/chromium_org/third_party/angle/src/compiler/translator/
PoolAlloc.cpp
69
// A large
currentPageOffset
indicates a new page needs to
72
currentPageOffset
= pageSize;
155
tAllocState state = {
currentPageOffset
, inUseList };
162
currentPageOffset
= pageSize;
178
currentPageOffset
= stack.back().offset;
229
if (allocationSize <= pageSize -
currentPageOffset
) {
231
// Safe to allocate from
currentPageOffset
.
233
unsigned char* memory = reinterpret_cast<unsigned char *>(inUseList) +
currentPageOffset
;
234
currentPageOffset
+= allocationSize;
235
currentPageOffset
= (currentPageOffset + alignmentMask) & ~alignmentMask
[
all
...]
PoolAlloc.h
204
size_t
currentPageOffset
; // next offset in top of inUseList to allocate from
Completed in 32 milliseconds