Searched defs:fCount (Results 26 - 50 of 52) sorted by relevance

123

/external/skia/gm/
H A Dshadertext.cpp51 int fCount; member in struct:skiagm::GradData
68 data.fCount, tm, mapper);
77 data.fPos, data.fCount, tm, mapper);
86 data.fPos, data.fCount, mapper);
99 data.fColors, data.fPos, data.fCount, tm, mapper);
/external/skia/include/core/
H A DSkString.h182 int count() const { return fCount; }
189 int fCount; member in class:SkAutoUCS2
H A DSkTArray.h21 memcpy(self->fMemArray, array, self->fCount * sizeof(T));
25 memcpy(newMemArray, self->fMemArray, self->fCount * sizeof(T));
30 for (int i = 0; i < self->fCount; ++i) {
36 for (int i = 0; i < self->fCount; ++i) {
55 fCount = 0;
74 this->init(array.fItemArray, array.fCount, NULL, 0);
90 for (int i = 0; i < fCount; ++i) {
93 fCount = 0;
95 fCount = array.count();
101 for (int i = 0; i < fCount;
368 int fCount; member in class:SkTArray
[all...]
H A DSkTDArray.h18 fReserve = fCount = 0;
27 fReserve = fCount = 0;
38 fReserve = fCount = count;
42 fReserve = fCount = 0;
47 SkTDArray<T> tmp(src.fArray, src.fCount);
56 if (src.fCount > fReserve) {
57 SkTDArray<T> tmp(src.fArray, src.fCount);
60 memcpy(fArray, src.fArray, sizeof(T) * src.fCount);
61 fCount = src.fCount;
297 size_t fReserve, fCount; member in class:SkTDArray
[all...]
H A DSkTemplates.h96 SkDEBUGCODE(fCount = count;)
110 SkASSERT((unsigned)index < fCount);
116 SkDEBUGCODE(size_t fCount;)
133 fCount = count;
137 if (fCount > N) {
141 T* iter = start + fCount;
150 size_t count() const { return fCount; }
159 SkASSERT((unsigned)index < fCount);
164 size_t fCount; member in class:SkAutoSTArray
H A DSkBitmap.h669 int count() const { return fCount; }
675 SkASSERT(fColors != NULL && (unsigned)index < fCount);
717 uint16_t fCount; member in class:SkColorTable
/external/skia/samplecode/
H A DSampleShaderText.cpp50 int fCount; member in struct:GradData
67 data.fCount, tm, mapper);
76 data.fPos, data.fCount, tm, mapper);
85 data.fPos, data.fCount, mapper);
98 data.fColors, data.fPos, data.fCount, tm, mapper);
H A DSampleVertices.cpp102 canvas->drawVertices(fRecs[i].fMode, fRecs[i].fCount,
109 canvas->drawVertices(fRecs[i].fMode, fRecs[i].fCount,
116 canvas->drawVertices(fRecs[i].fMode, fRecs[i].fCount,
139 int fCount; member in struct:VerticesView::Rec
143 Rec() : fCount(0), fVerts(NULL), fTexs(NULL) {}
152 rec->fCount = n * 3;
153 rec->fVerts = new SkPoint[rec->fCount];
169 rec->fCount = n + 2;
170 rec->fVerts = new SkPoint[rec->fCount];
171 rec->fTexs = new SkPoint[rec->fCount];
[all...]
H A DSampleWarp.cpp235 int fCount; member in class:Mesh
240 Mesh::Mesh() : fPts(NULL), fCount(0), fIndices(NULL), fIndexCount(0) {}
255 fCount = src.fCount;
256 fPts = new SkPoint[fCount * 2];
257 fTex = fPts + fCount;
258 memcpy(fPts, src.fPts, fCount * 2 * sizeof(SkPoint));
277 fCount = (rows + 1) * (cols + 1);
278 fPts = new SkPoint[fCount * 2];
279 fTex = fPts + fCount;
[all...]
H A DSampleSlides.cpp153 int fCount; member in struct:GradData
178 data.fCount, tm, mapper);
187 data.fPos, data.fCount, tm, mapper);
196 data.fPos, data.fCount, mapper);
209 data.fColors, data.fPos, data.fCount, tm, mapper);
338 int fCount; member in class:Rec
342 Rec() : fCount(0), fVerts(NULL), fTexs(NULL) {}
351 rec->fCount = n * 3;
352 rec->fVerts = new SkPoint[rec->fCount];
368 rec->fCount
[all...]
H A DSampleApp.cpp2115 int fCount; member in struct:__anon10655
2123 test_rects(gRecs[i].fRects, gRecs[i].fCount);
/external/skia/src/animator/
H A DSkTDArray_Experimental.h53 bool isEmpty() const { return fCount == 0; }
54 int count() const { return fCount; }
58 SkASSERT(index + count <= fCount);
59 fCount = SkToU16(fCount - count);
60 memmove(fArray + index, fArray + index + count, sizeof(int32_t) * (fCount - index));
72 fReserve = fCount = 0;
76 SkASSERT(fReserve == 0 && fCount == 0);
83 this->growBy(count - fCount);
85 fCount
95 uint16_t fReserve, fCount; member in class:SkDS32Array
[all...]
/external/skia/src/gpu/gl/
H A DGrGLShaderVar.h53 fCount = kNonArray;
62 , fCount(var.fCount)
85 fCount = kNonArray;
101 fCount = kNonArray;
118 fCount = count;
135 fCount = count;
143 bool isArray() const { return kNonArray != fCount; }
147 bool isUnsizedArray() const { return kUnsizedArray == fCount; }
151 int getArrayCount() const { return fCount; }
293 int fCount; member in class:GrGLShaderVar
[all...]
H A DGrGpuGLShaders.cpp56 int fCount; member in class:GrGpuGLShaders::ProgramCache
62 : fCount(0)
68 for (int i = 0; i < fCount; ++i) {
75 fCount = 0;
79 for (int i = 0; i < fCount; ++i) {
94 if (fCount < kMaxEntries) {
95 entry = fEntries + fCount;
96 ++fCount;
98 GrAssert(kMaxEntries == fCount);
116 for (int i = 0; i < fCount;
[all...]
/external/skia/src/ports/
H A DSkFontHost_tables.cpp82 SfntHeader() : fCount(0), fDir(NULL) {}
85 /** If it returns true, then fCount and fDir are properly initialized.
93 fCount = count_tables(stream, &offsetToDir);
94 if (0 == fCount) {
103 size_t size = fCount * sizeof(SkSFNTDirEntry);
108 int fCount; member in struct:SfntHeader
136 for (int i = 0; i < header.fCount; i++) {
139 return header.fCount;
154 for (int i = 0; i < header.fCount; i++) {
175 for (int i = 0; i < header.fCount;
[all...]
H A DSkFontHost_mac_atsui.cpp526 SfntHeader(SkFontID fontID, bool needDir) : fCount(0), fData(NULL) {
538 fCount = SkEndian_SwapBE16(header->fNumTables);
547 int count() const { return fCount; }
554 int fCount; member in struct:SfntHeader
/external/skia/bench/
H A DGradientBench.cpp19 int fCount; member in struct:GradData
46 data.fCount, tm, mapper);
57 data.fPos, data.fCount, tm, mapper);
68 data.fPos, data.fCount, mapper);
83 data.fColors, data.fPos, data.fCount, tm, mapper);
144 int fCount; member in class:GradientBench
168 fCount = SkBENCHLOOP(N * gGrads[gradType].fRepeat);
189 for (int i = 0; i < fCount; i++) {
H A DMatrixBench.cpp269 ScaleTransMixedMatrixBench(void* p) : INHERITED(p, "scaletrans_mixed"), fCount (16) {
274 for (i = 0; i < SkBENCHLOOP(fCount); i++) {
285 int count = SkBENCHLOOP(fCount);
301 int fCount; member in class:ScaleTransMixedMatrixBench
308 ScaleTransDoubleMatrixBench(void* p) : INHERITED(p, "scaletrans_double"), fCount (16) {
311 for (i = 0; i < SkBENCHLOOP(fCount); i++) {
322 int count = SkBENCHLOOP(fCount);
339 int fCount; member in class:ScaleTransDoubleMatrixBench
/external/skia/src/core/
H A DSkPictureFlat.h86 int count() const { return fCount; }
94 buffer.setRefCntArray(fArray, fCount);
98 int fCount; member in class:SkRefCntPlayback
105 buffer.setTypefaceArray((SkTypeface**)fArray, fCount);
111 SkFactoryPlayback(int count) : fCount(count) {
122 buffer.setFactoryPlayback(fArray, fCount);
126 int fCount; member in class:SkFactoryPlayback
H A DSkGeometry.cpp873 int fCount; member in struct:__anon10691
886 memcpy(dst, data[i].fData, data[i].fCount * sizeof(dst[0]));
887 int count = collaps_duplicates(dst, data[i].fCount);
H A DSkPicturePlayback.cpp487 int fCount; member in struct:SkipClipRec
491 fCount = 0;
496 fCount += 1;
760 size * 100 / fReader.offset(), skipRect.fCount, skipPath.fCount,
761 skipRegion.fCount);
H A DSkDraw.cpp2067 fCount = indexCount;
2069 fCount = vCount;
2077 int fCount; member in struct:VertState
2091 if (index + 3 > state->fCount) {
2104 if (index + 3 > state->fCount) {
2116 if (index + 3 > state->fCount) {
2134 if (index + 3 > state->fCount) {
2151 if (index + 3 > state->fCount) {
2164 if (index + 3 > state->fCount) {
/external/skia/src/gpu/
H A DGrRedBlackTree.h71 bool empty() const {return 0 == fCount;}
76 int count() const {return fCount;}
173 int fCount; member in class:GrRedBlackTree
228 fCount = 0;
337 fCount = 0;
344 ++fCount;
381 GrAssert(1 == fCount);
589 --fCount;
630 GrAssert(0 == fCount);
849 if (fCount) {
[all...]
/external/skia/src/views/
H A DSkListView.cpp29 fCount = -1;
33 if (fCount < 0)
35 fCount = 0;
38 fCount += 1;
42 return fCount;
47 SkASSERT((unsigned)index < (unsigned)fCount);
78 SkASSERT((unsigned)index < (unsigned)fCount);
102 int fCount; member in class:SkDirListSource
138 fCount = count;
168 return fCount;
197 int fCount; member in class:SkDOMListSource
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.test.performance_3.6.0.v20091014.jarMETA-INF/MANIFEST.MF plugin.properties about.html scripts/cs.sh scripts/derby. ...

Completed in 280 milliseconds

123