OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:eSize
(Results
1 - 9
of
9
) sorted by null
/frameworks/rs/driver/runtime/
rs_allocation.c
166
const uint32_t
eSize
= alloc->mHal.state.elementSizeBytes;
167
return &p[
eSize
* x];
174
const uint32_t
eSize
= alloc->mHal.state.elementSizeBytes;
176
return &p[(
eSize
* x) + (y * stride)];
183
const uint32_t
eSize
= alloc->mHal.state.elementSizeBytes;
186
return &p[(
eSize
* x) + (y * stride) + (z * stride * dimY)];
192
const uint32_t
eSize
= alloc->mHal.state.elementSizeBytes;
193
memcpy((void*)&p[
eSize
* x], ptr,
eSize
);
200
const uint32_t
eSize
= alloc->mHal.state.elementSizeBytes
[
all
...]
/frameworks/rs/
rsAllocation.cpp
99
const size_t
eSize
= mHal.state.type->getElementSizeBytes();
101
if ((count *
eSize
) != sizeBytes) {
103
(count *
eSize
), sizeBytes);
127
const size_t
eSize
= mHal.state.type->getElementSizeBytes();
129
if ((count *
eSize
) != sizeBytes) {
131
(count *
eSize
), sizeBytes);
141
const size_t
eSize
= mHal.state.elementSizeBytes;
142
const size_t lineSize =
eSize
* w;
158
const size_t
eSize
= mHal.state.elementSizeBytes;
159
const size_t lineSize =
eSize
* w
[
all
...]
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Allocation.java
641
int
eSize
= mType.mElement.getBytesSize();
644
int count = data.length /
eSize
;
645
if ((
eSize
* count) != data.length) {
647
" not divisible by element size " +
eSize
+ ".");
670
int
eSize
= mType.mElement.mElements[component_number].getBytesSize();
671
eSize
*= mType.mElement.mArraySizes[component_number];
673
if (data.length !=
eSize
) {
675
" does not match component size " +
eSize
+ ".");
[
all
...]
/frameworks/rs/driver/
rsdAllocation.cpp
783
const size_t
eSize
= alloc->mHal.state.type->getElementSizeBytes();
785
size_t size = count *
eSize
;
803
size_t
eSize
= alloc->mHal.state.elementSizeBytes;
804
size_t lineSize =
eSize
* w;
865
uint32_t
eSize
= alloc->mHal.state.elementSizeBytes;
866
uint32_t lineSize =
eSize
* w;
900
const size_t
eSize
= alloc->mHal.state.type->getElementSizeBytes();
905
memcpy(data, ptr, count *
eSize
);
912
size_t
eSize
= alloc->mHal.state.elementSizeBytes;
913
size_t lineSize =
eSize
* w
[
all
...]
rsdRuntimeStubs.cpp
587
const uint32_t
eSize
= e->getSizeBytes();
588
return &p[(
eSize
* x)];
624
const uint32_t
eSize
= e->getSizeBytes();
626
return &p[(
eSize
* x) + (y * stride)];
668
const uint32_t
eSize
= e->getSizeBytes();
670
return &p[(
eSize
* x) + (y * stride)];
[
all
...]
/frameworks/base/graphics/java/android/renderscript/
Allocation.java
729
int
eSize
= mType.mElement.getBytesSize();
732
int count = data.length /
eSize
;
733
if ((
eSize
* count) != data.length) {
735
" not divisible by element size " +
eSize
+ ".");
758
int
eSize
= mType.mElement.mElements[component_number].getBytesSize();
759
eSize
*= mType.mElement.mArraySizes[component_number];
761
if (data.length !=
eSize
) {
763
" does not match component size " +
eSize
+ ".");
[
all
...]
/external/chromium_org/third_party/icu/source/test/cintltst/
capitst.c
[
all
...]
/external/icu4c/test/cintltst/
capitst.c
[
all
...]
/prebuilts/sdk/renderscript/lib/
javalib.jar
Completed in 277 milliseconds