Searched defs:decPtr (Results 1 - 6 of 6) sorted by relevance

/external/skia/src/core/
H A DSkFlattenable.cpp37 // call this now, while our decPtr() is sill in scope
45 void SkRefCntSet::decPtr(void* ptr) { function in class:SkRefCntSet
H A DSkPtrRecorder.h20 * and decPtr(). incPtr() is called each time a unique ptr is added ot the
21 * set. decPtr() is called on each ptr when the set is destroyed or reset.
51 * incPtr() and decPtr() are not called during this operation.
56 * Call decPtr() on each ptr in the set, and the reset the size of the set
84 virtual void decPtr(void*) {} function in class:SkPtrSet
126 * base class's incPtr() and decPtr() are called. This makes it a valid owner
136 virtual void decPtr(void*);
/external/lz4/examples/
H A DHCStreaming_ringBuffer.c114 char* const decPtr = &decBuf[decOffset]; local
116 lz4StreamDecode, cmpBuf, decPtr, cmpBytes, MESSAGE_MAX_BYTES);
121 write_bin(outFp, decPtr, decBytes);
H A DblockStreaming_doubleBuffer.c94 char* const decPtr = decBuf[decBufIndex]; local
96 lz4StreamDecode, cmpBuf, decPtr, cmpBytes, BLOCK_BYTES);
100 write_bin(outFp, decPtr, (size_t) decBytes);
H A DblockStreaming_lineByLine.c102 char* const decPtr = &decBuf[decOffset]; local
104 lz4StreamDecode, cmpBuf, decPtr, cmpBytes, (int) messageMaxBytes);
106 write_bin(outFp, decPtr, decBytes);
H A DblockStreaming_ringBuffer.c104 char* const decPtr = &decBuf[decOffset]; local
106 lz4StreamDecode, cmpBuf, decPtr, cmpBytes, MESSAGE_MAX_BYTES);
109 write_bin(outFp, decPtr, decBytes);

Completed in 139 milliseconds