HomeSort by relevance Sort by last modified time
    Searched defs:fArray (Results 1 - 25 of 26) sorted by null

1 2

  /external/skia/src/core/
SkTypefaceCache.h 85 SkTDArray<Rec> fArray;
SkRecorder.h 25 int count() const { return fArray.count(); }
26 SkDrawable* const* begin() const { return fArray.begin(); }
34 SkTDArray<SkDrawable*> fArray;
SkTDynamicHash.h 25 SkTDynamicHash() : fCount(0), fDeleted(0), fCapacity(0), fArray(nullptr) {
30 sk_free(fArray);
54 T* current() const { return fHash->fArray[fCurrentIndex]; }
81 const T* current() const { return fHash->fArray[fCurrentIndex]; }
94 T* candidate = fArray[index];
123 if (fArray) {
124 sk_bzero(fArray, sizeof(T*)* fCapacity);
134 sk_free(fArray);
135 fArray = nullptr;
148 const T* candidate = fArray[index]
    [all...]
SkPictureFlat.h 138 buffer.setTypefaceArray((SkTypeface**)fArray, fCount);
143 SkRefCnt** fArray;
148 SkFactoryPlayback(int count) : fCount(count) { fArray = new SkFlattenable::Factory[count]; }
150 ~SkFactoryPlayback() { delete[] fArray; }
152 SkFlattenable::Factory* base() const { return fArray; }
155 buffer.setFactoryPlayback(fArray, fCount);
160 SkFlattenable::Factory* fArray;
  /frameworks/base/core/jni/
android_nio_utils.h 67 jarray fArray;
  /external/skia/bench/
ScalarBench.cpp 57 init9(fArray);
64 junk ^= (fArray[6] != 0.0f || fArray[7] != 0.0f || fArray[8] != 1.0f);
65 junk ^= (fArray[2] != 0.0f || fArray[5] != 0.0f);
68 float fArray[9];
76 init9(fArray);
83 junk ^= (SkScalarAs2sCompliment(fArray[6]) |
84 SkScalarAs2sCompliment(fArray[7])
    [all...]
MatrixBench.cpp 101 fArray[0] = (float) fRnd.nextS();
102 fArray[1] = (float) fRnd.nextS();
103 fArray[2] = (float) fRnd.nextS();
104 fArray[3] = (float) fRnd.nextS();
105 fArray[4] = (float) fRnd.nextS();
106 fArray[5] = (float) fRnd.nextS();
107 fArray[6] = (float) fRnd.nextS();
108 fArray[7] = (float) fRnd.nextS();
109 fArray[8] = (float) fRnd.nextS();
116 fMatrix.setAll(fArray[0], fArray[1], fArray[2]
    [all...]
  /external/skia/src/animator/
SkOperand.h 23 SkTypedArray* fArray;
36 SkTypedArray* getArray() { SkASSERT(fType == SkType_Array); return fOperand.fArray; }
SkOperand2.h 25 SkOpArray* fArray;
46 SkOpArray* getArray() { SkASSERT(fType == SkOperand2::kArray); return fOperand.fArray; }
SkTDArray_Experimental.h 60 memmove(fArray + index, fArray + index + count, sizeof(int32_t) * (fCount - index));
65 if (fArray)
67 sk_free(fArray);
68 fArray = nullptr;
94 int32_t* fArray;
100 #define SYNC() fTData = (T (*)[kDebugArraySize]) fArray
109 ~SkTDS32Array() { sk_free(fArray); }
110 T& operator[](int index) const { SYNC(); SkASSERT((unsigned)index < fCount); return ((T*) fArray)[index]; }
118 T* begin() const { SYNC(); return (T*) fArray; }
    [all...]
  /external/skia/src/effects/gradients/
SkLinearGradient.h 15 float fArray[4];
18 return Sk4f::Load(fArray);
22 src.store(fArray);
  /external/skia/include/private/
SkTDict.h 20 fArray.reset();
24 int count() const { return fArray.count(); }
36 fArray[index].fValue = value;
39 Pair* pair = fArray.insert(~index);
66 *value = fArray[index].fValue;
74 const Pair* end = fArray.end();
75 for (const Pair* pair = fArray.begin(); pair < end; pair++) {
104 fIter = dict.fArray.begin();
105 fStop = dict.fArray.end();
125 SkTDArray<Pair> fArray;
    [all...]
SkTemplates.h 118 fArray = NULL;
125 fArray = NULL;
127 fArray = new T[count];
135 delete[] fArray;
137 fArray = NULL;
139 fArray = new T[count];
144 ~SkAutoTArray() { delete[] fArray; }
148 T* get() const { return fArray; }
154 return fArray[index];
158 SkTSwap(fArray, other.fArray)
    [all...]
SkTDArray.h 19 fArray = NULL;
25 fArray = NULL;
27 fArray = (T*)sk_malloc_throw(count * sizeof(T));
28 memcpy(fArray, src, sizeof(T) * count);
34 fArray = NULL;
35 SkTDArray<T> tmp(src.fArray, src.fCount);
39 sk_free(fArray);
45 SkTDArray<T> tmp(src.fArray, src.fCount);
48 sk_careful_memcpy(fArray, src.fArray, sizeof(T) * src.fCount)
    [all...]
  /external/icu/icu4c/source/i18n/unicode/
fmtable.h 446 { count=fValue.fArrayAndCount.fCount; return fValue.fArrayAndCount.fArray; }
467 Formattable& operator[](int32_t index) { return fValue.fArrayAndCount.fArray[index]; }
700 Formattable* fArray;
  /external/skia/samplecode/
SampleHT.cpp 129 Rec fArray[N];
139 fArray[i].fDrawable = new HTDrawable(rand);
140 canvas->drawDrawable(fArray[i].fDrawable);
141 fArray[i].fDrawable->unref();
162 fArray[i].fDrawable->setTime(fTime);
170 if (fArray[i].fDrawable->hitTest(x, y)) {
171 fArray[i].fDrawable->spawnAnimation(fTime);
  /frameworks/base/core/jni/android/graphics/
GraphicsJNI.h 249 jfloatArray fArray;
265 jintArray fArray;
281 jshortArray fArray;
297 jbyteArray fArray;
  /cts/tests/tests/graphics/src/android/graphics/cts/
ColorMatrixTest.java 85 float[] fArray = new float[]{
92 mColorMatrix.set(fArray);
106 float[] fArray = new float[]{
113 mColorMatrix.set(new ColorMatrix(fArray));
  /external/icu/icu4c/source/tools/genrb/
reslist.h 385 uint32_t *fArray;
  /external/icu/icu4c/source/common/unicode/
unistr.h     [all...]
  /external/icu/icu4c/source/tools/gennorm2/
n2builder.cpp 554 UChar32 charAt(int32_t i) const { return fArray[i]>>8; }
555 uint8_t ccAt(int32_t i) const { return (uint8_t)fArray[i]; }
562 fArray[fLength++]=(c<<8)|cc;
573 fArray[j]=fArray[j-1];
575 fArray[i]=(c<<8)|cc;
586 fArray[fLastStarterIndex]=composite<<8;
590 fArray[combMarkIndex]=fArray[combMarkIndex+1];
595 int32_t fArray[Normalizer2Impl::MAPPING_LENGTH_MASK]
    [all...]
  /external/skia/src/ports/
SkFontHost_mac.cpp     [all...]
  /prebuilts/tools/common/m2/repository/xerces/xercesImpl/2.11.0/
xercesImpl-2.11.0.jar 
  /prebuilts/tools/common/m2/repository/xerces/xercesImpl/2.6.2/
xercesImpl-2.6.2.jar 
  /prebuilts/tools/common/m2/repository/xerces/xercesImpl/2.9.1/
xercesImpl-2.9.1.jar 

Completed in 732 milliseconds

1 2