OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:GrMemoryPool
(Results
1 - 2
of
2
) sorted by null
/external/skia/src/gpu/
GrMemoryPool.cpp
8
#include "
GrMemoryPool
.h"
16
GrMemoryPool
::
GrMemoryPool
(size_t preallocSize, size_t minAllocSize) {
33
GrMemoryPool
::~
GrMemoryPool
() {
41
void*
GrMemoryPool
::allocate(size_t size) {
77
void
GrMemoryPool
::release(void* p) {
118
GrMemoryPool
::BlockHeader*
GrMemoryPool
::CreateBlock(size_t size) {
133
void
GrMemoryPool
::DeleteBlock(BlockHeader* block)
[
all
...]
GrMemoryPool.h
20
class
GrMemoryPool
{
27
GrMemoryPool
(size_t preallocSize, size_t minAllocSize);
29
~
GrMemoryPool
();
47
* Returns the total allocated size of the
GrMemoryPool
minus any preallocated amount
Completed in 2713 milliseconds