HomeSort by relevance Sort by last modified time
    Searched refs:fCount (Results 1 - 25 of 261) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/skia/src/gpu/
GrWindowRectangles.h 18 GrWindowRectangles() : fCount(0) {}
19 GrWindowRectangles(const GrWindowRectangles& that) : fCount(0) { *this = that; }
24 bool empty() const { return !fCount; }
25 int count() const { return fCount; }
41 const Rec* rec() const { return fCount <= kNumLocalWindows ? nullptr : fRec; }
43 int fCount;
45 SkIRect fLocalWindows[kNumLocalWindows]; // If fCount <= kNumLocalWindows.
46 Rec* fRec; // If fCount > kNumLocalWindows.
61 return fCount <= kNumLocalWindows ? fLocalWindows : fRec->fData;
66 fCount = 0
    [all...]
GrShaderVar.h 45 , fCount(kNonArray)
53 , fCount(arrayCount)
65 , fCount(arrayCount)
77 , fCount(kNonArray)
88 , fCount(arrayCount)
98 , fCount(that.fCount)
122 fCount = kNonArray;
146 fCount = kNonArray;
171 fCount = count
    [all...]
  /external/skqp/src/gpu/
GrWindowRectangles.h 18 GrWindowRectangles() : fCount(0) {}
19 GrWindowRectangles(const GrWindowRectangles& that) : fCount(0) { *this = that; }
24 bool empty() const { return !fCount; }
25 int count() const { return fCount; }
41 const Rec* rec() const { return fCount <= kNumLocalWindows ? nullptr : fRec; }
43 int fCount;
45 SkIRect fLocalWindows[kNumLocalWindows]; // If fCount <= kNumLocalWindows.
46 Rec* fRec; // If fCount > kNumLocalWindows.
61 return fCount <= kNumLocalWindows ? fLocalWindows : fRec->fData;
66 fCount = 0
    [all...]
GrShaderVar.h 45 , fCount(kNonArray)
53 , fCount(arrayCount)
65 , fCount(arrayCount)
77 , fCount(kNonArray)
88 , fCount(arrayCount)
98 , fCount(that.fCount)
122 fCount = kNonArray;
146 fCount = kNonArray;
171 fCount = count
    [all...]
  /external/skia/src/core/
SkPictureFlat.cpp 18 SkTypefacePlayback::SkTypefacePlayback() : fCount(0), fArray(nullptr) {}
25 for (int i = 0; i < fCount; i++) {
32 fCount = rec->count();
33 fArray = new SkRefCnt* [fCount];
35 for (int i = 0; i < fCount; i++) {
39 fCount = 0;
47 fCount = count;
53 SkASSERT((unsigned)index < (unsigned)fCount);
SkColorTable.h 34 int count() const { return fCount; }
40 SkASSERT(fColors != nullptr && (unsigned)index < (unsigned)fCount);
52 int fCount;
SkRecord.cpp 20 SkASSERT(fCount == fReserved);
34 Record* noops = std::remove_if(fRecords.get(), fRecords.get() + fCount,
36 fCount = noops - fRecords.get();
SkVertState.h 31 fCount = indexCount;
33 fCount = vCount;
46 int fCount;
SkRTree.h 50 int getDepth() const { return fCount ? fRoot.fSubtree->fLevel + 1 : 0; }
52 int getCount() const { return fCount; }
89 int fCount;
  /external/skqp/src/core/
SkPictureFlat.cpp 18 SkTypefacePlayback::SkTypefacePlayback() : fCount(0), fArray(nullptr) {}
25 for (int i = 0; i < fCount; i++) {
32 fCount = rec->count();
33 fArray = new SkRefCnt* [fCount];
35 for (int i = 0; i < fCount; i++) {
39 fCount = 0;
47 fCount = count;
53 SkASSERT((unsigned)index < (unsigned)fCount);
SkColorTable.h 34 int count() const { return fCount; }
40 SkASSERT(fColors != nullptr && (unsigned)index < (unsigned)fCount);
52 int fCount;
SkRecord.cpp 20 SkASSERT(fCount == fReserved);
34 Record* noops = std::remove_if(fRecords.get(), fRecords.get() + fCount,
36 fCount = noops - fRecords.get();
SkVertState.h 31 fCount = indexCount;
33 fCount = vCount;
46 int fCount;
SkRTree.h 50 int getDepth() const { return fCount ? fRoot.fSubtree->fLevel + 1 : 0; }
52 int getCount() const { return fCount; }
89 int fCount;
  /external/skia/include/private/
SkTDArray.h 18 SkTDArray() : fArray(nullptr), fReserve(0), fCount(0) {}
22 fReserve = fCount = 0;
27 fReserve = fCount = count;
30 SkTDArray(const SkTDArray<T>& src) : fArray(nullptr), fReserve(0), fCount(0) {
31 SkTDArray<T> tmp(src.fArray, src.fCount);
34 SkTDArray(SkTDArray<T>&& src) : fArray(nullptr), fReserve(0), fCount(0) {
43 if (src.fCount > fReserve) {
44 SkTDArray<T> tmp(src.fArray, src.fCount);
47 sk_careful_memcpy(fArray, src.fArray, sizeof(T) * src.fCount);
48 fCount = src.fCount
    [all...]
SkTArray.h 40 this->init(that.fCount);
46 this->init(that.fCount);
48 that.fCount = 0;
65 for (int i = 0; i < fCount; ++i) {
68 fCount = 0;
70 fCount = that.count();
78 for (int i = 0; i < fCount; ++i) {
81 fCount = 0;
83 fCount = that.count();
85 that.fCount = 0
    [all...]
SkSemaphore.h 18 : fCount(count), fOSSemaphore(nullptr) {}
49 std::atomic<int> fCount;
61 int prev = fCount.fetch_add(n, std::memory_order_release);
81 if (fCount.fetch_sub(1, std::memory_order_acquire) <= 0) {
  /external/skqp/include/private/
SkTDArray.h 18 SkTDArray() : fArray(nullptr), fReserve(0), fCount(0) {}
22 fReserve = fCount = 0;
27 fReserve = fCount = count;
30 SkTDArray(const SkTDArray<T>& src) : fArray(nullptr), fReserve(0), fCount(0) {
31 SkTDArray<T> tmp(src.fArray, src.fCount);
34 SkTDArray(SkTDArray<T>&& src) : fArray(nullptr), fReserve(0), fCount(0) {
43 if (src.fCount > fReserve) {
44 SkTDArray<T> tmp(src.fArray, src.fCount);
47 sk_careful_memcpy(fArray, src.fArray, sizeof(T) * src.fCount);
48 fCount = src.fCount
    [all...]
SkTArray.h 40 this->init(that.fCount);
46 this->init(that.fCount);
48 that.fCount = 0;
65 for (int i = 0; i < fCount; ++i) {
68 fCount = 0;
70 fCount = that.count();
78 for (int i = 0; i < fCount; ++i) {
81 fCount = 0;
83 fCount = that.count();
85 that.fCount = 0
    [all...]
SkSemaphore.h 18 : fCount(count), fOSSemaphore(nullptr) {}
49 std::atomic<int> fCount;
61 int prev = fCount.fetch_add(n, std::memory_order_release);
81 if (fCount.fetch_sub(1, std::memory_order_acquire) <= 0) {
  /external/icu/icu4c/source/i18n/
nfrlist.h 38 uint32_t fCount;
43 , fCount(0)
47 for(uint32_t i = 0; i < fCount; ++i) {
59 fCount -= 1;
60 for (uint32_t i = index; i < fCount; ++i) { // assumes small arrays
66 if (fCount == fCapacity) {
71 fStuff[fCount++] = thing;
74 fCount = 0;
77 uint32_t size() const { return fCount; }
78 NFRule* last() const { return (fCount > 0 && fStuff != NULL) ? fStuff[fCount-1] : NULL;
    [all...]
  /external/dng_sdk/source/
dng_string_list.cpp 27 : fCount (0)
64 if (fCount)
67 DoCopyBytes (fList, list, fCount * (uint32) sizeof (dng_string *));
92 Allocate (fCount + 1);
103 fCount++;
105 for (uint32 j = fCount - 1; j > index; j--)
121 for (uint32 j = 0; j < fCount; j++)
145 for (uint32 index = 0; index < fCount; index++)
158 fCount = 0;
dng_string_list.h 31 uint32 fCount;
45 return fCount;
  /external/skia/include/ports/
SkRemotableFontMgr.h 40 int count() const { return fCount; }
46 SkRemotableFontIdentitySet() : fCount(0), fData() { }
50 int fCount;
  /external/skqp/include/ports/
SkRemotableFontMgr.h 40 int count() const { return fCount; }
46 SkRemotableFontIdentitySet() : fCount(0), fData() { }
50 int fCount;

Completed in 503 milliseconds

1 2 3 4 5 6 7 8 91011