Lines Matching refs:eSize
230 size_t eSize = mType->getElement()->getSizeBytes(); in copy1DRangeFrom() local
231 void *ptr = malloc(eSize * count); in copy1DRangeFrom()
232 copyWithPadding(ptr, data, eSize / 4, count); in copy1DRangeFrom()
253 size_t eSize = mType->getElement()->getSizeBytes(); in copy1DRangeTo() local
254 void *ptr = malloc(eSize * count); in copy1DRangeTo()
257 copyWithUnPadding(data, ptr, eSize / 4, count); in copy1DRangeTo()
297 size_t eSize = mType->getElement()->getSizeBytes(); in copy2DRangeFrom() local
298 void *ptr = malloc(eSize * w * h); in copy2DRangeFrom()
299 copyWithPadding(ptr, data, eSize / 4, w * h); in copy2DRangeFrom()
326 size_t eSize = mType->getElement()->getSizeBytes(); in copy2DRangeTo() local
327 void *ptr = malloc(eSize * w * h); in copy2DRangeTo()
332 copyWithUnPadding(data, ptr, eSize / 4, w * h); in copy2DRangeTo()
381 size_t eSize = mType->getElement()->getSizeBytes(); in copy3DRangeFrom() local
382 void *ptr = malloc(eSize * w * h * d); in copy3DRangeFrom()
383 copyWithPadding(ptr, data, eSize / 4, w * h * d); in copy3DRangeFrom()
409 size_t eSize = mType->getElement()->getSizeBytes(); in copy3DRangeTo() local
410 void *ptr = malloc(eSize * w * h * d); in copy3DRangeTo()
415 copyWithUnPadding(data, ptr, eSize / 4, w * h * d); in copy3DRangeTo()