HomeSort by relevance Sort by last modified time
    Searched refs:fArray (Results 26 - 50 of 88) sorted by null

12 3 4

  /external/skia/src/animator/
SkOperand2.h 25 SkOpArray* fArray;
46 SkOpArray* getArray() { SkASSERT(fType == SkOperand2::kArray); return fOperand.fArray; }
SkOperand.h 23 SkTypedArray* fArray;
36 SkTypedArray* getArray() { SkASSERT(fType == SkType_Array); return fOperand.fArray; }
SkMemberInfo.cpp 377 memcpy(&storage->fScalar, scriptValue.fOperand.fArray->begin(), scriptValue.fOperand.fArray->count() * sizeof(SkScalar));
389 displayable->executeFunction(displayable, this, scriptValue.fOperand.fArray, NULL);
391 int count = scriptValue.fOperand.fArray->count();
399 memcpy(&(*arrayStorage)[storageOffset], scriptValue.fOperand.fArray->begin(), count * sizeof(SkOperand));
413 type = scriptValue.fOperand.fArray->getType();
416 SkASSERT(type == scriptValue.fOperand.fArray->getType());
417 int count = scriptValue.fOperand.fArray->count();
420 memcpy(destArray->begin() + storageOffset, scriptValue.fOperand.fArray->begin(), sizeof(SkOperand) * count);
426 SkTypedArray* array = scriptValue.fOperand.fArray;
    [all...]
SkDrawMatrix.cpp 220 SkASSERT(scriptValue.fOperand.fArray->getType() == SkType_Float);
221 SkASSERT(scriptValue.fOperand.fArray->count() == 2);
223 fMatrix.setTranslateX((*scriptValue.fOperand.fArray)[0].fScalar);
224 fMatrix.setTranslateY((*scriptValue.fOperand.fArray)[1].fScalar);
SkScriptRuntime.cpp 72 operand[0].fArray = new SkOpArray(SkOperand2::kNoType /*fReturnType*/);
76 if (index >= operand[0].fArray->count()) {
80 operand[0] = operand[0].fArray->begin()[index];
83 *operand[0].fArray->append() = operand[1];
94 if (callBackFunction->invoke(ref, operand[0].fArray, /* params */
  /frameworks/base/core/jni/
android_nio_utils.h 67 jarray fArray;
android_nio_utils.cpp 65 fPointer = android::nio_getPointer(env, nioBuffer, &fArray);
69 if (NULL != fArray) {
70 android::nio_releasePointer(fEnv, fArray, fPointer, fCommit);
  /external/chromium_org/third_party/skia/bench/
MatrixBench.cpp 220 fArray[0] = (float) fRnd.nextS();
221 fArray[1] = (float) fRnd.nextS();
222 fArray[2] = (float) fRnd.nextS();
223 fArray[3] = (float) fRnd.nextS();
224 fArray[4] = (float) fRnd.nextS();
225 fArray[5] = (float) fRnd.nextS();
226 fArray[6] = (float) fRnd.nextS();
227 fArray[7] = (float) fRnd.nextS();
228 fArray[8] = (float) fRnd.nextS();
235 fMatrix.setAll(fArray[0], fArray[1], fArray[2]
    [all...]
  /external/skia/bench/
MatrixBench.cpp 220 fArray[0] = (float) fRnd.nextS();
221 fArray[1] = (float) fRnd.nextS();
222 fArray[2] = (float) fRnd.nextS();
223 fArray[3] = (float) fRnd.nextS();
224 fArray[4] = (float) fRnd.nextS();
225 fArray[5] = (float) fRnd.nextS();
226 fArray[6] = (float) fRnd.nextS();
227 fArray[7] = (float) fRnd.nextS();
228 fArray[8] = (float) fRnd.nextS();
235 fMatrix.setAll(fArray[0], fArray[1], fArray[2]
    [all...]
  /external/chromium_org/third_party/skia/src/animator/
SkOperand.h 23 SkTypedArray* fArray;
36 SkTypedArray* getArray() { SkASSERT(fType == SkType_Array); return fOperand.fArray; }
SkMemberInfo.cpp 377 memcpy(&storage->fScalar, scriptValue.fOperand.fArray->begin(), scriptValue.fOperand.fArray->count() * sizeof(SkScalar));
389 displayable->executeFunction(displayable, this, scriptValue.fOperand.fArray, NULL);
391 int count = scriptValue.fOperand.fArray->count();
399 memcpy(&(*arrayStorage)[storageOffset], scriptValue.fOperand.fArray->begin(), count * sizeof(SkOperand));
413 type = scriptValue.fOperand.fArray->getType();
416 SkASSERT(type == scriptValue.fOperand.fArray->getType());
417 int count = scriptValue.fOperand.fArray->count();
420 memcpy(destArray->begin() + storageOffset, scriptValue.fOperand.fArray->begin(), sizeof(SkOperand) * count);
426 SkTypedArray* array = scriptValue.fOperand.fArray;
    [all...]
SkDrawMatrix.cpp 220 SkASSERT(scriptValue.fOperand.fArray->getType() == SkType_Float);
221 SkASSERT(scriptValue.fOperand.fArray->count() == 2);
223 fMatrix.setTranslateX((*scriptValue.fOperand.fArray)[0].fScalar);
224 fMatrix.setTranslateY((*scriptValue.fOperand.fArray)[1].fScalar);
SkScriptRuntime.cpp 72 operand[0].fArray = new SkOpArray(SkOperand2::kNoType /*fReturnType*/);
76 if (index >= operand[0].fArray->count()) {
80 operand[0] = operand[0].fArray->begin()[index];
83 *operand[0].fArray->append() = operand[1];
94 if (callBackFunction->invoke(ref, operand[0].fArray, /* params */
  /external/chromium_org/third_party/skia/src/core/
SkTypefaceCache.h 97 SkTDArray<Rec> fArray;
SkPictureFlat.h 116 buffer.setTypefaceArray((SkTypeface**)fArray, fCount);
121 SkRefCnt** fArray;
127 fArray = SkNEW_ARRAY(SkFlattenable::Factory, count);
131 SkDELETE_ARRAY(fArray);
134 SkFlattenable::Factory* base() const { return fArray; }
137 buffer.setFactoryPlayback(fArray, fCount);
142 SkFlattenable::Factory* fArray;
  /external/skia/src/core/
SkTypefaceCache.h 97 SkTDArray<Rec> fArray;
SkPictureFlat.h 116 buffer.setTypefaceArray((SkTypeface**)fArray, fCount);
121 SkRefCnt** fArray;
127 fArray = SkNEW_ARRAY(SkFlattenable::Factory, count);
131 SkDELETE_ARRAY(fArray);
134 SkFlattenable::Factory* base() const { return fArray; }
137 buffer.setFactoryPlayback(fArray, fCount);
142 SkFlattenable::Factory* fArray;
  /external/chromium_org/third_party/icu/source/i18n/unicode/
fmtable.h 432 { count=fValue.fArrayAndCount.fCount; return fValue.fArrayAndCount.fArray; }
453 Formattable& operator[](int32_t index) { return fValue.fArrayAndCount.fArray[index]; }
634 Formattable* fArray;
  /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]; }
702 Formattable* fArray;
  /external/icu/icu4c/source/tools/genrb/
reslist.c 196 for (current = res->u.fArray.fFirst; current != NULL; current = current->fNext) {
339 if (res->u.fArray.fCount == 0 && gFormatVersion > 1) {
344 for (current = res->u.fArray.fFirst; current != NULL; current = current->fNext) {
348 if (U_SUCCESS(*status) && res->u.fArray.fCount <= 0xffff && res16 >= 0 && gFormatVersion > 1) {
349 uint16_t *p16 = reserve16BitUnits(bundle, 1 + res->u.fArray.fCount, status);
352 *p16++ = (uint16_t)res->u.fArray.fCount;
353 for (current = res->u.fArray.fFirst; current != NULL; current = current->fNext) {
356 bundle->f16BitUnitsLength += 1 + res->u.fArray.fCount;
505 for (current = res->u.fArray.fFirst; current != NULL; current = current->fNext) {
509 *byteOffset += (1 + res->u.fArray.fCount) * 4
    [all...]
  /external/chromium_org/third_party/icu/source/tools/genrb/
reslist.c 240 if (res->u.fArray.fCount == 0 && gFormatVersion > 1) {
245 for (current = res->u.fArray.fFirst; current != NULL; current = current->fNext) {
249 if (U_SUCCESS(*status) && res->u.fArray.fCount <= 0xffff && res16 >= 0 && gFormatVersion > 1) {
250 uint16_t *p16 = reserve16BitUnits(bundle, 1 + res->u.fArray.fCount, status);
253 *p16++ = (uint16_t)res->u.fArray.fCount;
254 for (current = res->u.fArray.fFirst; current != NULL; current = current->fNext) {
257 bundle->f16BitUnitsLength += 1 + res->u.fArray.fCount;
406 for (current = res->u.fArray.fFirst; current != NULL; current = current->fNext) {
410 *byteOffset += (1 + res->u.fArray.fCount) * 4;
521 for (i = 0, current = res->u.fArray.fFirst; current != NULL; ++i, current = current->fNext)
    [all...]
  /external/chromium_org/third_party/skia/include/effects/
SkColorMatrixFilter.h 33 int32_t fArray[20];
  /external/skia/include/effects/
SkColorMatrixFilter.h 33 int32_t fArray[20];
  /frameworks/base/core/jni/android/graphics/
GraphicsJNI.h 225 jfloatArray fArray;
241 jintArray fArray;
257 jshortArray fArray;
273 jbyteArray fArray;
  /external/chromium_org/third_party/icu/source/i18n/
fmtable.cpp 195 fValue.fArrayAndCount.fArray = createArrayCopy(arrayToCopy, count);
231 fValue.fArrayAndCount.fArray = createArrayCopy(source.fValue.fArrayAndCount.fArray,
306 if (fValue.fArrayAndCount.fArray[i] != that.fValue.fArrayAndCount.fArray[i]) {
342 delete[] fValue.fArrayAndCount.fArray;
568 fValue.fArrayAndCount.fArray = createArrayCopy(array, count);
591 fValue.fArrayAndCount.fArray = array;
659 return fValue.fArrayAndCount.fArray;

Completed in 741 milliseconds

12 3 4