/external/arm-neon-tests/ |
D | ref_vld1_lane.c | 60 ARRAY(buffer_src, int, 8, 8); in exec_vld1_lane() 61 ARRAY(buffer_src, int, 16, 4); in exec_vld1_lane() 62 ARRAY(buffer_src, int, 32, 2); in exec_vld1_lane() 63 ARRAY(buffer_src, int, 64, 1); in exec_vld1_lane() 64 ARRAY(buffer_src, uint, 8, 8); in exec_vld1_lane() 65 ARRAY(buffer_src, uint, 16, 4); in exec_vld1_lane() 66 ARRAY(buffer_src, uint, 32, 2); in exec_vld1_lane() 67 ARRAY(buffer_src, uint, 64, 1); in exec_vld1_lane() 68 ARRAY(buffer_src, poly, 8, 8); in exec_vld1_lane() 69 ARRAY(buffer_src, poly, 16, 4); in exec_vld1_lane() [all …]
|
D | stm-arm-neon-ref.h | 70 #define ARRAY(V, T, W, N) VECT_VAR_DECL(V,T,W,N)[N] macro 196 ARRAY(check_result, T1, W, N); \ 218 extern ARRAY(buffer, int, 8, 8); 219 extern ARRAY(buffer, int, 16, 4); 220 extern ARRAY(buffer, int, 32, 2); 221 extern ARRAY(buffer, int, 64, 1); 222 extern ARRAY(buffer, uint, 8, 8); 223 extern ARRAY(buffer, uint, 16, 4); 224 extern ARRAY(buffer, uint, 32, 2); 225 extern ARRAY(buffer, uint, 64, 1); [all …]
|
/external/swiftshader/third_party/subzero/unittest/ |
D | IceParseInstsTest.cpp | 114 EXPECT_TRUE(Munger.runTest(ARRAY(Align0))); in TEST() 115 EXPECT_TRUE(DumpMunger.runTestForAssembly(ARRAY(Align0))); in TEST() 124 EXPECT_FALSE(Munger.runTest(ARRAY(Align30), ParseError)); in TEST() 128 EXPECT_FALSE(DumpMunger.runTestForAssembly(ARRAY(Align30))); in TEST() 140 EXPECT_TRUE(Munger.runTest(ARRAY(Align29))); in TEST() 141 EXPECT_TRUE(DumpMunger.runTestForAssembly(ARRAY(Align29))); in TEST() 179 EXPECT_FALSE(Munger.runTest(ARRAY(Align0), ParseError)); in TEST() 182 EXPECT_FALSE(DumpMunger.runTestForAssembly(ARRAY(Align0))); in TEST() 192 EXPECT_FALSE(Munger.runTest(ARRAY(Align4), ParseError)); in TEST() 195 EXPECT_FALSE(DumpMunger.runTestForAssembly(ARRAY(Align4))); in TEST() [all …]
|
D | IceParseTypesTest.cpp | 67 EXPECT_FALSE(Munger.runTest(ARRAY(Edit))); in TEST() 83 EXPECT_FALSE(Munger.runTest(ARRAY(Edit))); in TEST()
|
/external/mesa3d/src/compiler/glsl/tests/ |
D | sampler_types_test.cpp | 35 #define ARRAY EXPECT_TRUE(type->sampler_array); macro 56 T( sampler1DArray, GLSL_SAMPLER_DIM_1D, GLSL_TYPE_FLOAT, ARRAY, COLOR, 2) 57 T( sampler2DArray, GLSL_SAMPLER_DIM_2D, GLSL_TYPE_FLOAT, ARRAY, COLOR, 3) 58 T( samplerCubeArray, GLSL_SAMPLER_DIM_CUBE, GLSL_TYPE_FLOAT, ARRAY, COLOR, 4) 62 T( sampler2DMSArray, GLSL_SAMPLER_DIM_MS, GLSL_TYPE_FLOAT, ARRAY, COLOR, 3) 67 T(isampler1DArray, GLSL_SAMPLER_DIM_1D, GLSL_TYPE_INT, ARRAY, COLOR, 2) 68 T(isampler2DArray, GLSL_SAMPLER_DIM_2D, GLSL_TYPE_INT, ARRAY, COLOR, 3) 69 T(isamplerCubeArray, GLSL_SAMPLER_DIM_CUBE, GLSL_TYPE_INT, ARRAY, COLOR, 4) 73 T(isampler2DMSArray, GLSL_SAMPLER_DIM_MS, GLSL_TYPE_INT, ARRAY, COLOR, 3) 78 T(usampler1DArray, GLSL_SAMPLER_DIM_1D, GLSL_TYPE_UINT, ARRAY, COLOR, 2) [all …]
|
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/options/ |
D | PropertyOptions.java | 39 public static final int ARRAY = 0x00000200; field in PropertyOptions 199 return getOption(ARRAY); in isArray() 209 setOption(ARRAY, value); in setArray() 311 return (getOptions() & (ARRAY | STRUCT)) > 0; in isCompositeProperty() 320 return (getOptions() & (ARRAY | STRUCT)) == 0; in isSimple() 362 ~(ARRAY | ARRAY_ORDERED | ARRAY_ALTERNATE | ARRAY_ALT_TEXT)) == 0; in isOnlyArrayOptions() 378 ARRAY | in getValidOptions() 399 case ARRAY : return "ARRAY"; in defineOptionName() 418 if ((options & STRUCT) > 0 && (options & ARRAY) > 0) in assertConsistency() 423 else if ((options & URI) > 0 && (options & (ARRAY | STRUCT)) > 0) in assertConsistency()
|
/external/llvm/test/CodeGen/X86/ |
D | constructor.ll | 2 ; RUN: llc -mtriple x86_64-pc-linux < %s | FileCheck --check-prefix=INIT-ARRAY %s 25 ; INIT-ARRAY: .section .init_array.15,"aGw",@init_array,v,comdat 26 ; INIT-ARRAY-NEXT: .p2align 3 27 ; INIT-ARRAY-NEXT: .quad g 28 ; INIT-ARRAY-NEXT: .section .init_array,"aw",@init_array 29 ; INIT-ARRAY-NEXT: .p2align 3 30 ; INIT-ARRAY-NEXT: .quad f
|
/external/swiftshader/third_party/subzero/crosstest/ |
D | test_global.cpp | 54 #define ARRAY(a) \ macro 64 ARRAY(ArrayInitPartial), 65 ARRAY(ArrayInitFull), 66 ARRAY(ArrayConst), 67 ARRAY(ArrayDouble),
|
/external/python/cpython2/Lib/ctypes/test/ |
D | test_arrays.py | 20 int_array = ARRAY(fmt, alen) 49 CharArray = ARRAY(c_char, 3) 77 numarray = ARRAY(c_int, alen) 96 self.assertIsNot(ARRAY(c_int, 3), ARRAY(c_int, 4)) 97 self.assertIs(ARRAY(c_int, 3), ARRAY(c_int, 3))
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassObjectReference/ |
D | ReflectedType002Test.java | 64 JDWPConstants.TypeTag.ARRAY), in testReflectedType001() 66 JDWPConstants.TypeTag.ARRAY), in testReflectedType001() 68 JDWPConstants.TypeTag.ARRAY), in testReflectedType001() 69 new TypeSignatureAndTag("[C", JDWPConstants.TypeTag.ARRAY) in testReflectedType001()
|
/external/skia/bench/ |
D | MathBench.cpp | 325 ARRAY = 1000, enumerator 327 float fData[ARRAY]; 334 for (int i = 0; i < ARRAY; ++i) { in FloorBench() 359 for (int i = 0; i < ARRAY; ++i) { in onDraw() 366 for (int i = 0; i < ARRAY; ++i) { in onDraw() 386 ARRAY = 1000, enumerator 388 uint32_t fData[ARRAY]; 395 for (int i = 0; i < ARRAY; ++i) { in CLZBench() 419 for (int i = 0; i < ARRAY; ++i) { in onDraw() 426 for (int i = 0; i < ARRAY; ++i) { in onDraw() [all …]
|
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/ |
D | ResourceModule.java | 88 …defaultHeader = getFromTable(info, HEADER, new int[]{UResourceBundle.ARRAY, UResourceBundle.STRING… in ResourceModule() 254 …UResourceBundle t = getFromTable(res, key, new int[]{UResourceBundle.ARRAY, UResourceBundle.STRING… 262 case UResourceBundle.ARRAY: 299 … data = getFromTable(res, DATA, new int[]{UResourceBundle.ARRAY, UResourceBundle.STRING}); 305 … header = getFromTable(res, HEADER, new int[]{UResourceBundle.ARRAY, UResourceBundle.STRING}); 314 settings = getFromTable(res, SETTINGS, UResourceBundle.ARRAY); 331 assert_is (settings.getType() == UResourceBundle.ARRAY); 341 assert_is (data.getType() == UResourceBundle.ARRAY 383 if(theData.getType()==UResourceBundle.ARRAY){
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/ |
D | ResourceModule.java | 89 …defaultHeader = getFromTable(info, HEADER, new int[]{UResourceBundle.ARRAY, UResourceBundle.STRING… in ResourceModule() 255 …UResourceBundle t = getFromTable(res, key, new int[]{UResourceBundle.ARRAY, UResourceBundle.STRING… 263 case UResourceBundle.ARRAY: 300 … data = getFromTable(res, DATA, new int[]{UResourceBundle.ARRAY, UResourceBundle.STRING}); 306 … header = getFromTable(res, HEADER, new int[]{UResourceBundle.ARRAY, UResourceBundle.STRING}); 315 settings = getFromTable(res, SETTINGS, UResourceBundle.ARRAY); 332 assert_is (settings.getType() == UResourceBundle.ARRAY); 342 assert_is (data.getType() == UResourceBundle.ARRAY 384 if(theData.getType()==UResourceBundle.ARRAY){
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/ |
D | JDWPConstants.java | 112 public static final byte ARRAY = 16; field in JDWPConstants.ClassStatus 134 if ((status & ARRAY) == ARRAY) in getName() 158 public static final byte ARRAY = 3; field in JDWPConstants.TypeTag 173 case ARRAY: in getName()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/ |
D | AllClassesTest.java | 82 if ( (status & JDWPConstants.ClassStatus.ARRAY) != 0 ){ in testAllClasses002() 89 + Integer.toHexString(JDWPConstants.ClassStatus.ARRAY) in testAllClasses002() 91 + JDWPConstants.ClassStatus.getName(JDWPConstants.ClassStatus.ARRAY) in testAllClasses002() 185 assertTrue(refTypeTag == JDWPConstants.TypeTag.ARRAY in testAllClasses001() 202 assertTrue(refTypeTag == JDWPConstants.TypeTag.ARRAY in testAllClasses001()
|
D | AllClassesWithGenericTest.java | 84 if ( (status & JDWPConstants.ClassStatus.ARRAY) != 0 ){ in testAllClassesWithGeneric002() 92 + Integer.toHexString(JDWPConstants.ClassStatus.ARRAY) in testAllClassesWithGeneric002() 94 + JDWPConstants.ClassStatus.getName(JDWPConstants.ClassStatus.ARRAY) in testAllClassesWithGeneric002() 193 assertTrue(refTypeTag == JDWPConstants.TypeTag.ARRAY in testAllClassesWithGeneric001() 212 refTypeTag == JDWPConstants.TypeTag.ARRAY in testAllClassesWithGeneric001()
|
/external/swiftshader/third_party/LLVM/test/Integer/ |
D | 2007-01-19-TruncSext.ll | 6 @ARRAY = global [ 20 x i17 ] zeroinitializer 13 %P = getelementptr [20 x i17]* @ARRAY, i32 0, i32 %index 22 %P = getelementptr [20 x i17]* @ARRAY, i32 0, i32 0
|
/external/llvm/test/Integer/ |
D | 2007-01-19-TruncSext.ll | 7 @ARRAY = global [ 20 x i17 ] zeroinitializer 14 %P = getelementptr [20 x i17], [20 x i17]* @ARRAY, i32 0, i32 %index 23 %P = getelementptr [20 x i17], [20 x i17]* @ARRAY, i32 0, i32 0
|
/external/deqp/framework/delibs/debase/ |
D | deDefs.h | 257 # define DE_LENGTH_OF_ARRAY(ARRAY) ((int)(sizeof(deArraySizeHelper(ARRAY)))) argument 259 # define DE_LENGTH_OF_ARRAY(ARRAY) ((int)(sizeof(ARRAY) / sizeof((ARRAY)[0]))) argument
|
/external/llvm/test/Bitcode/ |
D | invalid.test | 46 RUN: FileCheck --check-prefix=EXTRACT-ARRAY %s 52 RUN: FileCheck --check-prefix=INSERT-ARRAY %s 59 EXTRACT-ARRAY: EXTRACTVAL: Invalid array index 62 INSERT-ARRAY: INSERTVAL: Invalid array index 84 RUN: FileCheck --check-prefix=ARRAY-TYPE %s 86 ARRAY-TYPE: Array element type can't be an Array or a Blob 122 RUN: FileCheck --check-prefix=ARRAY-NOT-2LAST %s 124 ARRAY-NOT-2LAST: Array op not second to last 187 RUN: FileCheck --check-prefix=ARRAY-OP-ENC %s 189 ARRAY-OP-ENC: Array element type has to be an encoding of a type
|
/external/r8/src/main/java/com/android/tools/r8/ir/conversion/ |
D | JarState.java | 103 return sort == Type.OBJECT || sort == Type.ARRAY; in isReferenceCompatible() 109 return type == NULL_TYPE || sort == Type.ARRAY; in isReferenceCompatible() 112 return (sort == Type.OBJECT && otherSort == Type.ARRAY) in isReferenceCompatible() 113 || (sort == Type.ARRAY && otherSort == Type.OBJECT) in isReferenceCompatible() 115 || (sort == Type.ARRAY && otherSort == Type.ARRAY in isReferenceCompatible() 246 if (type.getSort() == Type.OBJECT || type.getSort() == Type.ARRAY) { in getLocalRegister()
|
/external/google-breakpad/src/client/ |
D | minidump_file_writer-inl.h | 59 allocation_state_ = ARRAY; in AllocateArray() 73 assert(allocation_state_ == ARRAY); in CopyIndex()
|
D | minidump_file_writer.h | 216 if (allocation_state_ != ARRAY) in ~TypedMDRVA() 262 ARRAY, enumerator
|
/external/clang/test/CodeGenObjCXX/ |
D | arc-exceptions.mm | 102 // CHECK-NEXT: [[ARRAY:%.*]] = getelementptr inbounds [[A]], [[A]]* [[THIS]], i32 0, i32 1 103 // CHECK-NEXT: [[T0:%.*]] = bitcast [2 x [3 x i8*]]* [[ARRAY]] to i8* 110 …YBEGIN:%.*]] = getelementptr inbounds [2 x [3 x i8*]], [2 x [3 x i8*]]* [[ARRAY]], i32 0, i32 0, i… 135 // CHECK: [[ARRAY:%.*]] = alloca [2 x [2 x i8*]], align 136 // CHECK: [[A0:%.*]] = getelementptr inbounds [2 x [2 x i8*]], [2 x [2 x i8*]]* [[ARRAY]], i6…
|
/external/mksh/src/ |
D | var.c | 194 if (vp && (vp->flag & (DEFINED | ASSOC | ARRAY)) == in array_index_calc() 766 if ((set & (ARRAY | ASSOC)) == ASSOC) { in typeset() 768 set &= ~(ARRAY | ASSOC); in typeset() 770 if ((clr & (ARRAY | ASSOC)) == ASSOC) { in typeset() 772 clr &= ~(ARRAY | ASSOC); in typeset() 879 if (vp && ((vp->flag & (ARRAY | ASSOC)) == ASSOC)) in typeset() 892 if (new_refflag == SRF_DISABLE && (vp->flag & (ARRAY|ASSOC)) == ASSOC) in typeset() 895 if (vp->flag & ARRAY) { in typeset() 907 vp->flag &= ~ARRAY; in typeset() 914 vpbase = (vp->flag & ARRAY) ? global(arrayname(tvar)) : vp; in typeset() [all …]
|