Home | History | Annotate | Download | only in runtime

Lines Matching defs:eSize

257     const uint32_t eSize = alloc->mHal.state.elementSizeBytes;
258 return &p[eSize * x];
265 const uint32_t eSize = alloc->mHal.state.elementSizeBytes;
267 return &p[(eSize * x) + (y * stride)];
274 const uint32_t eSize = alloc->mHal.state.elementSizeBytes;
277 return &p[(eSize * x) + (y * stride) + (z * stride * dimY)];
283 const uint32_t eSize = alloc->mHal.state.elementSizeBytes;
284 local_memcpy((void*)&p[eSize * x], ptr, eSize);
291 const uint32_t eSize = alloc->mHal.state.elementSizeBytes;
293 local_memcpy((void*)&p[(eSize * x) + (y * stride)], ptr, eSize);
300 const uint32_t eSize = alloc->mHal.state.elementSizeBytes;
303 local_memcpy((void*)&p[(eSize * x) + (y * stride) + (z * stride * dimY)], ptr, eSize);