OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:decPtr
(Results
1 - 7
of
7
) sorted by null
/external/skia/src/core/
SkPtrRecorder.h
20
* 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*) {}
126
* base class's incPtr() and
decPtr
() are called. This makes it a valid owner
136
virtual void
decPtr
(void*);
SkPtrRecorder.cpp
15
this->
decPtr
(p->fPtr);
SkFlattenable.cpp
37
// call this now, while our
decPtr
() is sill in scope
45
void SkRefCntSet::
decPtr
(void* ptr) {
/external/lz4/examples/
HCStreaming_ringBuffer.c
114
char* const
decPtr
= &decBuf[decOffset];
116
lz4StreamDecode, cmpBuf,
decPtr
, cmpBytes, MESSAGE_MAX_BYTES);
121
write_bin(outFp,
decPtr
, decBytes);
blockStreaming_doubleBuffer.c
94
char* const
decPtr
= decBuf[decBufIndex];
96
lz4StreamDecode, cmpBuf,
decPtr
, cmpBytes, BLOCK_BYTES);
100
write_bin(outFp,
decPtr
, (size_t) decBytes);
blockStreaming_lineByLine.c
102
char* const
decPtr
= &decBuf[decOffset];
104
lz4StreamDecode, cmpBuf,
decPtr
, cmpBytes, (int) messageMaxBytes);
106
write_bin(outFp,
decPtr
, decBytes);
blockStreaming_ringBuffer.c
104
char* const
decPtr
= &decBuf[decOffset];
106
lz4StreamDecode, cmpBuf,
decPtr
, cmpBytes, MESSAGE_MAX_BYTES);
109
write_bin(outFp,
decPtr
, decBytes);
Completed in 1279 milliseconds