HomeSort by relevance Sort by last modified time
    Searched defs:fUsed (Results 1 - 6 of 6) sorted by null

  /external/skia/src/core/
SkLiteDL.h 26 bool empty() const { return fUsed == 0; }
90 size_t fUsed = 0;
SkRWBuffer.cpp 20 size_t fUsed; // updated by the writer
23 SkBufferBlock(size_t capacity) : fNext(nullptr), fUsed(0), fCapacity(capacity) {}
27 size_t avail() const { return fCapacity - fUsed; }
28 void* availData() { return (char*)this->startData() + fUsed; }
43 fUsed += amount;
48 // Do not call in the reader thread, since the writer may be updating fUsed.
53 SkASSERT(fUsed <= fCapacity);
110 totalUsed += block->fUsed;
124 // block.fUsed, which may be updated by the writer.
  /external/skia/src/lazy/
SkDiscardableMemoryPool.cpp 58 size_t fUsed;
128 , fUsed(0) {
143 if (fUsed <= budget) {
149 while ((fUsed > budget) && (cur)) {
154 SkASSERT(fUsed >= dm->fBytes);
155 fUsed -= dm->fBytes;
174 fUsed += bytes;
183 SkASSERT(fUsed >= dm->fBytes);
184 fUsed -= dm->fBytes;
218 return fUsed;
    [all...]
  /external/skia/include/core/
SkWriter32.h 40 size_t bytesWritten() const { return fUsed; }
51 fUsed = 0;
58 size_t offset = fUsed;
59 size_t totalRequired = fUsed + size;
63 fUsed = totalRequired;
74 SkASSERT(offset < fUsed);
85 SkASSERT(offset < fUsed);
227 fUsed = offset;
232 memcpy(dst, fData, fUsed);
236 return stream->write(fData, fUsed);
    [all...]
  /external/skia/src/pathops/
SkIntersections.h 112 return fUsed > 0 && (t == 0 ? fT[0][0] == 0 : fT[0][fUsed - 1] == 1);
117 return fUsed > 0 && (fT[1][0] == t || fT[1][fUsed - 1] == t);
194 fUsed = 0;
216 return fUsed;
224 SkASSERT(fUsed == 1);
227 fUsed = 0;
316 unsigned char fUsed;
SkPathOpsTSect.h     [all...]

Completed in 241 milliseconds