Searched refs:fCount (Results 26 - 50 of 219) sorted by relevance

123456789

/external/skia/src/core/
H A DSkTRefArray.h31 obj->fCount = count;
64 int count() const { return fCount; }
66 const T* end() const { return this->begin() + fCount; }
68 SkASSERT((unsigned)index < (unsigned)fCount);
81 return this->writableBegin() + fCount;
84 SkASSERT((unsigned)index < (unsigned)fCount);
91 int n = fCount;
104 int fCount; member in class:SkTRefArray
H A DSkColorTable.cpp22 fCount = SkToU16(count);
42 fCount = SkToU16(count);
80 f16BitCache = (uint16_t*)sk_malloc_throw(fCount * sizeof(uint16_t));
81 build_16bitcache(f16BitCache, fColors, fCount);
96 fCount = buffer.getArrayCount();
97 size_t allocSize = fCount * sizeof(SkPMColor);
101 SkDEBUGCODE(success =) buffer.readColorArray(fColors, fCount);
103 fCount = 0;
107 SkASSERT((unsigned)fCount <= 256);
114 buffer.writeColorArray(fColors, fCount);
[all...]
H A DSkVertState.cpp12 if (index + 3 > state->fCount) {
25 if (index + 3 > state->fCount) {
37 if (index + 3 > state->fCount) {
55 if (index + 3 > state->fCount) {
72 if (index + 3 > state->fCount) {
85 if (index + 3 > state->fCount) {
H A DSkFontStream.cpp104 SfntHeader() : fCount(0), fDir(NULL) {}
107 /** If it returns true, then fCount and fDir are properly initialized.
117 fCount = count_tables(stream, ttcIndex, &offsetToDir);
118 if (0 == fCount) {
127 size_t size = fCount * sizeof(SkSFNTDirEntry);
132 int fCount; member in struct:SfntHeader
163 for (int i = 0; i < header.fCount; i++) {
167 return header.fCount;
178 for (int i = 0; i < header.fCount; i++) {
H A DSkPerspIter.h45 int fCount; member in class:SkPerspIter
/external/chromium_org/third_party/skia/bench/
H A DMemcpyBench.cpp17 : fCount(count)
30 fDst.reset(fCount);
31 fSrc.reset(fCount);
34 for (int i = 0; i < fCount; i++) {
41 fMemcpy32(fDst, fSrc, fCount);
48 int fCount; member in class:Memcpy32Bench
/external/chromium_org/third_party/skia/include/gpu/
H A DGrShaderVar.h54 , fCount(kNonArray)
63 , fCount(arrayCount)
73 , fCount(arrayCount)
83 , fCount(arrayCount)
107 fCount = kNonArray;
122 fCount = kNonArray;
138 fCount = count;
154 fCount = count;
161 bool isArray() const { return kNonArray != fCount; }
165 bool isUnsizedArray() const { return kUnsizedArray == fCount; }
229 int fCount; member in class:GrShaderVar
[all...]
/external/chromium_org/third_party/skia/include/core/
H A DSkColorTable.h41 int count() const { return fCount; }
47 SkASSERT(fColors != NULL && (unsigned)index < fCount);
84 uint16_t fCount; member in class:SkColorTable
/external/skia/include/core/
H A DSkColorTable.h41 int count() const { return fCount; }
47 SkASSERT(fColors != NULL && (unsigned)index < fCount);
84 uint16_t fCount; member in class:SkColorTable
/external/chromium_org/third_party/skia/src/gpu/
H A DGrResourceCache2.h24 GrResourceCache2() : fCount(0) {};
53 int fCount; member in class:GrResourceCache2
H A DGrResourceCache2.cpp22 ++fCount;
34 --fCount;
45 SkASSERT(!fCount);
56 SkASSERT(!fCount);
H A DGrAllocator.h33 , fCount(0)
58 ++fCount;
67 SkASSERT(fCount);
70 --fCount;
97 fCount = 0;
104 return fCount;
110 bool empty() const { return 0 == fCount; }
116 SkASSERT(fCount);
125 SkASSERT(fCount);
155 return fItemIndex < fAllocator->fCount;
221 int fCount; member in class:GrAllocator
[all...]
/external/chromium_org/third_party/skia/src/fonts/
H A DSkRemotableFontMgr.cpp13 : fCount(count), fData(count)
/external/skia/include/utils/
H A DSkCountdown.h33 int32_t fCount; member in class:SkCountdown
/external/skia/src/fonts/
H A DSkRemotableFontMgr.cpp13 : fCount(count), fData(count)
/external/chromium_org/third_party/skia/samplecode/
H A DSampleVertices.cpp99 canvas->drawVertices(fRecs[i].fMode, fRecs[i].fCount,
106 canvas->drawVertices(fRecs[i].fMode, fRecs[i].fCount,
113 canvas->drawVertices(fRecs[i].fMode, fRecs[i].fCount,
136 int fCount; member in struct:VerticesView::Rec
140 Rec() : fCount(0), fVerts(NULL), fTexs(NULL) {}
149 rec->fCount = n * 3;
150 rec->fVerts = new SkPoint[rec->fCount];
166 rec->fCount = n + 2;
167 rec->fVerts = new SkPoint[rec->fCount];
168 rec->fTexs = new SkPoint[rec->fCount];
[all...]
/external/skia/samplecode/
H A DSampleVertices.cpp99 canvas->drawVertices(fRecs[i].fMode, fRecs[i].fCount,
106 canvas->drawVertices(fRecs[i].fMode, fRecs[i].fCount,
113 canvas->drawVertices(fRecs[i].fMode, fRecs[i].fCount,
136 int fCount; member in struct:VerticesView::Rec
140 Rec() : fCount(0), fVerts(NULL), fTexs(NULL) {}
149 rec->fCount = n * 3;
150 rec->fVerts = new SkPoint[rec->fCount];
166 rec->fCount = n + 2;
167 rec->fVerts = new SkPoint[rec->fCount];
168 rec->fTexs = new SkPoint[rec->fCount];
[all...]
/external/skia/src/gpu/gl/
H A DGrGLShaderVar.h64 fCount = kNonArray;
75 fCount = arrayCount;
86 , fCount(var.fCount)
114 fCount = kNonArray;
133 fCount = kNonArray;
153 fCount = count;
173 fCount = count;
182 bool isArray() const { return kNonArray != fCount; }
186 bool isUnsizedArray() const { return kUnsizedArray == fCount; }
352 int fCount; member in class:GrGLShaderVar
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkTDynamicHash.h25 SkTDynamicHash() : fCount(0), fDeleted(0), fCapacity(0), fArray(NULL) {
87 int count() const { return fCount; }
126 fCount = 0;
131 fCount = 0;
172 if (fCount < kLarge * kLarge) {
173 // Are fCount and fDeleted correct, and are all elements findable?
183 SKTDYNAMICHASH_CHECK(count == fCount);
188 if (fCount < kLarge) {
217 fCount++;
234 fCount
283 int fCount; // Number of non Empty(), non Deleted() entries in fArray. member in class:SkTDynamicHash
[all...]
H A DSkTMultiMap.h31 SkTMultiMap() : fCount(0) {}
34 SkASSERT(fCount == 0);
53 ++fCount;
80 --fCount;
103 int count() const { return fCount; }
107 int fCount; member in class:SkTMultiMap
H A DSkVertState.cpp12 if (index + 3 > state->fCount) {
25 if (index + 3 > state->fCount) {
37 if (index + 3 > state->fCount) {
55 if (index + 3 > state->fCount) {
72 if (index + 3 > state->fCount) {
85 if (index + 3 > state->fCount) {
H A DSkFontStream.cpp104 SfntHeader() : fCount(0), fDir(NULL) {}
107 /** If it returns true, then fCount and fDir are properly initialized.
117 fCount = count_tables(stream, ttcIndex, &offsetToDir);
118 if (0 == fCount) {
127 size_t size = fCount * sizeof(SkSFNTDirEntry);
132 int fCount; member in struct:SfntHeader
163 for (int i = 0; i < header.fCount; i++) {
167 return header.fCount;
178 for (int i = 0; i < header.fCount; i++) {
H A DSkTileGrid.h43 virtual int getCount() const SK_OVERRIDE { return fCount; }
60 size_t fCount; member in class:SkTileGrid
H A DSkPerspIter.h45 int fCount; member in class:SkPerspIter
/external/skia/src/gpu/
H A DGrTMultiMap.h31 GrTMultiMap() : fCount(0) {}
34 SkASSERT(fCount == 0);
53 ++fCount;
80 --fCount;
103 int count() const { return fCount; }
107 int fCount; member in class:GrTMultiMap

Completed in 602 milliseconds

123456789