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

1 2 3 4 5 6 7 8 91011>>

  /external/arm-neon-tests/
ref_vld1_lane.c 60 ARRAY(buffer_src, int, 8, 8);
61 ARRAY(buffer_src, int, 16, 4);
62 ARRAY(buffer_src, int, 32, 2);
63 ARRAY(buffer_src, int, 64, 1);
64 ARRAY(buffer_src, uint, 8, 8);
65 ARRAY(buffer_src, uint, 16, 4);
66 ARRAY(buffer_src, uint, 32, 2);
67 ARRAY(buffer_src, uint, 64, 1);
68 ARRAY(buffer_src, poly, 8, 8);
69 ARRAY(buffer_src, poly, 16, 4)
    [all...]
stm-arm-neon-ref.h 69 /* Array declarations. */
70 #define ARRAY(V, T, W, N) VECT_VAR_DECL(V,T,W,N)[N]
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)
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassObjectReference/
ReflectedType002Test.java 42 * <BR>Starts ReflectedType002Debuggee then checks the following array
51 * <BR>&nbsp;&nbsp; - refTypeTag takes the TypeTag constant ARRAY
62 TypeSignatureAndTag[] array = new TypeSignatureAndTag[] { local
64 JDWPConstants.TypeTag.ARRAY),
66 JDWPConstants.TypeTag.ARRAY),
68 JDWPConstants.TypeTag.ARRAY),
69 new TypeSignatureAndTag("[C", JDWPConstants.TypeTag.ARRAY)
72 runReflectedTypeTest(array);
  /external/mesa3d/src/compiler/glsl/tests/
sampler_types_test.cpp 35 #define ARRAY EXPECT_TRUE(type->sampler_array);
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/swiftshader/third_party/subzero/crosstest/
test_global.cpp 28 // Partially initialized array
54 #define ARRAY(a) \
57 // Note: By embedding the array addresses in this table, we are indirectly
64 ARRAY(ArrayInitPartial),
65 ARRAY(ArrayInitFull),
66 ARRAY(ArrayConst),
67 ARRAY(ArrayDouble),
  /external/swiftshader/third_party/subzero/unittest/
IceParseInstsTest.cpp 114 EXPECT_TRUE(Munger.runTest(ARRAY(Align0)));
115 EXPECT_TRUE(DumpMunger.runTestForAssembly(ARRAY(Align0)));
124 EXPECT_FALSE(Munger.runTest(ARRAY(Align30), ParseError));
128 EXPECT_FALSE(DumpMunger.runTestForAssembly(ARRAY(Align30)));
140 EXPECT_TRUE(Munger.runTest(ARRAY(Align29)));
141 EXPECT_TRUE(DumpMunger.runTestForAssembly(ARRAY(Align29)));
179 EXPECT_FALSE(Munger.runTest(ARRAY(Align0), ParseError));
182 EXPECT_FALSE(DumpMunger.runTestForAssembly(ARRAY(Align0)));
192 EXPECT_FALSE(Munger.runTest(ARRAY(Align4), ParseError));
195 EXPECT_FALSE(DumpMunger.runTestForAssembly(ARRAY(Align4)))
    [all...]
IceParseTypesTest.cpp 67 EXPECT_FALSE(Munger.runTest(ARRAY(Edit)));
83 EXPECT_FALSE(Munger.runTest(ARRAY(Edit)));
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/options/
PropertyOptions.java 39 public static final int ARRAY = 0x00000200;
194 * @return Return whether this property is an array. By itself this indicates a general
195 * unordered array. It is serialized using an <tt>rdf:Bag</tt> container.
199 return getOption(ARRAY);
209 setOption(ARRAY, value);
215 * @return Return whether this property is an ordered array. Appears in conjunction with
236 * @return Return whether this property is an alternative array. Appears in conjunction with
257 * @return Return whether this property is an alt-text array. Appears in conjunction with
259 * Each array element is a simple property with an <tt>xml:lang</tt> attribute.
307 * @return Returns whether the property is of composite type - an array or a struct
    [all...]
  /test/vts/drivers/hal/libcodecoverage/
gcov_basic_io.h 72 #define GCOV_UNSIGNED2STRING(ARRAY, VALUE) \
73 ((ARRAY)[0] = (char)((VALUE) >> 24), (ARRAY)[1] = (char)((VALUE) >> 16), \
74 (ARRAY)[2] = (char)((VALUE) >> 8), (ARRAY)[3] = (char)((VALUE) >> 0))
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/
ValueType.java 47 public static final int ARRAY = 0x1c;
  /libcore/ojluni/src/main/java/java/sql/
Types.java 216 * <code>ARRAY</code>.
219 public final static int ARRAY = 2003;
  /external/python/cpython2/Lib/ctypes/test/
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))
122 # Array types are cached internally in the _ctypes extension,
123 # in a WeakValueDictionary. Make sure the array type is
130 # Create a new array type based on it
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_arrays.py 18 int_array = ARRAY(fmt, alen)
43 CharArray = ARRAY(c_char, 3)
71 numarray = ARRAY(c_int, alen)
90 self.assertTrue(not ARRAY(c_int, 3) is ARRAY(c_int, 4))
91 self.assertTrue(ARRAY(c_int, 3) is ARRAY(c_int, 3))
120 # Array types are cached internally in the _ctypes extension,
121 # in a WeakValueDictionary. Make sure the array type is
128 # Create a new array type based on it
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
test_arrays.py 18 int_array = ARRAY(fmt, alen)
43 CharArray = ARRAY(c_char, 3)
71 numarray = ARRAY(c_int, alen)
90 self.assertTrue(not ARRAY(c_int, 3) is ARRAY(c_int, 4))
91 self.assertTrue(ARRAY(c_int, 3) is ARRAY(c_int, 3))
120 # Array types are cached internally in the _ctypes extension,
121 # in a WeakValueDictionary. Make sure the array type is
128 # Create a new array type based on it
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_arrays.py 18 int_array = ARRAY(fmt, alen)
43 CharArray = ARRAY(c_char, 3)
71 numarray = ARRAY(c_int, alen)
90 self.assertTrue(not ARRAY(c_int, 3) is ARRAY(c_int, 4))
91 self.assertTrue(ARRAY(c_int, 3) is ARRAY(c_int, 3))
120 # Array types are cached internally in the _ctypes extension,
121 # in a WeakValueDictionary. Make sure the array type is
128 # Create a new array type based on it
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_arrays.py 18 int_array = ARRAY(fmt, alen)
43 CharArray = ARRAY(c_char, 3)
71 numarray = ARRAY(c_int, alen)
90 self.assertTrue(not ARRAY(c_int, 3) is ARRAY(c_int, 4))
91 self.assertTrue(ARRAY(c_int, 3) is ARRAY(c_int, 3))
120 # Array types are cached internally in the _ctypes extension,
121 # in a WeakValueDictionary. Make sure the array type is
128 # Create a new array type based on it
    [all...]
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/
TypeUtil.java 39 public static final String ARRAY = "[";
  /external/skia/bench/
MathBench.cpp 325 ARRAY = 1000,
327 float fData[ARRAY];
334 for (int i = 0; i < ARRAY; ++i) {
359 for (int i = 0; i < ARRAY; ++i) {
366 for (int i = 0; i < ARRAY; ++i) {
386 ARRAY = 1000,
388 uint32_t fData[ARRAY];
395 for (int i = 0; i < ARRAY; ++i) {
419 for (int i = 0; i < ARRAY; ++i) {
426 for (int i = 0; i < ARRAY; ++i)
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/
ResourceModule.java 42 * Settings:array{}
43 * Headers:array{}
44 * Cases:array{}
88 // unfortunately, actually, data can be either ARRAY or STRING
89 defaultHeader = getFromTable(info, HEADER, new int[]{UResourceBundle.ARRAY, UResourceBundle.STRING});
251 * Unfortunately, UResourceBundle is unable to treat one string as string array.
252 * This function return a String[] from UResourceBundle, regardless it is an array or a string
255 UResourceBundle t = getFromTable(res, key, new int[]{UResourceBundle.ARRAY, UResourceBundle.STRING});
263 case UResourceBundle.ARRAY:
268 throw new UResourceTypeMismatchException("Only accept ARRAY and STRING types.")
    [all...]
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
ResourceModule.java 41 * Settings:array{}
42 * Headers:array{}
43 * Cases:array{}
87 // unfortunately, actually, data can be either ARRAY or STRING
88 defaultHeader = getFromTable(info, HEADER, new int[]{UResourceBundle.ARRAY, UResourceBundle.STRING});
250 * Unfortunately, UResourceBundle is unable to treat one string as string array.
251 * This function return a String[] from UResourceBundle, regardless it is an array or a string
254 UResourceBundle t = getFromTable(res, key, new int[]{UResourceBundle.ARRAY, UResourceBundle.STRING});
262 case UResourceBundle.ARRAY:
267 throw new UResourceTypeMismatchException("Only accept ARRAY and STRING types.")
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/value/
BaseArrayEncodedValue.java 63 public int getValueType() { return ValueType.ARRAY; }
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
readertest.cpp 494 // And old compiler does not support u"" and U"" string literal. So here specify string literal by array of Ch.
496 // Therefore, utype is added for declaring unsigned array, and then cast it to Encoding::Ch.
497 #define ARRAY(...) { __VA_ARGS__ }
498 #define TEST_STRINGARRAY(Encoding, utype, array, x) \
500 static const utype ue[] = array; \
528 TEST_STRINGARRAY(UTF16<>, wchar_t, ARRAY(0x0024, 0x0000), L"\"\\u0024\"");
529 TEST_STRINGARRAY(UTF16<>, wchar_t, ARRAY(0x00A2, 0x0000), L"\"\\u00A2\""); // Cents sign U+00A2
530 TEST_STRINGARRAY(UTF16<>, wchar_t, ARRAY(0x20AC, 0x0000), L"\"\\u20AC\""); // Euro sign U+20AC
531 TEST_STRINGARRAY(UTF16<>, wchar_t, ARRAY(0xD834, 0xDD1E, 0x0000), L"\"\\uD834\\uDD1E\""); // G clef sign U+1D11E
534 TEST_STRINGARRAY2(UTF32<>, unsigned, ARRAY('\0'), ARRAY('\"', '\"', '\0'));
    [all...]
  /external/google-breakpad/src/client/
minidump_file_writer-inl.h 59 allocation_state_ = ARRAY;
73 assert(allocation_state_ == ARRAY);
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug387.go 14 esc(N) tc(1) used(1) ARRAY-[2]string
  /prebuilts/go/linux-x86/test/fixedbugs/
bug387.go 14 esc(N) tc(1) used(1) ARRAY-[2]string

Completed in 1166 milliseconds

1 2 3 4 5 6 7 8 91011>>