Home
last modified time | relevance | path

Searched refs:destArray (Results 1 – 4 of 4) sorted by relevance

/external/skia/src/animator/
DSkMemberInfo.cpp403 SkTypedArray* destArray = (SkTypedArray*) (untypedStorage ? untypedStorage : arrayStorage); in writeValue() local
404 SkASSERT(destArray); in writeValue()
409 destArray->setCount(storageOffset + 1); in writeValue()
410 (*destArray)[storageOffset] = scriptValue.fOperand; in writeValue()
414 destArray->setType(type); in writeValue()
419 destArray->setCount(storageOffset + count); in writeValue()
420 …memcpy(destArray->begin() + storageOffset, scriptValue.fOperand.fArray->begin(), sizeof(SkOperand)… in writeValue()
/external/skia/legacy/src/animator/
DSkMemberInfo.cpp403 SkTypedArray* destArray = (SkTypedArray*) (untypedStorage ? untypedStorage : arrayStorage); in writeValue() local
404 SkASSERT(destArray); in writeValue()
409 destArray->setCount(storageOffset + 1); in writeValue()
410 (*destArray)[storageOffset] = scriptValue.fOperand; in writeValue()
414 destArray->setType(type); in writeValue()
419 destArray->setCount(storageOffset + count); in writeValue()
420 …memcpy(destArray->begin() + storageOffset, scriptValue.fOperand.fArray->begin(), sizeof(SkOperand)… in writeValue()
/external/icu4c/common/
Duts46.cpp331 UChar *destArray=dest.getBuffer(srcLength); in process() local
332 if(destArray==NULL) { in process()
361 destArray[i]=c+0x20; // Lowercase an uppercase ASCII letter. in process()
365 destArray[i]=c; in process()
440 char *destArray=dest.GetAppendBuffer(srcLength, srcLength+20, in processUTF8() local
456 dest.Append(destArray, i); in processUTF8()
466 destArray[i]=c+0x20; // Lowercase an uppercase ASCII letter. in processUTF8()
470 destArray[i]=c; in processUTF8()
505 destString=UnicodeString::fromUTF8(StringPiece(destArray+labelStart, mappingStart)); in processUTF8()
507 dest.Append(destArray, labelStart); in processUTF8()
[all …]
Drbbitblb.cpp958 MaybeStackArray<void *, 16> destArray, sourceArray; // Handle small cases without malloc in setAdd() local
962 if (destOriginalSize > destArray.getCapacity()) { in setAdd()
963 if (destArray.resize(destOriginalSize) == NULL) { in setAdd()
967 destPtr = destArray.getAlias(); in setAdd()