HomeSort by relevance Sort by last modified time
    Searched refs:arrays (Results 1 - 25 of 131) sorted by null

1 2 3 4 5 6

  /libcore/luni/src/main/java/java/util/
Observable.java 127 Observer[] arrays = null; local
132 arrays = new Observer[size];
133 observers.toArray(arrays);
136 if (arrays != null) {
137 for (Observer observer : arrays) {
  /cts/tests/src/android/app/cts/
ActivityManagerMemoryClassTestActivity.java 25 * {@link Activity} that allocates arrays of 256k until reaching 75% of the specified memory class.
57 + targetMbs + "mb Number of arrays: " + numArrays);
59 byte[][] arrays = new byte[numArrays][];
60 for (int i = 0; i < arrays.length; i++) {
61 Log.i(TAG, "Allocating array " + i + " of " + arrays.length
63 arrays[i] = new byte[ARRAY_BYTES_SIZE];
  /frameworks/native/opengl/libagl/
array.cpp 107 c->arrays.vertex.size = 4;
108 c->arrays.vertex.type = GL_FLOAT;
109 c->arrays.color.size = 4;
110 c->arrays.color.type = GL_FLOAT;
111 c->arrays.normal.size = 4;
112 c->arrays.normal.type = GL_FLOAT;
114 c->arrays.texture[i].size = 4;
115 c->arrays.texture[i].type = GL_FLOAT;
146 memcpy(v, c->current.texture[c->arrays.tmu].v, sizeof(vec4_t));
432 const int tmu = c->arrays.activeTexture
    [all...]
primitives.cpp 78 const GLvoid* cp = c->arrays.color.element(
80 c->arrays.color.fetch(c, v0->color.v, cp);
84 const GLvoid* cp = c->arrays.color.element(
86 c->arrays.color.fetch(c, v1->color.v, cp);
90 const GLvoid* cp = c->arrays.color.element(
92 c->arrays.color.fetch(c, v2->color.v, cp);
101 const GLvoid* cp = c->arrays.color.element(
103 c->arrays.color.fetch(c, v2->color.v, cp);
137 const GLvoid* cp = c->arrays.color.element(
139 c->arrays.color.fetch(c, v->color.v, cp)
    [all...]
  /external/speex/
Android.mk 34 LOCAL_CFLAGS+= -O3 -fstrict-aliasing -fprefetch-loop-arrays
52 LOCAL_CFLAGS += -O3 -fstrict-aliasing -fprefetch-loop-arrays
  /external/v8/test/mjsunit/
array-literal-transitions.js 28 // Flags: --allow-natives-syntax --smi-only-arrays --expose-gc
30 // Since --smi-only-arrays affects builtins, its default setting at compile
31 // time sticks if built with snapshot. If --smi-only-arrays is deactivated
32 // by default, only a no-snapshot build actually has smi-only arrays enabled
33 // in this test case. Depending on whether smi-only arrays are actually
34 // enabled, this test takes the appropriate code path to check smi-only arrays.
39 print("Tests include smi-only arrays.");
41 print("Tests do NOT include smi-only arrays.");
elements-transition.js 28 // Flags: --allow-natives-syntax --smi-only-arrays
33 print("Tests include smi-only arrays.");
35 print("Tests do NOT include smi-only arrays.");
40 // We apply the same operations to two identical arrays. The first array
99 // Check COW arrays
112 print("Test skipped because smi only arrays are not supported.");
elements-kind.js 28 // Flags: --allow-natives-syntax --smi-only-arrays --expose-gc
31 // Since --smi-only-arrays affects builtins, its default setting at compile
32 // time sticks if built with snapshot. If --smi-only-arrays is deactivated
33 // by default, only a no-snapshot build actually has smi-only arrays enabled
34 // in this test case. Depending on whether smi-only arrays are actually
35 // enabled, this test takes the appropriate code path to check smi-only arrays.
40 print("Tests include smi-only arrays.");
42 print("Tests do NOT include smi-only arrays.");
258 // Elements_kind transitions for arrays.
array-store-and-grow.js 77 // Check the handling of COW arrays
115 // Check the handling of mutable arrays.
149 // Check the handling of mutable arrays of doubles
array-functions-prototype.js 31 // The behavior of SpiderMonkey is slightly different for arrays (see
70 // Note: Spidermonkey is inconsistent here. It treats arrays
71 // differently from non-arrays. It only consults the prototype for
72 // non-arrays. Therefore, array[0] is undefined in Spidermonkey and
in.js 51 // Check dense arrays
131 // Check sparse arrays
155 // Check negative indices in arrays.
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/
GLServerVertex.java 380 ByteBuffer arrays = null; local
383 arrays = msg.getData().asReadOnlyByteBuffer();
384 arrays.order(GLFramesView.TARGET_BYTE_ORDER);
387 fetch(maxAttrib, first + i, i, arrays, msgData.attribs);
388 assert null == arrays || arrays.remaining() == 0;
406 ByteBuffer arrays = null, index = null; local
409 arrays = msg.getData().asReadOnlyByteBuffer();
410 arrays.order(GLFramesView.TARGET_BYTE_ORDER);
413 index = arrays; // server also interleaves user pointer indice
    [all...]
  /external/jpeg/
Android.mk 27 LOCAL_CFLAGS += -O3 -fstrict-aliasing -fprefetch-loop-arrays
  /external/qemu/distrib/jpeg-6b/
Android.mk 27 LOCAL_CFLAGS += -O3 -fstrict-aliasing -fprefetch-loop-arrays
  /external/v8/tools/
consarray.js 31 * In this use case we have lots of arrays that we need to iterate
33 * when concatenating on large (10K items) arrays due to memory copying.
35 * of arrays to iterate through.
47 * Concatenates another array for iterating. Empty arrays are ignored.
  /external/v8/test/mjsunit/regress/
regress-91013.js 28 // Test that KeyedStore stub for unboxed double arrays backing store
31 // Flags: --allow-natives-syntax --unbox-double-arrays
  /external/guava/guava/src/com/google/common/primitives/
Bytes.java 28 import java.util.Arrays;
36 * already found in either {@link Byte} or {@link Arrays}, <i>and interpret
108 * java.util.Arrays.copyOfRange(array, i, i + target.length)} contains exactly
162 * @param arrays zero or more {@code byte} arrays
163 * @return a single array containing all the values from the source arrays, in
166 public static byte[] concat(byte[]... arrays) {
168 for (byte[] array : arrays) {
173 for (byte[] array : arrays) {
205 // Arrays.copyOf() requires Java
    [all...]
Booleans.java 28 import java.util.Arrays;
38 * already found in either {@link Boolean} or {@link Arrays}.
128 * java.util.Arrays.copyOfRange(array, i, i + target.length)} contains exactly
182 * @param arrays zero or more {@code boolean} arrays
183 * @return a single array containing all the values from the source arrays, in
186 public static boolean[] concat(boolean[]... arrays) {
188 for (boolean[] array : arrays) {
193 for (boolean[] array : arrays) {
225 // Arrays.copyOf() requires Java
    [all...]
Chars.java 29 import java.util.Arrays;
38 * already found in either {@link Character} or {@link Arrays}.
159 * java.util.Arrays.copyOfRange(array, i, i + target.length)} contains exactly
251 * @param arrays zero or more {@code char} arrays
252 * @return a single array containing all the values from the source arrays, in
255 public static char[] concat(char[]... arrays) {
257 for (char[] array : arrays) {
262 for (char[] array : arrays) {
343 // Arrays.copyOf() requires Java
    [all...]
Doubles.java 30 import java.util.Arrays;
39 * already found in either {@link Double} or {@link Arrays}.
145 * java.util.Arrays.copyOfRange(array, i, i + target.length)} contains exactly
239 * @param arrays zero or more {@code double} arrays
240 * @return a single array containing all the values from the source arrays, in
243 public static double[] concat(double[]... arrays) {
245 for (double[] array : arrays) {
250 for (double[] array : arrays) {
282 // Arrays.copyOf() requires Java
    [all...]
Floats.java 30 import java.util.Arrays;
39 * already found in either {@link Float} or {@link Arrays}.
142 * java.util.Arrays.copyOfRange(array, i, i + target.length)} contains exactly
236 * @param arrays zero or more {@code float} arrays
237 * @return a single array containing all the values from the source arrays, in
240 public static float[] concat(float[]... arrays) {
242 for (float[] array : arrays) {
247 for (float[] array : arrays) {
279 // Arrays.copyOf() requires Java
    [all...]
Ints.java 30 import java.util.Arrays;
41 * already found in either {@link Integer} or {@link Arrays}.
166 * java.util.Arrays.copyOfRange(array, i, i + target.length)} contains exactly
258 * @param arrays zero or more {@code int} arrays
259 * @return a single array containing all the values from the source arrays, in
262 public static int[] concat(int[]... arrays) {
264 for (int[] array : arrays) {
269 for (int[] array : arrays) {
352 // Arrays.copyOf() requires Java
    [all...]
Longs.java 29 import java.util.Arrays;
38 * already found in either {@link Long} or {@link Arrays}.
136 * java.util.Arrays.copyOfRange(array, i, i + target.length)} contains exactly
228 * @param arrays zero or more {@code long} arrays
229 * @return a single array containing all the values from the source arrays, in
232 public static long[] concat(long[]... arrays) {
234 for (long[] array : arrays) {
239 for (long[] array : arrays) {
336 // Arrays.copyOf() requires Java
    [all...]
Shorts.java 29 import java.util.Arrays;
38 * already found in either {@link Short} or {@link Arrays}.
164 * java.util.Arrays.copyOfRange(array, i, i + target.length)} contains exactly
256 * @param arrays zero or more {@code short} arrays
257 * @return a single array containing all the values from the source arrays, in
260 public static short[] concat(short[]... arrays) {
262 for (short[] array : arrays) {
267 for (short[] array : arrays) {
349 // Arrays.copyOf() requires Java
    [all...]
generate.sh 53 import java.util.Arrays;
62 * already found in either {@link WrapperCl} or {@link Arrays}.
181 * java.util.Arrays.copyOfRange(array, i, i + target.length)} contains exactly
273 * @param arrays zero or more {@code primtyp} arrays
274 * @return a single array containing all the values from the source arrays, in
277 public static primtyp[] concat(primtyp[]... arrays) {
279 for (primtyp[] array : arrays) {
284 for (primtyp[] array : arrays) {
365 // Arrays.copyOf() requires Java
    [all...]

Completed in 270 milliseconds

1 2 3 4 5 6