Searched refs:fCount (Results 76 - 100 of 219) sorted by relevance

123456789

/external/skia/src/gpu/gl/
H A DGrGpuGL_program.cpp44 : fCount(0)
59 for (int i = 0; i < fCount; ++i){
79 for (int i = 0; i < fCount; ++i) {
84 fCount = 0;
89 return SkTSearch(fEntries, fCount, desc, sizeof(Entry*), less);
134 if (fCount < kMaxEntries) {
136 purgeIdx = fCount++;
139 SkASSERT(fCount == kMaxEntries);
177 for (int i = 0; i < fCount - 1; ++i) {
192 for (int i = 0; i < fCount;
[all...]
/external/icu/icu4c/source/layoutex/layout/
H A DRunArrays.h218 le_int32 fCount; member in class:RunArray
223 : UObject(), fClientArrays(FALSE), fLimits(NULL), fCount(0), fCapacity(0)
229 : UObject(), fClientArrays(FALSE), fLimits(NULL), fCount(0), fCapacity(0)
235 : UObject(), fClientArrays(TRUE), fLimits(limits), fCount(count), fCapacity(count)
242 return fCount;
247 fCount = 0;
252 if (run < 0 || run >= fCount) {
261 return getLimit(fCount - 1);
/external/chromium_org/third_party/skia/src/effects/
H A DSkDashPathEffect.cpp23 fCount = count;
30 SkDashPath::CalcDashParameters(phase, fIntervals, fCount,
40 return SkDashPath::FilterDashPath(dst, src, rec, cullRect, fIntervals, fCount,
173 if (fCount != 2 ||
349 if (info->fCount >= fCount && info->fIntervals) {
350 memcpy(info->fIntervals, fIntervals, fCount * sizeof(SkScalar));
352 info->fCount = fCount;
360 buffer.writeScalarArray(fIntervals, fCount);
[all...]
H A DSkLayerDrawLooper.cpp27 fCount(0) {
157 if (fCount != 2) {
203 buffer.writeInt(fCount);
206 for (int i = 0; i < fCount; i++) {
239 str->appendf("SkLayerDrawLooper (%d): ", fCount);
242 for (int i = 0; i < fCount; i++) {
298 fCount(0) {
311 fCount += 1;
332 fCount += 1;
350 looper->fCount
[all...]
/external/skia/src/effects/
H A DSkLayerDrawLooper.cpp27 fCount(0) {
157 if (fCount != 2) {
213 SkASSERT(count == fCount);
217 buffer.writeInt(fCount);
220 for (int i = 0; i < fCount; i++) {
249 SkASSERT(count == looper->fCount);
268 str->appendf("SkLayerDrawLooper (%d): ", fCount);
271 for (int i = 0; i < fCount; i++) {
327 fCount(0) {
340 fCount
[all...]
/external/chromium_org/third_party/skia/gm/
H A Dgradients_2pt_conical.cpp14 int fCount; member in struct:skiagm::GradData
50 data.fCount, tm, 0, &localMatrix);
63 data.fCount, tm, 0, &localMatrix);
75 data.fColors, data.fPos, data.fCount, tm,
88 data.fColors, data.fPos, data.fCount, tm,
101 data.fColors, data.fPos, data.fCount, tm,
114 data.fColors, data.fPos, data.fCount, tm,
127 data.fColors, data.fPos, data.fCount, tm,
140 data.fColors, data.fPos, data.fCount, tm,
154 data.fCount, t
290 const int fCount; member in struct:skiagm::__anon15042
[all...]
H A Dgradients_no_texture.cpp13 int fCount; member in struct:GradData
30 return SkGradientShader::CreateLinear(pts, data.fColors, data.fPos, data.fCount, tm);
38 data.fPos, data.fCount, tm);
45 return SkGradientShader::CreateSweep(center.fX, center.fY, data.fColors, data.fPos, data.fCount);
57 data.fColors, data.fPos, data.fCount, tm);
69 data.fCount, tm);
130 int fCount; member in struct:ColorPos
132 ColorPos() : fColors(NULL), fPos(NULL), fCount(0) {}
147 fCount = count;
243 SkShader* s = SkGradientShader::CreateLinear(pts, rec.fColors, rec.fPos, rec.fCount,
[all...]
H A DgradientDirtyLaundry.cpp14 int fCount; member in struct:GradData
39 return SkGradientShader::CreateLinear(pts, data.fColors, data.fPos, data.fCount, tm);
47 data.fPos, data.fCount, tm);
54 return SkGradientShader::CreateSweep(center.fX, center.fY, data.fColors, data.fPos, data.fCount);
/external/chromium_org/third_party/skia/src/core/
H A DSkDataTable.cpp17 fCount = 0;
28 fCount = count;
38 fCount = count;
52 SkASSERT((unsigned)index < (unsigned)fCount);
62 SkASSERT((unsigned)index < (unsigned)fCount);
H A DSkDescriptor.h35 fCount = 0;
52 fCount += 1;
69 int count = fCount;
115 uint32_t getCount() const { return fCount; }
121 uint32_t fCount; member in class:SkDescriptor
H A DSkRTree.h83 bool isEmpty() const { return 0 == fCount; }
95 virtual int getCount() const SK_OVERRIDE { return fCount; }
188 int fCount; member in class:SkRTree
H A DSkTLList.h47 SkTLList(int allocCnt = 1) : fCount(0), fAllocCnt(allocCnt) {
161 SkASSERT(0 == fCount);
165 int count() const { return fCount; }
166 bool isEmpty() const { this->validate(); return 0 == fCount; }
172 if (fCount != list.fCount) {
261 ++fCount;
281 --fCount;
287 SkASSERT((0 == fCount) == fList.isEmpty());
288 SkASSERT((0 != fCount) || fFreeLis
362 int fCount; member in class:SkTLList
[all...]
H A DSkDeque.cpp32 , fCount(0)
42 , fCount(0)
71 fCount += 1;
111 fCount += 1;
152 SkASSERT(fCount > 0);
153 fCount -= 1;
186 SkASSERT(fCount > 0);
187 fCount -= 1;
/external/skia/gm/
H A Dgradients_2pt_conical.cpp14 int fCount; member in struct:skiagm::GradData
50 data.fCount, tm, 0, &localMatrix);
63 data.fCount, tm, 0, &localMatrix);
75 data.fColors, data.fPos, data.fCount, tm,
88 data.fColors, data.fPos, data.fCount, tm,
101 data.fColors, data.fPos, data.fCount, tm,
114 data.fColors, data.fPos, data.fCount, tm,
127 data.fColors, data.fPos, data.fCount, tm,
140 data.fColors, data.fPos, data.fCount, tm,
154 data.fCount, t
290 const int fCount; member in struct:skiagm::__anon30457
[all...]
H A Dgradients_no_texture.cpp13 int fCount; member in struct:GradData
30 return SkGradientShader::CreateLinear(pts, data.fColors, data.fPos, data.fCount, tm);
38 data.fPos, data.fCount, tm);
45 return SkGradientShader::CreateSweep(center.fX, center.fY, data.fColors, data.fPos, data.fCount);
57 data.fColors, data.fPos, data.fCount, tm);
69 data.fCount, tm);
130 int fCount; member in struct:ColorPos
132 ColorPos() : fColors(NULL), fPos(NULL), fCount(0) {}
147 fCount = count;
243 SkShader* s = SkGradientShader::CreateLinear(pts, rec.fColors, rec.fPos, rec.fCount,
[all...]
H A DgradientDirtyLaundry.cpp14 int fCount; member in struct:GradData
39 return SkGradientShader::CreateLinear(pts, data.fColors, data.fPos, data.fCount, tm);
47 data.fPos, data.fCount, tm);
54 return SkGradientShader::CreateSweep(center.fX, center.fY, data.fColors, data.fPos, data.fCount);
/external/skia/src/core/
H A DSkDataTable.cpp17 fCount = 0;
28 fCount = count;
38 fCount = count;
52 SkASSERT((unsigned)index < (unsigned)fCount);
62 SkASSERT((unsigned)index < (unsigned)fCount);
H A DSkDescriptor.h35 fCount = 0;
52 fCount += 1;
69 int count = fCount;
115 uint32_t getCount() const { return fCount; }
121 uint32_t fCount; member in class:SkDescriptor
H A DSkRTree.h83 bool isEmpty() const { return 0 == fCount; }
95 virtual int getCount() const SK_OVERRIDE { return fCount; }
188 int fCount; member in class:SkRTree
H A DSkTLList.h47 SkTLList(int allocCnt = 1) : fCount(0), fAllocCnt(allocCnt) {
161 SkASSERT(0 == fCount);
165 int count() const { return fCount; }
166 bool isEmpty() const { this->validate(); return 0 == fCount; }
172 if (fCount != list.fCount) {
261 ++fCount;
281 --fCount;
287 SkASSERT((0 == fCount) == fList.isEmpty());
288 SkASSERT((0 != fCount) || fFreeLis
362 int fCount; member in class:SkTLList
[all...]
/external/chromium_org/third_party/skia/samplecode/
H A DOverView.cpp64 int fCount; member in class:OverView
80 fCount = count;
96 for (int i = 0; i < fCount; i++) {
/external/skia/samplecode/
H A DOverView.cpp64 int fCount; member in class:OverView
80 fCount = count;
96 for (int i = 0; i < fCount; i++) {
/external/chromium_org/third_party/skia/include/effects/
H A DSkDashPathEffect.h65 int32_t fCount; member in class:SkDashPathEffect
H A DSkLayerDrawLooper.h107 int fCount; member in class:SkLayerDrawLooper
165 int fCount; member in class:SkLayerDrawLooper::Builder
/external/chromium_org/third_party/skia/src/gpu/
H A DGrStrokeInfo.h63 fIntervals.reset(fDashInfo.fCount);
77 return fDashInfo.fCount;

Completed in 751 milliseconds

123456789