OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:largeArray
(Results
1 - 4
of
4
) sorted by null
/packages/inputmethods/LatinIME/native/jni/tests/
defines_test.cpp
28
int
largeArray
[LARGE_ARRAY_SIZE];
30
EXPECT_EQ(LARGE_ARRAY_SIZE, NELEMS(
largeArray
));
/cts/tests/tests/renderscript/src/android/renderscript/cts/
AllocationTest.java
786
Allocation
largeArray
= Allocation.createTyped(mRS, b.setX(48).create());
795
script.set_array(
largeArray
);
802
script.forEach_compare(
largeArray
);
809
largeArray
.destroy();
816
Allocation
largeArray
= Allocation.createTyped(mRS, b.setX(48).setY(16).create());
825
script.set_array(
largeArray
);
832
script.forEach_compare(
largeArray
);
839
largeArray
.destroy();
[
all
...]
/art/test/160-read-barrier-stress/src/
Main.java
24
// Initialize
largeArray
for comparison.
25
largeArray
[0] = f0000;
26
largeArray
[1024] = f1024;
27
largeArray
[4444] = f4444;
28
largeArray
[4999] = f4999;
48
// Continually check reads from `manyFields` and `
largeArray
` while allocating
54
Object[] la =
largeArray
; // Load the volatile `
largeArray
` once on each iteration.
98
public static volatile Object[]
largeArray
= new Object[5000];
[
all
...]
/cts/tests/tests/rscpp/librscpptest/
rs_jni_allocation.cpp
622
sp<Allocation>
largeArray
= Allocation::createTyped(rs, b.create());
632
script->set_array(
largeArray
);
639
script->forEach_compare(
largeArray
);
Completed in 424 milliseconds