HomeSort by relevance Sort by last modified time
    Searched defs:array1 (Results 1 - 25 of 280) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/PCH/Inputs/
arc.h 24 typedef int array1[sizeof((BRIDGE CFTypeRef)CreateSomething())]; typedef
  /external/clang/test/CXX/basic/basic.scope/basic.scope.pdecl/
p9.cpp 14 int array1[X1<>::value? 1 : -1]; variable
  /external/clang/test/Lexer/
utf8-char-literal.cpp 6 int array1['\xF1' != u'\xf1'? 1 : -1]; variable
7 int array1['ñ' != u'\xf1'? 1 : -1]; // expected-error {{character too large for enclosing character literal type}} variable
  /external/clang/test/Sema/
vector-ops.c 20 int array1[v2ua]; // expected-error{{size of array has non-integer type 'v2u' (vector of 2 'unsigned int' values)}} local
self-comparison.c 49 int array1[2]; local
55 return array1 == array1; // expected-warning{{self-comparison always evaluates to true}}
56 return array1 != array1; // expected-warning{{self-comparison always evaluates to false}}
57 return array1 < array1; // expected-warning{{self-comparison always evaluates to false}}
58 return array1 <= array1; // expected-warning{{self-comparison always evaluates to true}}
59 return array1 > array1; // expected-warning{{self-comparison always evaluates to false}
    [all...]
  /external/clang/test/SemaCXX/
non-empty-class-size-zero.cpp 6 int array1[0]; member in struct:X
c99-variable-length-array-cxx11.cpp 21 int array1[N]; // expected-warning{{variable length arrays are a C99 feature}} local
offsetof.cpp 29 int array1[__builtin_offsetof(HasArray, array[i])]; local
  /external/clang/test/SemaTemplate/
temp_class_order.cpp 24 int array1[X1<int*, float*>::value == 1? 1 : -1]; variable
instantiate-declref-ice.cpp 21 int array1[X0<int>::value == sizeof(int)? 1 : -1]; variable
instantiate-enum.cpp 11 int array1[adder<long, 3, 4>::value == 7? 1 : -1]; variable
ext-vector-type.cpp 91 int array1[X0<int4>::value == 1? 1 : -1]; member in namespace:Deduction
instantiate-expr-5.cpp 33 int array1[__builtin_offsetof(AnonymousUnion<T>, f) == 0? 1 : -1]; local
instantiate-static-var.cpp 11 int array1[X<int, 2>::value == 5? 1 : -1]; variable
  /art/compiler/utils/
dedupe_set_test.cc 62 const std::vector<uint8_t>* array1; local
66 array1 = deduplicator.Add(self, test1);
67 ASSERT_NE(array1, nullptr);
68 ASSERT_TRUE(std::equal(test1.begin(), test1.end(), array1->begin()));
76 ASSERT_EQ(array2, array1);
86 ASSERT_NE(array3, array1);
  /art/test/554-checker-rtp-checkcast/src/
Main.java 59 int[] array1 = new int[20]; local
62 int[] catch_phi = array1;
  /external/clang/test/CXX/temp/temp.decls/temp.class.spec/temp.class.order/
p2.cpp 16 int array1[X<0, 1, int>::value == 1? 1 : -1]; variable
  /external/clang/test/CXX/temp/temp.decls/temp.friend/
p4.cpp 21 int array1[sizeof(X2<float>)]; // expected-note{{instantiation of}} variable
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/
sfinae-1.cpp 17 int array1[is_class<int>::value? -1 : 1]; variable
  /external/clang/test/Parser/
ms-if-exists.c 53 int array1[] = { local
ms-if-exists.cpp 54 int array1[] = { local
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_stackdepot_test.cc 59 uptr array1[] = {1, 2, 3, 4, 7}; local
60 StackTrace s1(array1, ARRAY_SIZE(array1));
69 uptr array1[] = {1, 2, 3, 4, 5}; local
74 StackTrace s1(array1, ARRAY_SIZE(array1));
  /external/clang/test/CXX/temp/temp.decls/temp.class.spec/
p6.cpp 21 int array1[X0<int>::Inner0<int*>::value == 1? 1 : -1]; variable
75 int array1[Outer<int>::Inner<int, float>::value? -1 : 1]; member in namespace:rdar8651930
  /external/eigen/test/
mapped_matrix.cpp 25 Scalar* array1 = internal::aligned_new<Scalar>(size); local
31 Map<VectorType, AlignedMax>(array1, size) = VectorType::Random(size);
32 Map<VectorType, AlignedMax>(array2, size) = Map<VectorType,AlignedMax>(array1, size);
33 Map<VectorType>(array3unaligned, size) = Map<VectorType>(array1, size);
34 Map<VectorType>(array4, size) = Map<VectorType,AlignedMax>(array1, size);
35 VectorType ma1 = Map<VectorType, AlignedMax>(array1, size);
47 internal::aligned_delete(array1, size);
60 // array1 and array2 -> aligned heap allocation
61 Scalar* array1 = internal::aligned_new<Scalar>(size); local
62 for(int i = 0; i < size; i++) array1[i] = Scalar(1)
129 Scalar* array1 = internal::aligned_new<Scalar>(size); local
168 Scalar* array1 = internal::aligned_new<Scalar>((size+1)*(size+1)+1); local
    [all...]
mapstride.cpp 64 Scalar* array1 = a_array1; local
66 array1 = (Scalar*)(internal::IntPtr(a_array1) + (internal::packet_traits<Scalar>::AlignedOnScalar?sizeof(Scalar):sizeof(typename NumTraits<Scalar>::Real)));
81 Scalar* array = (k==0 ? array1 : array2);
103 Scalar* array = (k==0 ? array1 : array2);
129 Scalar* array = (k==0 ? array1 : array2);

Completed in 371 milliseconds

1 2 3 4 5 6 7 8 91011>>