HomeSort by relevance Sort by last modified time
    Searched defs:inputArray (Results 1 - 15 of 15) sorted by null

  /libcore/luni/src/test/java/libcore/java/nio/file/
LinuxFileSystemTestData.java 76 public String[] inputArray;
79 TestData(String output, String input, String... inputArray) {
82 this.inputArray = inputArray;
85 TestData(Class exceptionClass, String input, String... inputArray) {
88 this.inputArray = inputArray;
  /test/suite_harness/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/util/
OptionHelperTest.java 92 String[] inputArray = {"foocts ", "-", TEST_CLASS_SHORTNAME, " ", fakeTestClass, " \"--",
95 String inputString = String.join("", inputArray);
  /frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
UT_reduce_backward.java 124 final int[] inputArray = createInputArrayInt(dimX * dimY, 1, 1 << 13);
128 inputAllocation.copy2DRangeFrom(0, 0, dimX, dimY, inputArray);
130 final int javaRslt = addint(inputArray);
196 int[] inputArray = createInputArrayInt(inputLen, 7);
198 inputArray[(new Random(8)).nextInt(inputLen)] = 0;
203 inputAllocation.copy2DRangeFrom(0, 0, dimX, dimY, inputArray);
207 final int cellVal = inputArray[rsRslt.x + dimX * rsRslt.y];
221 int[] inputArray = createInputArrayInt(inputLen, 9);
223 inputArray[(new Random(10)).nextInt(inputLen)] = 0;
228 inputAllocation.copy3DRangeFrom(0, 0, 0, dimX, dimY, dimZ, inputArray);
    [all...]
UT_reduce.java 297 final int[] inputArray = createInputArrayInt(size[0], seed, Integer.MAX_VALUE / size[0]);
300 final int javaResult = addint(inputArray);
305 Allocation inputAllocation = Allocation.createSized(RS, Element.I32(RS), inputArray.length);
309 inputAllocation.copyFrom(inputArray);
328 final int[] inputArray = createInputArrayInt(dimX * dimY, seed, Integer.MAX_VALUE / (dimX * dimY));
331 final int javaResult = addint(inputArray);
342 inputAllocation.copy2DRangeFrom(0, 0, dimX, dimY, inputArray);
362 final int[] inputArray = createInputArrayInt(dimX * dimY * dimZ, seed, Integer.MAX_VALUE / (dimX * dimY * dimZ));
365 final int javaResult = addint(inputArray);
376 inputAllocation.copy3DRangeFrom(0, 0, 0, dimX, dimY, dimZ, inputArray);
    [all...]
  /frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
UT_reduce_backward.java 126 final int[] inputArray = createInputArrayInt(dimX * dimY, 1, 1 << 13);
130 inputAllocation.copy2DRangeFrom(0, 0, dimX, dimY, inputArray);
132 final int javaRslt = addint(inputArray);
198 int[] inputArray = createInputArrayInt(inputLen, 7);
200 inputArray[(new Random(8)).nextInt(inputLen)] = 0;
205 inputAllocation.copy2DRangeFrom(0, 0, dimX, dimY, inputArray);
209 final int cellVal = inputArray[rsRslt.x + dimX * rsRslt.y];
223 int[] inputArray = createInputArrayInt(inputLen, 9);
225 inputArray[(new Random(10)).nextInt(inputLen)] = 0;
230 inputAllocation.copy3DRangeFrom(0, 0, 0, dimX, dimY, dimZ, inputArray);
    [all...]
UT_reduce.java 299 final int[] inputArray = createInputArrayInt(size[0], seed, Integer.MAX_VALUE / size[0]);
302 final int javaResult = addint(inputArray);
307 Allocation inputAllocation = Allocation.createSized(RS, Element.I32(RS), inputArray.length);
311 inputAllocation.copyFrom(inputArray);
330 final int[] inputArray = createInputArrayInt(dimX * dimY, seed, Integer.MAX_VALUE / (dimX * dimY));
333 final int javaResult = addint(inputArray);
344 inputAllocation.copy2DRangeFrom(0, 0, dimX, dimY, inputArray);
364 final int[] inputArray = createInputArrayInt(dimX * dimY * dimZ, seed, Integer.MAX_VALUE / (dimX * dimY * dimZ));
367 final int javaResult = addint(inputArray);
378 inputAllocation.copy3DRangeFrom(0, 0, 0, dimX, dimY, dimZ, inputArray);
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/random/
EmpiricalDistributionImpl.java 221 double[] inputArray = (double[]) in;
222 return new ArrayDataAdapter(inputArray);
285 private double[] inputArray;
294 inputArray = in;
301 for (int i = 0; i < inputArray.length; i++) {
302 sampleStats.addValue(inputArray[i]);
309 for (int i = 0; i < inputArray.length; i++) {
311 binStats.get(findBin(inputArray[i]));
312 stats.addValue(inputArray[i]);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
ReduceTest.java 193 final int[] inputArray = createInputArrayInt(dimX * dimY, 1, 1 << 13);
197 inputAllocation.copy2DRangeFrom(0, 0, dimX, dimY, inputArray);
199 final int javaRslt = addint(inputArray);
246 private Short2 findMinAndMaxHalf(final short[] inputArray) {
247 Allocation inputAllocation = Allocation.createSized(mRS, Element.F16(mRS), inputArray.length);
248 inputAllocation.copyFrom(inputArray);
259 private short[] findMinAndMaxHalfIntoArray(final short[] inputArray) {
260 final Short2 vectorResult = findMinAndMaxHalf(inputArray);
283 private Short2[] findMinAndMaxHalf2(final short[] inputArray) {
284 assertEquals(inputArray.length % 2, 0)
    [all...]
  /system/tools/hidl/test/java_test/src/com/android/commands/hidl_test_java/
HidlTestJava.java 323 IBase.Foo[] inputArray = new IBase.Foo[2];
338 inputArray[0] = foo;
353 inputArray[1] = foo;
356 expectedOutputArray[0] = inputArray[1];
357 expectedOutputArray[1] = inputArray[0];
359 IBase.Foo[] outputArray = proxy.someMethodWithFooArrays(inputArray);
    [all...]
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec/4.1.0.CR3/
netty-codec-4.1.0.CR3.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec/4.1.3.Final/
netty-codec-4.1.3.Final.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec/4.1.6.Final/
netty-codec-4.1.6.Final.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/groovy/groovy-all/2.3.6/
groovy-all-2.3.6.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/groovy/groovy-all/2.4.7/
groovy-all-2.4.7.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.ui.workbench_3.6.2.M20110210-1200.jar 

Completed in 949 milliseconds