OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:outArray
(Results
1 - 7
of
7
) sorted by null
/cts/tests/tests/renderscript/src/android/renderscript/cts/
AllocationCopy2DRangeTest.java
37
int[]
outArray
= new int[width * height];
56
mOutAllocation.copyTo(
outArray
);
58
compareTwoArrays(inArray,
outArray
, width*height));
AllocationResize.java
44
int[]
outArray
= new int[INPUTSIZE];
56
mOut.copyTo(
outArray
);
58
assertEquals("Incorrect value @ idx = " + i + " | ", inArray[i],
outArray
[i]);
RsUnpackColor8888Test.java
39
float[]
outArray
= new float[INPUTSIZE * 4];
50
mAllocationOut.copyTo(
outArray
);
52
for (int i = 0; i <
outArray
.length; i += 4) {
60
assertEquals(refArray[i+j],
outArray
[i+j]);
SendToClient.java
29
int
outArray
[] = new int[4];
34
outArray
[0] = mID;
35
outArray
[1] = mData[0];
36
outArray
[2] = mData[1];
37
outArray
[3] = mData[2];
69
assertEquals(createErrorMsgF(i, inArray[i],
outArray
[i]),
70
inArray[i],
outArray
[i]);
78
outArray
[0] = 0;
90
assertEquals(createErrorMsgF(1, Id,
outArray
[0]), Id,
outArray
[0])
[
all
...]
RSBaseCompute.java
105
float[]
outArray
= makeOutArray(INPUTSIZE * outStride);
106
mAllocationOut.copyTo(
outArray
);
107
checkArray(refArray,
outArray
, INPUTSIZE, refStride, outStride, ulp);
/external/chromium_org/third_party/WebKit/Source/testing/plugin/
PluginObject.cpp
647
NPObject*
outArray
= NPVARIANT_TO_OBJECT(args[1]);
659
if (browser->invoke(obj->npp,
outArray
, pushIdentifier, args, 1, &browserResult))
[
all
...]
/frameworks/base/core/jni/
android_os_Debug.cpp
654
jlong*
outArray
= env->GetLongArrayElements(out, 0);
655
if (
outArray
!= NULL) {
657
outArray
[i] = mem[i];
660
env->ReleaseLongArrayElements(out,
outArray
, 0);
Completed in 261 milliseconds