OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:fFreeSize
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/skia/src/gpu/
GrMemoryPool.h
62
size_t
fFreeSize
; ///< amount of free space left in the block.
/external/chromium_org/third_party/skia/src/core/
SkChunkAlloc.cpp
22
size_t
fFreeSize
;
83
block->
fFreeSize
= size;
101
if (block == NULL || bytes > block->
fFreeSize
) {
110
SkASSERT(block && bytes <= block->
fFreeSize
);
113
block->
fFreeSize
-= bytes;
126
block->
fFreeSize
+= bytes;
Completed in 331 milliseconds