Lines Matching refs:storageOffset
184 int storageOffset, int maxStorage, SkDisplayable* displayable, SkDisplayTypes outType, in setValue() argument
337 if (writeValue(displayable, arrayStorage, storageOffset, maxStorage, in setValue()
350 int storageOffset, int maxStorage, SkDisplayable* displayable, SkDisplayTypes outType, in setValue() argument
352 … return setValue(maker, arrayStorage, storageOffset, maxStorage, displayable, outType, raw.c_str(), in setValue()
357 int storageOffset, int maxStorage, void* untypedStorage, SkDisplayTypes outType, in writeValue() argument
363 storage += storageOffset; in writeValue()
369 SkASSERT(storageOffset < arrayStorage->count()); in writeValue()
396 storageOffset *= count; in writeValue()
397 SkASSERT(count + storageOffset <= arrayStorage->count()); in writeValue()
399 …memcpy(&(*arrayStorage)[storageOffset], scriptValue.fOperand.fArray->begin(), count * sizeof(SkOpe… in writeValue()
409 destArray->setCount(storageOffset + 1); in writeValue()
410 (*destArray)[storageOffset] = scriptValue.fOperand; in writeValue()
419 destArray->setCount(storageOffset + count); in writeValue()
420 …memcpy(destArray->begin() + storageOffset, scriptValue.fOperand.fArray->begin(), sizeof(SkOperand)… in writeValue()
423 …ing* string = untypedStorage ? (SkString*) untypedStorage : (*arrayStorage)[storageOffset].fString; in writeValue()