HomeSort by relevance Sort by last modified time
    Searched refs:eSize (Results 1 - 10 of 10) sorted by null

  /frameworks/rs/driver/runtime/
rs_allocation.c 193 const uint32_t eSize = alloc->mHal.state.elementSizeBytes;
194 return &p[eSize * x];
201 const uint32_t eSize = alloc->mHal.state.elementSizeBytes;
203 return &p[(eSize * x) + (y * stride)];
210 const uint32_t eSize = alloc->mHal.state.elementSizeBytes;
213 return &p[(eSize * x) + (y * stride) + (z * stride * dimY)];
219 const uint32_t eSize = alloc->mHal.state.elementSizeBytes;
220 memcpy((void*)&p[eSize * x], ptr, eSize);
227 const uint32_t eSize = alloc->mHal.state.elementSizeBytes
    [all...]
  /frameworks/rs/cpp/
Allocation.cpp 230 size_t eSize = mType->getElement()->getSizeBytes();
231 void *ptr = malloc(eSize * count);
232 copyWithPadding(ptr, data, eSize / 4, count);
253 size_t eSize = mType->getElement()->getSizeBytes();
254 void *ptr = malloc(eSize * count);
257 copyWithUnPadding(data, ptr, eSize / 4, count);
297 size_t eSize = mType->getElement()->getSizeBytes();
298 void *ptr = malloc(eSize * w * h);
299 copyWithPadding(ptr, data, eSize / 4, w * h);
326 size_t eSize = mType->getElement()->getSizeBytes()
    [all...]
  /frameworks/rs/
rsAllocation.cpp 184 const size_t eSize = mHal.state.type->getElementSizeBytes();
186 if ((count * eSize) != sizeBytes) {
189 (count * eSize), sizeBytes);
214 const size_t eSize = mHal.state.type->getElementSizeBytes();
216 if ((count * eSize) != sizeBytes) {
219 (count * eSize), sizeBytes);
230 const size_t eSize = mHal.state.elementSizeBytes;
231 const size_t lineSize = eSize * w;
248 const size_t eSize = mHal.state.elementSizeBytes;
249 const size_t lineSize = eSize * w
    [all...]
  /frameworks/base/rs/java/android/renderscript/
Allocation.java 818 int eSize = mType.mElement.getBytesSize();
822 int count = data_length / eSize;
823 if ((eSize * count) != data_length) {
825 " not divisible by element size " + eSize + ".");
870 int eSize = mType.mElement.mElements[component_number].getBytesSize();
871 eSize *= mType.mElement.mArraySizes[component_number];
873 if (data_length != eSize) {
875 " does not match component size " + eSize + ".");
    [all...]
  /frameworks/rs/driver/
rsdAllocation.cpp 848 const size_t eSize = alloc->mHal.state.type->getElementSizeBytes();
850 size_t size = count * eSize;
868 size_t eSize = alloc->mHal.state.elementSizeBytes;
869 size_t lineSize = eSize * w;
    [all...]
rsdRuntimeStubs.cpp 280 const uint32_t eSize = e->getSizeBytes();
283 return &p[(x * eSize) + (y * stride) + (z * stride * dimY)];
    [all...]
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Allocation.java 747 int eSize = mType.mElement.getBytesSize();
751 int count = data_length / eSize;
752 if ((eSize * count) != data_length) {
754 " not divisible by element size " + eSize + ".");
778 int eSize = mType.mElement.mElements[component_number].getBytesSize();
779 eSize *= mType.mElement.mArraySizes[component_number];
781 if (data_length != eSize) {
783 " does not match component size " + eSize + ".");
819 int eSize = mType.mElement.mElements[component_number].getBytesSize();
820 eSize *= mType.mElement.mArraySizes[component_number]
    [all...]
  /external/icu/icu4c/source/test/cintltst/
capitst.c     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
uxtheme.h 176 THEMEAPI GetThemePartSize(HTHEME hTheme,HDC hdc,int iPartId,int iStateId,RECT *prc,enum THEMESIZE eSize,SIZE *psz);
  /prebuilts/sdk/renderscript/lib/
javalib.jar 

Completed in 909 milliseconds