HomeSort by relevance Sort by last modified time
    Searched full:fcount (Results 1 - 25 of 94) sorted by null

1 2 3 4

  /external/skia/gpu/include/
GrTArray.h 30 fCount = 0;
39 fCount = 0;
50 fCount = 0;
64 fCount = 0;
73 fCount = array.count();
75 fAllocCount = GrMax(fReserveCount, fCount);
80 memcpy(fMemArray, array.fMemArray, sizeof(T) * fCount);
82 for (int i = 0; i < fCount; ++i) {
90 fCount = count;
92 fAllocCount = GrMax(fReserveCount, fCount);
    [all...]
GrTDArray.h 33 GrTDArray() : fArray(NULL), fAllocated(0), fCount(0) {}
35 fCount = fAllocated = src.fCount;
37 memcpy(fArray, src.fArray, fCount * sizeof(T));
45 bool isEmpty() const { return 0 == fCount; }
46 int count() const { return fCount; }
49 GrAssert((unsigned)index < (unsigned)fCount);
53 GrAssert((unsigned)index < (unsigned)fCount);
61 if (fAllocated < src.fCount) {
62 fAllocated = src.fCount;
    [all...]
GrAllocator.h 44 fCount(0) {
57 int indexInBlock = fCount % fItemsPerBlock;
60 if (0 != fCount) {
66 void* ret = (char*)fBlocks[fCount/fItemsPerBlock] +
68 ++fCount;
77 GrUIDivRoundUp(fCount, fItemsPerBlock));
86 fCount = 0;
93 return fCount;
99 bool empty() const { return fCount == 0; }
105 GrAssert(fCount);
    [all...]
  /external/skia/include/core/
SkTDArray.h 25 fReserve = fCount = 0;
34 fReserve = fCount = 0;
45 fReserve = fCount = count;
49 fReserve = fCount = 0;
54 SkTDArray<T> tmp(src.fArray, src.fCount);
63 if (src.fCount > fReserve) {
64 SkTDArray<T> tmp(src.fArray, src.fCount);
67 memcpy(fArray, src.fArray, sizeof(T) * src.fCount);
68 fCount = src.fCount;
    [all...]
SkTDStack.h 24 SkTDStack() : fCount(0), fTotalCount(0)
29 // fCount = kSlotCount;
48 SkASSERT(fCount <= kSlotCount);
49 if (fCount == kSlotCount)
54 fCount = 0;
57 return &fRec->fSlots[fCount++];
62 SkASSERT(fRec && fCount > idx);
63 return fRec->fSlots[fCount - idx - 1];
67 SkASSERT(fRec && fCount > idx);
68 return fRec->fSlots[fCount - idx - 1]
    [all...]
SkDeque.h 28 bool empty() const { return 0 == fCount; }
29 int count() const { return fCount; }
76 int fCount;
SkTemplates.h 103 SkDEBUGCODE(fCount = count;)
117 SkASSERT((unsigned)index < fCount);
123 SkDEBUGCODE(size_t fCount;)
140 fCount = count;
144 if (fCount > N) {
148 T* iter = start + fCount;
157 size_t count() const { return fCount; }
166 SkASSERT((unsigned)index < fCount);
171 size_t fCount;
  /external/skia/src/animator/
SkTypedArray.cpp 39 fReserve = fCount = 0;
48 fReserve = fCount = 0;
53 SkDS32Array tmp(src.fArray, src.fCount);
61 fReserve = fCount = 0;
73 fReserve = fCount = SkToU16(count);
81 if (src.fCount > fReserve)
83 SkDS32Array tmp(src.fArray, src.fCount);
88 memcpy(fArray, src.fArray, sizeof(int32_t) * src.fCount);
89 fCount = src.fCount;
    [all...]
SkTDArray_Experimental.h 61 bool isEmpty() const { return fCount == 0; }
62 int count() const { return fCount; }
66 SkASSERT(index + count <= fCount);
67 fCount = SkToU16(fCount - count);
68 memmove(fArray + index, fArray + index + count, sizeof(int32_t) * (fCount - index));
80 fReserve = fCount = 0;
84 SkASSERT(fReserve == 0 && fCount == 0);
91 this->growBy(count - fCount);
93 fCount = SkToU16(count)
    [all...]
  /external/icu4c/i18n/
nfrlist.h 36 uint32_t fCount;
41 , fCount(0)
45 for(uint32_t i = 0; i < fCount; ++i) {
57 fCount -= 1;
58 for (uint32_t i = index; i < fCount; ++i) { // assumes small arrays
64 if (fCount == fCapacity) {
69 fStuff[fCount++] = thing;
72 fCount = 0;
75 uint32_t size() const { return fCount; }
76 NFRule* last() const { return (fCount > 0 && fStuff != NULL) ? fStuff[fCount-1] : NULL;
    [all...]
sortkey.cpp 49 : UObject(), fBogus(FALSE), fCount(0), fCapacity(0),
56 : UObject(), fBogus(FALSE), fCount(count), fCapacity(count),
67 uprv_memcpy(fBytes, newValues, fCount);
71 : UObject(other), fBogus(FALSE), fCount(other.fCount), fCapacity(other.fCapacity),
88 uprv_memcpy(fBytes, other.fBytes, other.fCount);
89 if(fCapacity>fCount) {
90 uprv_memset(fBytes+fCount, 0, fCapacity-fCount);
105 fCount = count
    [all...]
choicfmt.cpp 75 fCount(0)
90 fCount(0)
104 fCount(0)
132 fCount(0)
144 if (fCount != thatAlias.fCount) return FALSE;
147 for (int32_t i = 0; i < fCount; i++) {
164 fCount = that.fCount;
172 fChoiceLimits = (double*) uprv_malloc( sizeof(double) * fCount);
    [all...]
  /external/skia/gpu/src/
GrDrawMesh.cpp 4 GrMesh::GrMesh() : fPts(NULL), fCount(0), fIndices(NULL), fIndexCount(0) {}
19 fCount = src.fCount;
20 fPts = new SkPoint[fCount * 2];
21 fTex = fPts + fCount;
22 memcpy(fPts, src.fPts, fCount * 2 * sizeof(SkPoint));
41 fCount = (rows + 1) * (cols + 1);
42 fPts = new SkPoint[fCount * 2];
43 fTex = fPts + fCount;
81 canvas->drawVertices(SkCanvas::kTriangles_VertexMode, fCount,
    [all...]
  /external/skia/samplecode/
SampleVertices.cpp 96 canvas->drawVertices(fRecs[i].fMode, fRecs[i].fCount,
103 canvas->drawVertices(fRecs[i].fMode, fRecs[i].fCount,
110 canvas->drawVertices(fRecs[i].fMode, fRecs[i].fCount,
133 int fCount;
137 Rec() : fCount(0), fVerts(NULL), fTexs(NULL) {}
146 rec->fCount = n * 3;
147 rec->fVerts = new SkPoint[rec->fCount];
163 rec->fCount = n + 2;
164 rec->fVerts = new SkPoint[rec->fCount];
165 rec->fTexs = new SkPoint[rec->fCount];
    [all...]
SampleAnimatedGradient.cpp 13 int fCount;
51 pts, data.fColors, data.fPos,data.fCount,
60 s, 100, data.fColors, data.fPos, data.fCount,
67 p, 0, q, 100, data.fColors, data.fPos, data.fCount,
74 100, 100, data.fColors, data.fPos, data.fCount);
OverView.cpp 48 int fCount;
60 fCount = count;
76 for (int i = 0; i < fCount; i++) {
  /external/skia/src/core/
SkColorTable.cpp 30 fCount = SkToU16(count);
43 fCount = SkToU16(count);
60 fCount = SkToU16(count);
117 f16BitCache = (uint16_t*)sk_malloc_throw(fCount * sizeof(uint16_t));
118 build_16bitcache(f16BitCache, fColors, fCount);
150 fCount = buffer.readU16();
151 SkASSERT((unsigned)fCount <= 256);
155 fColors = (SkPMColor*)sk_malloc_throw(fCount * sizeof(SkPMColor));
156 buffer.read(fColors, fCount * sizeof(SkPMColor));
SkPictureFlat.h 59 int count() const { return fCount; }
67 buffer.setRefCntArray(fArray, fCount);
71 int fCount;
78 buffer.setTypefaceArray((SkTypeface**)fArray, fCount);
84 SkFactoryPlayback(int count) : fCount(count) {
95 buffer.setFactoryPlayback(fArray, fCount);
99 int fCount;
  /external/skia/tests/
PackBitsTest.cpp 19 int fCount;
30 gTests[i].fCount, dst);
33 bool match = gTests[i].fCount == srcCount && memcmp(gTests[i].fSrc, src,
34 gTests[i].fCount * sizeof(uint16_t)) == 0;
69 int fCount;
80 size_t maxSize = SkPackBits::ComputeMaxSize8(gTests[i].fCount);
82 gTests[i].fCount, dst);
86 bool match = gTests[i].fCount == srcCount &&
88 gTests[i].fCount * sizeof(uint8_t)) == 0;
  /external/skia/bench/
GradientBench.cpp 12 int fCount;
37 data.fCount, tm, mapper);
46 data.fPos, data.fCount, tm, mapper);
55 data.fPos, data.fCount, mapper);
68 data.fColors, data.fPos, data.fCount, tm, mapper);
97 int fCount;
112 fCount = N * gGrads[gt].fRepeat;
133 for (int i = 0; i < fCount; i++) {
  /external/skia/src/images/
SkImageRefPool.h 30 int fCount;
SkImageRefPool.cpp 8 fCount = 0;
92 fCount += 1;
93 SkASSERT(computeCount() == fCount);
111 fCount += 1;
112 SkASSERT(computeCount() == fCount);
118 SkASSERT(fCount > 0);
135 fCount -= 1;
136 SkASSERT(computeCount() == fCount);
172 (int)fRAMBudget, (int)fRAMUsed, fCount);
  /external/skia/src/ports/
SkFontHost_tables.cpp 75 SfntHeader() : fCount(0), fDir(NULL) {}
78 /** If it returns true, then fCount and fDir are properly initialized.
86 fCount = count_tables(stream, &offsetToDir);
87 if (0 == fCount) {
96 size_t size = fCount * sizeof(SkSFNTDirEntry);
101 int fCount;
129 for (int i = 0; i < header.fCount; i++) {
132 return header.fCount;
147 for (int i = 0; i < header.fCount; i++) {
168 for (int i = 0; i < header.fCount; i++)
    [all...]
  /external/skia/src/effects/
SkDashPathEffect.cpp 44 fCount = count;
74 SkASSERT(fInitialDashIndex >= 0 && fInitialDashIndex < fCount);
129 SkASSERT(index <= fCount);
130 if (index == fCount) {
154 buffer.write32(fCount);
159 buffer.writeMul4(fIntervals, fCount * sizeof(fIntervals[0]));
167 fCount = buffer.readS32();
173 fIntervals = (SkScalar*)sk_malloc_throw(sizeof(SkScalar) * fCount);
174 buffer.read(fIntervals, fCount * sizeof(fIntervals[0]));
  /external/clang/test/CodeGenCXX/
array-construction.cpp 10 static float fcount; variable
14 xpto() : i(count++), f(fcount++) {

Completed in 253 milliseconds

1 2 3 4