/art/runtime/interpreter/mterp/mips/ |
op_array_length.S | 2 * Return the length of an array. 4 /* array-length vA, vB */ 11 LOAD_base_offMirrorArray_length(a3, a0) # a3 <- array length
|
/art/runtime/interpreter/mterp/mips64/ |
op_array_length.S | 2 * Return the length of an array. 9 lw a3, MIRROR_ARRAY_LENGTH_OFFSET(a0) # a3 <- array length
|
/art/runtime/interpreter/mterp/x86/ |
op_fill_array_data.S | 1 /* fill-array-data vAA, +BBBBBBBB */ 5 GET_VREG %eax, rINST # eax <- vAA (array object)
|
/art/test/641-checker-arraycopy/src/ |
Main.java | 46 public static void untypedCopyCaller(Object o, byte[] array) { 47 untypedCopy(o, array);
|
/cts/tests/tests/graphics/jni/ |
android_graphics_cts_ANativeWindowTest.cpp | 20 #include <array> 61 const std::array<JNINativeMethod, 3> JNI_METHODS = {{
|
android_graphics_cts_ASurfaceTextureTest.cpp | 21 #include <array> 79 static const std::array<JNINativeMethod, 1> JNI_METHODS = {{
|
android_graphics_cts_VulkanPreTransformCtsActivity.cpp | 26 #include <array> 74 const std::array<JNINativeMethod, 1> JNI_METHODS = {{
|
/development/tools/findunused/ |
findunusedtranslations | 46 if (/<string-array [^>]*name="([^"]*)"/) { 69 if (/<string-array [^>]*name="([^"]*)"/) { 87 if (/<\/string-array/) {
|
/external/autotest/client/cros/cellular/mbim_compliance/ |
mbim_data_channel.py | 58 @param ntb: Byte array of complete MBIM NTB to be sent to the device. 72 written, ntb_length, numpy.array(ntb)) 86 it returns an empty byte array. The API returns only one MBIM NTB 89 @returns Byte array of complete MBIM NTB received from the device. This 101 ntb_length, numpy.array(ntb))
|
/external/boringssl/src/crypto/test/ |
test_util.h | 50 explicit Bytes(const uint8_t (&array)[N]) : data(array), len(N) {}
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
DERSequence.java | 39 * create a sequence containing an array of objects. 40 * @param array the array of objects to make up the sequence. 43 ASN1Encodable[] array) 45 super(array);
|
DLSequence.java | 42 * create a sequence containing an array of objects. 43 * @param array the array of objects to make up the sequence. 46 ASN1Encodable[] array) 48 super(array);
|
/external/brotli/c/enc/ |
histogram_inc.h | 25 FN(Histogram)* array, size_t length) { 27 for (i = 0; i < length; ++i) FN(HistogramClear)(array + i);
|
/external/capstone/bindings/ocaml/ |
mips.ml | 23 operands: mips_op array;
|
ppc.ml | 32 operands: ppc_op array;
|
sparc.ml | 25 operands: sparc_op array;
|
systemz.ml | 26 operands: sysz_op array;
|
xcore.ml | 24 operands: xcore_op array;
|
/external/clang/test/Analysis/ |
ptr-arith.c | 20 // The ElementRegion's type depends on the array region's rvalue type. If it was 55 p = &x + 1; // expected-warning{{Pointer arithmetic on non-array variables relies on memory layout, which is dangerous}} 114 int array[10]; local 115 int *a = &array[2]; 116 int *b = &array[5]; 126 int array[10]; local 127 int *a = &array[2]; 128 char *b = (char*)&array[5]; 150 int array[2]; local 151 void *a = &array, *b = &s [all...] |
/external/clang/test/CodeGen/ |
vector.c | 29 int array[16] = { 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 }; local 30 __m64 *p = (__m64 *)array;
|
/external/clang/test/SemaTemplate/ |
instantiate-c99.cpp | 46 T array = { local 48 [Subscript2] = val2 // expected-error{{exceeds array bounds}} 62 T array = { local
|
temp_class_spec_neg.cpp | 35 int array[5]; variable 36 template< int X > class A2<X, &array> { }; // expected-error{{specializes}}
|
/external/eigen/test/ |
linearstructure.cpp | 98 VERIFY_IS_APPROX(s+m1.array(), Scalar(s)+m1.array()); 102 VERIFY_IS_APPROX(m1.array()+s, m1.array()+Scalar(s)); 106 VERIFY_IS_APPROX(s-m1.array(), Scalar(s)-m1.array()); 110 VERIFY_IS_APPROX(m1.array()-s, m1.array()-Scalar(s));
|
/external/guava/guava/src/com/google/common/collect/ |
RegularImmutableAsList.java | 24 * already backed by an {@code ImmutableList} or array. 39 RegularImmutableAsList(ImmutableCollection<E> delegate, Object[] array) { 40 this(delegate, ImmutableList.<E>asImmutableList(array));
|
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/ |
ObjectArraysTest.java | 43 String[] array = ObjectArrays.newArray(new String[0], 2); local 44 assertEquals(String[].class, array.getClass()); 45 assertEquals(2, array.length); 46 assertNull(array[0]); 50 String[][] array = ObjectArrays.newArray(new String[0][0], 1); local 51 assertEquals(String[][].class, array.getClass()); 52 assertEquals(1, array.length); 53 assertNull(array[0]);
|