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

  /external/skia/src/core/
SkArenaAllocList.h 35 T& operator*() const { return fCurr->fT; }
36 T* operator->() const { return &fCurr->fT; }
37 bool operator==(const Iter& that) const { return fCurr == that.fCurr; }
42 explicit Iter(Node* node) : fCurr(node) {}
43 Node* fCurr = nullptr;
76 fCurr = fCurr->fNext;
SkReader32.h 24 SkReader32() : fCurr(nullptr), fStop(nullptr), fBase(nullptr) {}
33 fBase = fCurr = (const char*)data;
38 size_t offset() const { return fCurr - fBase; }
39 bool eof() const { return fCurr >= fStop; }
41 const void* peek() const { return fCurr; }
43 size_t available() const { return fStop - fCurr; }
46 void rewind() { fCurr = fBase; }
51 fCurr = fBase + offset;
57 SkASSERT(ptr_align_4(fCurr));
58 int32_t value = *(const int32_t*)fCurr;
    [all...]
SkStream.cpp 457 char* fCurr;
462 size_t avail() const { return fStop - fCurr; }
463 size_t written() const { return fCurr - this->start(); }
467 fCurr = this->start();
472 SkASSERT((size_t)(fStop - fCurr) >= size);
473 sk_memcpy_4bytes(fCurr, data, size);
474 fCurr += size;
868 ptrdiff_t used = fTail->fCurr - (char*)fTail;
870 fTail->fStop = fTail->fCurr = (char*)fTail + used; // Update pointers.
  /external/skia/src/gpu/ccpr/
GrCCSTLList.h 51 bool operator!=(const Iter& that) { return fCurr != that.fCurr; }
52 U& operator*() { return *fCurr; }
53 void operator++() { fCurr = fCurr->fNext; }
54 U* fCurr;
  /external/skqp/src/core/
SkArenaAllocList.h 35 T& operator*() const { return fCurr->fT; }
36 T* operator->() const { return &fCurr->fT; }
37 bool operator==(const Iter& that) const { return fCurr == that.fCurr; }
42 explicit Iter(Node* node) : fCurr(node) {}
43 Node* fCurr = nullptr;
76 fCurr = fCurr->fNext;
SkReader32.h 24 SkReader32() : fCurr(nullptr), fStop(nullptr), fBase(nullptr) {}
33 fBase = fCurr = (const char*)data;
38 size_t offset() const { return fCurr - fBase; }
39 bool eof() const { return fCurr >= fStop; }
41 const void* peek() const { return fCurr; }
43 size_t available() const { return fStop - fCurr; }
46 void rewind() { fCurr = fBase; }
51 fCurr = fBase + offset;
57 SkASSERT(ptr_align_4(fCurr));
58 int32_t value = *(const int32_t*)fCurr;
    [all...]
SkStream.cpp 457 char* fCurr;
462 size_t avail() const { return fStop - fCurr; }
463 size_t written() const { return fCurr - this->start(); }
467 fCurr = this->start();
472 SkASSERT((size_t)(fStop - fCurr) >= size);
473 sk_memcpy_4bytes(fCurr, data, size);
474 fCurr += size;
868 ptrdiff_t used = fTail->fCurr - (char*)fTail;
870 fTail->fStop = fTail->fCurr = (char*)fTail + used; // Update pointers.
  /external/skqp/src/gpu/ccpr/
GrCCSTLList.h 51 bool operator!=(const Iter& that) { return fCurr != that.fCurr; }
52 U& operator*() { return *fCurr; }
53 void operator++() { fCurr = fCurr->fNext; }
54 U* fCurr;
  /external/skia/src/gpu/
GrPrimitiveProcessor.h 85 Iter() : fCurr(nullptr), fRemaining(0) {}
86 Iter(const Iter& iter) : fCurr(iter.fCurr), fRemaining(iter.fRemaining) {}
88 fCurr = iter.fCurr;
92 Iter(const Attribute* attrs, int count) : fCurr(attrs), fRemaining(count) {
96 bool operator!=(const Iter& that) const { return fCurr != that.fCurr; }
97 const Attribute& operator*() const { return *fCurr; }
101 fCurr++
    [all...]
  /external/skqp/src/gpu/
GrPrimitiveProcessor.h 85 Iter() : fCurr(nullptr), fRemaining(0) {}
86 Iter(const Iter& iter) : fCurr(iter.fCurr), fRemaining(iter.fRemaining) {}
88 fCurr = iter.fCurr;
92 Iter(const Attribute* attrs, int count) : fCurr(attrs), fRemaining(count) {
96 bool operator!=(const Iter& that) const { return fCurr != that.fCurr; }
97 const Attribute& operator*() const { return *fCurr; }
101 fCurr++
    [all...]
  /external/skia/include/private/
SkTInternalLList.h 216 Iter() : fCurr(nullptr) {}
217 Iter(const Iter& iter) : fCurr(iter.fCurr) {}
218 Iter& operator= (const Iter& iter) { fCurr = iter.fCurr; return *this; }
222 fCurr = list.fHead;
225 fCurr = list.fTail;
228 return fCurr;
231 T* get() { return fCurr; }
237 if (nullptr == fCurr) {
    [all...]
  /external/skia/samplecode/
Sample.h 67 SkPoint fOrig, fPrev, fCurr;
  /external/skqp/include/private/
SkTInternalLList.h 216 Iter() : fCurr(nullptr) {}
217 Iter(const Iter& iter) : fCurr(iter.fCurr) {}
218 Iter& operator= (const Iter& iter) { fCurr = iter.fCurr; return *this; }
222 fCurr = list.fHead;
225 fCurr = list.fTail;
228 return fCurr;
231 T* get() { return fCurr; }
237 if (nullptr == fCurr) {
    [all...]
  /external/skqp/samplecode/
Sample.h 67 SkPoint fOrig, fPrev, fCurr;
  /external/skia/src/gpu/ops/
GrOp.h 207 explicit Iter(const OpSubclass* head) : fCurr(head) {}
209 return *this = Iter(static_cast<const OpSubclass*>(fCurr->nextInChain()));
211 const OpSubclass& operator*() const { return *fCurr; }
212 bool operator!=(const Iter& that) const { return fCurr != that.fCurr; }
215 const OpSubclass* fCurr;
  /external/skqp/src/gpu/ops/
GrOp.h 207 explicit Iter(const OpSubclass* head) : fCurr(head) {}
209 return *this = Iter(static_cast<const OpSubclass*>(fCurr->nextInChain()));
211 const OpSubclass& operator*() const { return *fCurr; }
212 bool operator!=(const Iter& that) const { return fCurr != that.fCurr; }
215 const OpSubclass* fCurr;

Completed in 314 milliseconds