OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:nElems
(Results
1 - 3
of
3
) sorted by null
/cts/tests/tests/rscpp/librscpptest/
rs_jni_allocation.cpp
125
static bool helperFloatCopy(sp<RS> mRS, int
nElems
, int offset, int count, int copyMode) {
127
sp<Allocation> A = Allocation::createSized(mRS, Element::F32(mRS),
nElems
);
130
src = new float[
nElems
];
131
dst = new float[
nElems
];
156
static bool helperCharCopy(sp<RS> mRS, int
nElems
, int offset, int count, int copyMode) {
158
sp<Allocation> A = Allocation::createSized(mRS, Element::I8(mRS),
nElems
);
161
src = new char[
nElems
];
162
dst = new char[
nElems
];
187
static bool helperShortCopy(sp<RS> mRS, int
nElems
, int offset, int count, int copyMode) {
189
sp<Allocation> A = Allocation::createSized(mRS, Element::I16(mRS),
nElems
);
[
all
...]
/cts/tests/tests/renderscript/src/android/renderscript/cts/
AllocationTest.java
288
void helperFloatCopy(int
nElems
, int offset, int count, int copyMode) {
289
Allocation A = Allocation.createSized(mRS, Element.F32(mRS),
nElems
);
292
src = new float[
nElems
];
293
dst = new float[
nElems
];
312
void helperByteCopy(int
nElems
, int offset, int count, int copyMode) {
313
Allocation A = Allocation.createSized(mRS, Element.I8(mRS),
nElems
);
316
src = new byte[
nElems
];
317
dst = new byte[
nElems
];
336
void helperShortCopy(int
nElems
, int offset, int count, int copyMode) {
337
Allocation A = Allocation.createSized(mRS, Element.I16(mRS),
nElems
);
[
all
...]
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
TransformerImpl.java
[
all
...]
Completed in 207 milliseconds