HomeSort by relevance Sort by last modified time
    Searched refs:array (Results 251 - 275 of 7929) sorted by null

<<11121314151617181920>>

  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-tic6x/
attr-array-416-4.d 1 #name: C6X array attribute merging, 416 4
4 #source: attr-array-416.s
5 #source: attr-array-4.s
attr-array-416-416.d 1 #name: C6X array attribute merging, 416 416
4 #source: attr-array-416.s
5 #source: attr-array-416.s
attr-array-416-48.d 1 #name: C6X array attribute merging, 416 48
4 #source: attr-array-416.s
5 #source: attr-array-48.s
attr-array-416-816.d 1 #name: C6X array attribute merging, 416 816
4 #source: attr-array-416.s
5 #source: attr-array-816.s
attr-array-48-4.d 1 #name: C6X array attribute merging, 48 4
4 #source: attr-array-48.s
5 #source: attr-array-4.s
attr-array-48-416.d 1 #name: C6X array attribute merging, 48 416
4 #source: attr-array-48.s
5 #source: attr-array-416.s
attr-array-48-48.d 1 #name: C6X array attribute merging, 48 48
4 #source: attr-array-48.s
5 #source: attr-array-48.s
attr-array-816-16.d 1 #name: C6X array attribute merging, 816 16
4 #source: attr-array-816.s
5 #source: attr-array-16.s
attr-array-816-416.d 1 #name: C6X array attribute merging, 816 416
4 #source: attr-array-816.s
5 #source: attr-array-416.s
attr-array-816-816.d 1 #name: C6X array attribute merging, 816 816
4 #source: attr-array-816.s
5 #source: attr-array-816.s
  /art/test/427-bounds/src/
Main.java 43 static void $opt$Throw(int[] array) {
48 int length = array.length;
49 array[2] = 42;
  /art/test/534-checker-bce-deoptimization/src/
Main.java 72 float[] array = new float[2]; local
74 $noinline$FloatFill(1.125f, 2.5f, array, 3);
77 System.out.println("array[0]=" + array[0] + "f");
78 System.out.println("array[1]=" + array[1] + "f");
91 public static void $noinline$FloatFill(float f1, float f2, float[] array, int n) {
94 array[i] = ((i & 1) == 1) ? f1 : f2;
101 double[] array = new double[2]; local
103 $noinline$DoubleFill(2.125, 3.5, array, 3)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
EncodedArrayItem.java 33 * Encoded array of constant values.
39 /** {@code non-null;} the array to represent */
40 private final CstArray array; field in class:EncodedArrayItem
51 * @param array {@code non-null;} array to represent
53 public EncodedArrayItem(CstArray array) {
60 if (array == null) {
61 throw new NullPointerException("array == null");
64 this.array = array;
    [all...]
  /external/clang/test/CodeGenCXX/
array-construction.cpp 25 xpto array[2][3][4]; local
29 printf("array[%d][%d][%d] = {%d, %f}\n",
30 h, i, j, array[h][i][j].i, array[h][i][j].f);
  /external/deqp/modules/gles3/scripts/
gen-large-constant-arrays.py 59 def __init__(self, name, array, inputs, outputs):
61 self.array = array
64 self.op = "out0 = array[in0];"
70 "ARRAY_DECL": self.array,
88 array = ('const {TYPE} array[{LENGTH}] = {TYPE}[](\n'
91 array += "\n".join(str(e) + ',' for e in elements[:-1])
92 array += "\n" + str(elements[-1])
93 array += ");
103 array = genArray(dataType, arraySize) variable
    [all...]
  /external/eigen/doc/examples/
Tutorial_ArrayClass_interop.cpp 18 result = (m.array() + 4).matrix() * m;
20 result = (m.array() * n.array()).matrix() * m;
  /external/libcxx/test/libcxx/containers/sequences/array/array.zero/
db_back.pass.cpp 17 // test array<T, 0>::front() throws a debug exception.
21 #include <array>
23 template <class Array>
24 inline bool CheckDebugThrows(Array& Arr) {
36 typedef std::array<int, 0> C;
43 typedef std::array<const int, 0> C;
db_front.pass.cpp 17 // test array<T, 0>::front() throws a debug exception.
21 #include <array>
23 template <class Array>
24 inline bool CheckDebugThrows(Array& Arr) {
36 typedef std::array<int, 0> C;
43 typedef std::array<const int, 0> C;
  /external/libcxx/test/std/algorithms/alg.sorting/alg.nth.element/
nth_element_comp.pass.cpp 42 int* array = new int[N];
44 array[i] = i;
45 std::shuffle(array, array+N, randomness);
46 std::nth_element(array, array+M, array+N, std::greater<int>());
47 assert(array[M] == N-M-1);
48 std::nth_element(array, array+N, array+N, std::greater<int>()); // begin, end, en
    [all...]
  /external/libcxx/test/std/containers/sequences/array/array.fill/
fill.pass.cpp 10 // <array>
14 #include <array>
17 // std::array is explicitly allowed to be initialized with A a = { init-list };.
25 typedef std::array<T, 3> C;
35 typedef std::array<T, 0> C;
  /external/libcxx/test/std/containers/sequences/array/
begin.pass.cpp 10 // <array>
14 #include <array>
17 // std::array is explicitly allowed to be initialized with A a = { init-list };.
26 typedef std::array<T, 3> C;
40 typedef std::array<T, 0> C;
  /external/valgrind/drd/tests/
pth_barrier.c 29 int8_t* array; member in struct:threadinfo
45 /** Single thread, which touches p->iterations elements of array p->array.
46 * Each modification of an element of p->array is a data race. */
50 int8_t* const array = p->array; local
59 (long) pthread_self(), i + 1, &array[i]);
60 array[i] = i;
73 int8_t* array; local
76 array = malloc(iterations * sizeof(array[0]))
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/algorithms/alg.sorting/alg.nth.element/
nth_element_comp.pass.cpp 42 int* array = new int[N];
44 array[i] = i;
45 std::shuffle(array, array+N, randomness);
46 std::nth_element(array, array+M, array+N, std::greater<int>());
47 assert(array[M] == N-M-1);
48 std::nth_element(array, array+N, array+N, std::greater<int>()); // begin, end, en
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/array/array.fill/
fill.pass.cpp 10 // <array>
14 #include <array>
17 // std::array is explicitly allowed to be initialized with A a = { init-list };.
25 typedef std::array<T, 3> C;
35 typedef std::array<T, 0> C;
  /external/guava/guava/src/com/google/common/primitives/
Doubles.java 112 * {@code array}. Note that this always returns {@code false} when {@code
115 * @param array an array of {@code double} values, possibly empty
117 * @return {@code true} if {@code array[i] == target} for some value of {@code
120 public static boolean contains(double[] array, double target) {
121 for (double value : array) {
131 * {@code array}. Note that this always returns {@code -1} when {@code target}
134 * @param array an array of {@code double} values, possibly empty
136 * @return the least index {@code i} for which {@code array[i] == target}, o
426 double[] array = new double[len]; local
461 final double[] array; field in class:Doubles.DoubleArrayAsList
    [all...]

Completed in 225 milliseconds

<<11121314151617181920>>