Home | History | Annotate | Download | only in animator

Lines Matching full:sizeof

36             byteSize = sizeof(SkColor);
57 byteSize = sizeof(int);
63 byteSize = sizeof(void*);
66 byteSize = sizeof(SkMSec);
69 byteSize = sizeof(SkPoint);
72 byteSize = sizeof(Sk3D_Point);
75 byteSize = sizeof(int32_t);
78 byteSize = sizeof(SkScalar);
82 byteSize = sizeof(SkString); // assume we'll copy by reference, not value
116 return sizeof(int);
139 SkASSERT(fCount == sizeof(SkString) / sizeof(SkScalar));
150 SkASSERT(sizeof(value[0].fScalar) == sizeof(value[0])); // no support for 64 bit pointers, yet
162 SkASSERT(sizeof(values[0].fScalar) == sizeof(values[0])); // no support for 64 bit pointers, yet
169 memcpy(dst, values, count * sizeof(SkOperand));
239 if (strncmp(rawValue, "#string:", sizeof("#string:") - 1) == 0) {
240 SkASSERT(sizeof("string") == sizeof("script"));
242 memcpy(&stringHeader[1], "script", sizeof("script") - 1);
247 if (strncmp(rawValue, "#script:", sizeof("#script:") - 1) != 0)
381 memcpy(&storage->fScalar, &scriptValue.fOperand.fScalar, sizeof(SkScalar));
384 memcpy(&storage->fScalar, scriptValue.fOperand.fArray->begin(), scriptValue.fOperand.fArray->count() * sizeof(SkScalar));
406 memcpy(&(*arrayStorage)[storageOffset], scriptValue.fOperand.fArray->begin(), count * sizeof(SkOperand));
427 memcpy(destArray->begin() + storageOffset, scriptValue.fOperand.fArray->begin(), sizeof(SkOperand) * count);
455 SkASSERT(sizeof(SkScalar) == sizeof(SkOperand)); // !!! no 64 bit pointer support yet
459 memcpy(storage, scriptValue.fOperand.fArray->begin(), count * sizeof(SkOperand));
464 memcpy(storage, scriptValue.fOperand.fArray->begin(), getCount() * sizeof(SkOperand));
466 memcpy(storage, &scriptValue.fOperand, sizeof(SkOperand));
479 // valuePtr = (void*) ((char*) valuePtr + index * sizeof(SkScalar));
525 int index = SkStrSearch(&info->fName, count, match, sizeof(*info));