HomeSort by relevance Sort by last modified time
    Searched refs:GrMalloc (Results 1 - 9 of 9) sorted by null

  /external/skia/gpu/src/
GrMemory.cpp 22 void* GrMalloc(size_t bytes) {
GrBinHashKey.h 104 GrMalloc(sizeof(uint8_t) * fPhysicalSize));
128 GrMalloc(sizeof(uint8_t) * fLength));
GrAllocPool.cpp 31 Block* block = (Block*)GrMalloc(sizeof(Block) + size);
GrGpu.cpp 211 indices = (uint16_t*)GrMalloc(SIZE);
  /external/skia/gpu/include/
GrMemory.h 28 GrAutoMalloc(size_t bytes) : fPtr(GrMalloc(bytes)), fAllocatedBytes(bytes) {}
64 fPtr = newSize ? GrMalloc(newSize) : NULL;
88 * pre-allocated in the class object, avoiding a call to to GrMalloc if
100 fPtr = GrMalloc(bytes);
140 fPtr = GrMalloc(newSize);
168 * pre-allocated in the class object, avoiding a call to to GrMalloc if
GrTDArray.h 36 fArray = (T*)GrMalloc(fAllocated * sizeof(T));
64 fArray = (T*)GrMalloc(fAllocated * sizeof(T));
123 * with GrMalloc().
196 fArray = (T*)GrMalloc(fAllocated * sizeof(T));
199 T* newArray = (T*)GrMalloc(fAllocated * sizeof(T));
GrTArray.h 43 fMemArray = GrMalloc(sizeof(T) * fReserveCount);
76 fMemArray = GrMalloc(sizeof(T) * fAllocCount);
93 fMemArray = GrMalloc(sizeof(T) * fAllocCount);
122 fMemArray = GrMalloc(fAllocCount * sizeof(T));
153 fMemArray = GrMalloc(fAllocCount * sizeof(T));
301 fNewMemArray = (char*) GrMalloc(fAllocCount*sizeof(T));
GrAllocator.h 61 fBlocks.push_back() = GrMalloc(fBlockSize);
63 fBlocks[0] = GrMalloc(fBlockSize);
GrTypes.h 115 extern void* GrMalloc(size_t bytes);
117 //!< free block allocated by GrMalloc. ptr may be NULL

Completed in 213 milliseconds