OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:outarray
(Results
1 - 11
of
11
) sorted by null
/cts/tests/tests/renderscript/src/android/renderscript/cts/
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
...]
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]);
RsPackColorTo8888Test.java
73
byte[]
outArray
= new byte[INPUTSIZE * 4];
81
mAllocationOut.copyTo(
outArray
);
82
for (int i = 0; i <
outArray
.length; i += 4) {
91
assertEquals(refArray[i+j] & 0xff,
outArray
[i+j] & 0xff);
100
byte[]
outArray
= new byte[INPUTSIZE * 4];
108
mAllocationOut.copyTo(
outArray
);
109
for (int i = 0; i <
outArray
.length; i += 4) {
118
assertEquals(refArray[i+j] & 0xff,
outArray
[i+j] & 0xff);
AllocationCopy2DRangeTest.java
37
int[]
outArray
= new int[width * height];
56
mOutAllocation.copyTo(
outArray
);
58
compareTwoArrays(inArray,
outArray
, width*height));
RSBaseCompute.java
105
float[]
outArray
= makeOutArray(INPUTSIZE * outStride);
106
mAllocationOut.copyTo(
outArray
);
107
checkArray(refArray,
outArray
, INPUTSIZE, refStride, outStride, ulp);
/dalvik/dx/src/com/android/dx/command/dexer/
Main.java
273
byte[]
outArray
= null;
276
outArray
= writeDex();
278
if (
outArray
== null) {
284
outArray
= mergeIncremental(
outArray
, incrementalOutFile);
287
outArray
= mergeLibraryDexBuffers(
outArray
);
293
if (
outArray
!= null) {
294
outputResources.put(DexFormat.DEX_IN_JAR_NAME,
outArray
);
299
} else if (
outArray
!= null && args.outName != null)
[
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);
/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
...]
/libcore/crypto/src/main/native/
org_conscrypt_NativeCrypto.cpp
[
all
...]
/cts/suite/cts/deviceTests/browserbench/assets/octane/
gbemu.js
308
var
outArray
= [];
311
outArray
.push(binString.charCodeAt(index++) & 0xFF);
313
return
outArray
;
[
all
...]
Completed in 340 milliseconds