Lines Matching refs:SkOperand
83 bool SkMemberInfo::getArrayValue(const SkDisplayable* displayable, int index, SkOperand* value) con… in getArrayValue()
85 char* valuePtr = (char*) *(SkOperand**) memberData(displayable); in getArrayValue()
138 void SkMemberInfo::getValue(const SkDisplayable* displayable, SkOperand value[], int count) const { in getValue()
153 void SkMemberInfo::setValue(SkDisplayable* displayable, const SkOperand values[], in setValue()
162 memcpy(dst, values, count * sizeof(SkOperand)); in setValue()
360 SkOperand* storage = untypedStorage ? (SkOperand*) untypedStorage : arrayStorage ? in writeValue()
399 …(&(*arrayStorage)[storageOffset], scriptValue.fOperand.fArray->begin(), count * sizeof(SkOperand)); in writeValue()
420 …stArray->begin() + storageOffset, scriptValue.fOperand.fArray->begin(), sizeof(SkOperand) * count); in writeValue()
448 SkASSERT(sizeof(SkScalar) == sizeof(SkOperand)); // !!! no 64 bit pointer support yet in writeValue()
452 memcpy(storage, scriptValue.fOperand.fArray->begin(), count * sizeof(SkOperand)); in writeValue()
457 memcpy(storage, scriptValue.fOperand.fArray->begin(), getCount() * sizeof(SkOperand)); in writeValue()
459 memcpy(storage, &scriptValue.fOperand, sizeof(SkOperand)); in writeValue()