Home
last modified time | relevance | path

Searched defs:x (Results 1 – 25 of 5185) sorted by relevance

12345678910>>...208

/llvm-project/libcxx/test/std/depr/depr.c.headers/
H A Dinttypes_h.compile.pass.cpp876 { int8_t x = 0; (void)x; } in f() local
877 { int16_t x = 0; (void)x; } in f() local
878 { int32_t x = 0; (void)x; } in f() local
879 { int64_t x = 0; (void)x; } in f() local
881 { uint8_t x = 0; (void)x; } in f() local
882 { uint16_t x = 0; (void)x; } in f() local
883 { uint32_t x = 0; (void)x; } in f() local
884 { uint64_t x = 0; (void)x; } in f() local
886 { int_least8_t x = 0; (void)x; } in f() local
887 { int_least16_t x = 0; (void)x; } in f() local
[all …]
/llvm-project/clang/test/SemaCXX/
H A Dwarn-range-loop-analysis.cpp73 for (const int &x : int_non_ref_container) {} in test0() local
78 for (const double &x : int_container) {} in test0() local
83 for (const Bar x : bar_container) {} in test0() local
94 for (const int &x : A) {} in test1() local
98 for (const int x : A) {} in test1() local
104 for (int x : A) {} in test1() local
109 for (const double &x : A) {} in test1() local
113 for (const double x : A) {} in test1() local
119 for (double x : A) {} in test1() local
124 for (const Bar &x : A) {} in test1() local
[all …]
H A Dcxx2b-p2266-disable-with-msvc-compat.cpp20 int &&mt1(int &&x) { return x; } // cxx20-error {{cannot bind to lvalue}} in mt1()
21 int &mt2(int &&x) { return x; } // cxx23-error {{cannot bind to a temporary}} in mt2()
22 nocopy mt3(nocopy x) { return x; } in mt3()
25 int &&mt1(int &&x) { return x; } // cxx20-error {{cannot bind to lvalue}} in mt1()
26 int &mt2(int &&x) { return x; } // cxx23-error {{cannot bind to a temporary}} in mt2()
27 nocopy mt3(nocopy x) { return x; } in mt3()
31 int &&mt1(int &&x) { return x; } // cxx20-error {{cannot bind to lvalue}} in mt1()
32 int &mt2(int &&x) { return x; } // cxx23-error {{cannot bind to a temporary}} in mt2()
34 int &&mt1(int &&x) { return x; } // cxx20-error {{cannot bind to lvalue}} in mt1()
35 int &mt2(int &&x) { return x; } // cxx23-error {{cannot bind to a temporary}} in mt2()
[all …]
H A Dcondition.cpp4 int x; in test() local
6 if (int x=0) ++x; in test() local
9 while (arr x={0}) ; // expected-error {{an array type is not allowed here}} in test() local
14 …while (struct S x=s) ; // expected-error {{value of type 'struct S' is not contextually convertibl… in test() local
19 while (struct NewS *x=0) ; in test() local
26 if (int x=0) { // expected-note 2 {{previous definition is here}} in test() local
27 int x; // expected-error {{redefinition of 'x'}} in test() local
30 int x; // expected-error {{redefinition of 'x'}} in test() local
31 …while (int x=0) int x; // expected-error {{redefinition of 'x'}} expected-note {{previous definiti… in test() local
32 …while (int x=0) { int x; } // expected-error {{redefinition of 'x'}} expected-note {{previous defi… in test() local
[all …]
/llvm-project/clang/test/Parser/
H A Dnested_lambda_overflow.cpp30 [](int x = foo(1)){} in __anon593314a80102()
33 )){} in __anon593314a80202()
36 )){})){})){})){})){})){} in __anon593314a80802()
38 )){})){})){})){})){})){})){})){} in __anon593314a80902()
39 )){})){})){})){})){})){})){})){} in __anon593314a81702()
40 )){})){})){})){})){})){})){})){} in __anon593314a81902()
41 )){})){})){})){})){})){})){})){} in __anon593314a82802()
42 )){})){})){})){})){})){})){})){} in __anon593314a82902()
43 )){})){})){})){})){})){})){})){} in __anon593314a83802()
44 )){})){})){})){})){})){})){})){} in __anon593314a84002()
[all …]
/llvm-project/libc/include/llvm-libc-macros/
H A Dstdbit-macros.h19 inline unsigned stdc_leading_zeros(unsigned char x) { in stdc_leading_zeros()
22 inline unsigned stdc_leading_zeros(unsigned short x) { in stdc_leading_zeros()
25 inline unsigned stdc_leading_zeros(unsigned x) { in stdc_leading_zeros()
28 inline unsigned stdc_leading_zeros(unsigned long x) { in stdc_leading_zeros()
31 inline unsigned stdc_leading_zeros(unsigned long long x) { in stdc_leading_zeros()
34 inline unsigned stdc_leading_ones(unsigned char x) { in stdc_leading_ones()
37 inline unsigned stdc_leading_ones(unsigned short x) { in stdc_leading_ones()
40 inline unsigned stdc_leading_ones(unsigned x) { in stdc_leading_ones()
43 inline unsigned stdc_leading_ones(unsigned long x) { in stdc_leading_ones()
46 inline unsigned stdc_leading_ones(unsigned long long x) { in stdc_leading_ones()
[all …]
/llvm-project/libclc/generic/include/clc/
H A Das_type.h1 #define as_char(x) __builtin_astype(x, char) argument
2 #define as_uchar(x) __builtin_astype(x, uchar) argument
3 #define as_short(x) __builtin_astype(x, short) argument
4 #define as_ushort(x) __builtin_astype(x, ushort) argument
5 #define as_int(x) __builtin_astype(x, int) argument
6 #define as_uint(x) __builtin_astype(x, uint) argument
7 #define as_long(x) __builtin_astype(x, long) argument
8 #define as_ulong(x) __builtin_astype(x, ulong) argument
9 #define as_float(x) __builtin_astype(x, float) argument
11 #define as_char2(x) __builtin_astype(x, char2) argument
[all …]
/llvm-project/flang/test/Lower/PowerPC/
H A Dppc-vec-splat.f9010 subroutine vec_splat_testi8i8(x) argument
23 vec_splat_testi8i16(x) global() argument
36 vec_splat_testi8i32(x) global() argument
49 vec_splat_testi8i64(x) global() argument
62 vec_splat_testi16i8(x) global() argument
75 vec_splat_testi16i16(x) global() argument
88 vec_splat_testi16i32(x) global() argument
101 vec_splat_testi16i64(x) global() argument
114 vec_splat_testi32i8(x) global() argument
127 vec_splat_testi32i16(x) global() argument
140 vec_splat_testi32i32(x) global() argument
153 vec_splat_testi32i64(x) global() argument
166 vec_splat_testi64i8(x) global() argument
179 vec_splat_testi64i16(x) global() argument
192 vec_splat_testi64i32(x) global() argument
205 vec_splat_testi64i64(x) global() argument
218 vec_splat_testf32i8(x) global() argument
231 vec_splat_testf32i16(x) global() argument
244 vec_splat_testf32i32(x) global() argument
257 vec_splat_testf32i64(x) global() argument
270 vec_splat_testf64i8(x) global() argument
283 vec_splat_testf64i16(x) global() argument
296 vec_splat_testf64i32(x) global() argument
309 vec_splat_testf64i64(x) global() argument
322 vec_splat_testu8i8(x) global() argument
335 vec_splat_testu8i16(x) global() argument
348 vec_splat_testu8i32(x) global() argument
361 vec_splat_testu8i64(x) global() argument
374 vec_splat_testu16i8(x) global() argument
387 vec_splat_testu16i16(x) global() argument
400 vec_splat_testu16i32(x) global() argument
413 vec_splat_testu16i64(x) global() argument
426 vec_splat_testu32i8(x) global() argument
439 vec_splat_testu32i16(x) global() argument
452 vec_splat_testu32i32(x) global() argument
465 vec_splat_testu32i64(x) global() argument
478 vec_splat_testu64i8(x) global() argument
491 vec_splat_testu64i16(x) global() argument
504 vec_splat_testu64i32(x) global() argument
517 vec_splat_testu64i64(x) global() argument
534 vec_splats_testi8(x) global() argument
535 integer(1) :: x global() local
546 vec_splats_testi16(x) global() argument
547 integer(2) :: x global() local
558 vec_splats_testi32(x) global() argument
559 integer(4) :: x global() local
570 vec_splats_testi64(x) global() argument
571 integer(8) :: x global() local
582 vec_splats_testf32(x) global() argument
583 real(4) :: x global() local
594 vec_splats_testf64(x) global() argument
595 real(8) :: x global() local
[all...]
/llvm-project/libc/src/math/nvptx/
H A Dnvptx.h19 LIBC_INLINE double acos(double x) { return __nv_acos(x); } in acosf() argument
20 LIBC_INLINE float acosf(float x) { return __nv_acosf(x); } in acosh() argument
21 LIBC_INLINE double acosh(double x) { return __nv_acosh(x); } in acoshf() argument
22 LIBC_INLINE float acoshf(float x) { return __nv_acoshf(x); } in asin() argument
23 LIBC_INLINE double asin(double x) { return __nv_asin(x); } in asinf() argument
18 acos(double x) acos() argument
24 asinh(double x) asinh() argument
25 asinhf(float x) asinhf() argument
26 atan2(double x,double y) atan2() argument
27 atan2f(float x,float y) atan2f() argument
28 atan(double x) atan() argument
29 atanf(float x) atanf() argument
30 atanh(double x) atanh() argument
31 atanhf(float x) atanhf() argument
32 cos(double x) cos() argument
33 cosf(float x) cosf() argument
34 cosh(double x) cosh() argument
35 coshf(float x) coshf() argument
36 erf(double x) erf() argument
37 erff(float x) erff() argument
38 exp(double x) exp() argument
39 expf(float x) expf() argument
40 exp2(double x) exp2() argument
41 exp2f(float x) exp2f() argument
42 exp10(double x) exp10() argument
43 exp10f(float x) exp10f() argument
44 expm1(double x) expm1() argument
45 expm1f(float x) expm1f() argument
46 fdim(double x,double y) fdim() argument
47 fdimf(float x,float y) fdimf() argument
48 hypot(double x,double y) hypot() argument
49 hypotf(float x,float y) hypotf() argument
50 ilogb(double x) ilogb() argument
51 ilogbf(float x) ilogbf() argument
52 ldexp(double x,int i) ldexp() argument
53 ldexpf(float x,int i) ldexpf() argument
54 llrint(double x) llrint() argument
55 llrintf(float x) llrintf() argument
56 log10(double x) log10() argument
57 log10f(float x) log10f() argument
58 log1p(double x) log1p() argument
59 log1pf(float x) log1pf() argument
60 log2(double x) log2() argument
61 log2f(float x) log2f() argument
62 log(double x) log() argument
63 logf(float x) logf() argument
64 lrint(double x) lrint() argument
65 lrintf(float x) lrintf() argument
66 nextafter(double x,double y) nextafter() argument
69 nextafterf(float x,float y) nextafterf() argument
70 pow(double x,double y) pow() argument
71 powf(float x,float y) powf() argument
72 sin(double x) sin() argument
73 sinf(float x) sinf() argument
74 sincos(double x,double * sinptr,double * cosptr) sincos() argument
77 sincosf(float x,float * sinptr,float * cosptr) sincosf() argument
80 sinh(double x) sinh() argument
81 sinhf(float x) sinhf() argument
82 tan(double x) tan() argument
83 tanf(float x) tanf() argument
84 tanh(double x) tanh() argument
85 tanhf(float x) tanhf() argument
86 scalbn(double x,int i) scalbn() argument
87 scalbnf(float x,int i) scalbnf() argument
88 frexp(double x,int * i) frexp() argument
89 frexpf(float x,int * i) frexpf() argument
90 remquo(double x,double y,int * i) remquo() argument
93 remquof(float x,float y,int * i) remquof() argument
96 tgamma(double x) tgamma() argument
97 tgammaf(float x) tgammaf() argument
[all...]
/llvm-project/flang/runtime/Float128Math/
H A Dcomplex-math.h17 #define CAbs(x) cabsq(x) argument
18 #define CAcos(x) cacosq(x) argument
19 #define CAcosh(x) cacoshq(x) argument
20 #define CAsin(x) casinq(x) argument
21 #define CAsinh(x) casinhq(x) argument
22 CAtan(x) global() argument
23 CAtanh(x) global() argument
24 CCos(x) global() argument
25 CCosh(x) global() argument
26 CExp(x) global() argument
27 CLog(x) global() argument
28 CPow(x,p) global() argument
29 CSin(x) global() argument
30 CSinh(x) global() argument
31 CSqrt(x) global() argument
32 CTan(x) global() argument
33 CTanh(x) global() argument
38 CAbs(x) global() argument
39 CAcos(x) global() argument
40 CAcosh(x) global() argument
41 CAsin(x) global() argument
42 CAsinh(x) global() argument
43 CAtan(x) global() argument
44 CAtanh(x) global() argument
45 CCos(x) global() argument
46 CCosh(x) global() argument
47 CExp(x) global() argument
48 CLog(x) global() argument
49 CPow(x,p) global() argument
50 CSin(x) global() argument
51 CSinh(x) global() argument
52 CSqrt(x) global() argument
53 CTan(x) global() argument
54 CTanh(x) global() argument
[all...]
/llvm-project/flang/test/Semantics/
H A Dignore_tkr01.f9015 real, intent(in) :: x local
20 real, intent(in) :: x local
25 real, intent(in) :: x local
40 real, intent(in) :: x global() local
46 real, intent(in) :: x global() local
51 real, intent(in) :: x global() local
57 real, intent(in), allocatable :: x global() local
63 real, intent(in), pointer :: x global() local
69 real :: x global() local
86 real, intent(in) :: x global() local
92 real x( global() local
98 t15(x) global() argument
101 real, intent(in), allocatable :: x global() local
104 t16(x) global() argument
107 real, intent(in), pointer :: x global() local
110 t17(x) global() argument
111 real x global() local
117 t18(x) global() argument
120 real x global() local
124 t19(x) global() argument
125 real x global() local
133 t20(x) global() argument
134 real x global() local
141 t22(x) global() argument
144 real x( global() local
147 t23(x) global() argument
150 real x( global() local
155 bad1(x) global() argument
158 real, intent(in) :: x global() local
167 real x global() variable
216 inner(x) global() argument
219 real, intent(in) :: x global() local
[all...]
H A Dgeneric07.f905 real :: x component
9 real :: x component
12 real :: x component
15 real, private :: x component
18 subroutine s1a(x) argument
19 type(t1), intent(in) :: x local
21 subroutine s2a(x) argument
22 type(t2), intent(in) :: x local
24 subroutine s3a(x) argument
25 type(t3), intent(in) :: x local
[all …]
/llvm-project/flang/test/Lower/HLFIR/
H A Dselect-rank.f907 real :: x local
10 real :: x(:) local
13 real :: x(:, :) local
16 real :: x(:,:,:,:,:,:,:,:,:,:,:,:,:,:,:) local
19 real :: x( local
22 character(*) :: x( global() local
25 real :: x( global() local
29 real, allocatable :: x global() local
32 real, allocatable :: x( global() local
35 real, allocatable :: x( global() local
38 real, allocatable :: x( global() local
41 real, allocatable :: x( global() local
45 class(*) :: x global() local
48 class(*) :: x( global() local
51 class(*) :: x( global() local
57 test_single_case(x) global() argument
59 real :: x( global() local
66 test_simple_case(x) global() argument
68 real :: x( global() local
81 test_rank_star(x) global() argument
83 real :: x( global() local
98 test_renaming(x) global() argument
100 real :: x( global() local
108 test_no_case(x) global() argument
109 real :: x( global() local
114 test_rank_star_attributes(x) global() argument
130 test_rank_star_contiguous(x) global() argument
149 test_rank_star_contiguous_character(x, n) global() argument
167 test_simple_alloc(x) global() argument
169 real, allocatable :: x( global() local
184 test_character_alloc(x) global() argument
185 character(:), allocatable :: x( global() local
194 test_explicit_character_ptr(x, n) global() argument
197 character(n), allocatable :: x( global() local
206 test_assumed_character_ptr(x) global() argument
208 character(*), allocatable :: x( global() local
217 test_polymorphic(x) global() argument
219 class(*) :: x( global() local
273 test_branching(x) global() argument
277 real :: x( global() local
[all...]
H A Dassumed-rank-inquiries-3.f904 subroutine test_shape(x) argument
5 real :: x(..) local
27 subroutine test_shape_kind(x) argument
28 real :: x(..) local
42 subroutine test_shape_2(x) argument
43 real, pointer :: x(..) local
59 subroutine test_lbound(x) argument
60 real :: x( global() local
82 test_lbound_kind(x) global() argument
83 real :: x( global() local
97 test_lbound_2(x) global() argument
98 real, pointer :: x( global() local
113 test_ubound(x) global() argument
114 real :: x( global() local
136 test_ubound_kind(x) global() argument
137 real :: x( global() local
151 test_ubound_2(x) global() argument
152 real, pointer :: x( global() local
167 test_lbound_dim(x) global() argument
168 real :: x( global() local
179 test_ubound_dim(x) global() argument
180 real :: x( global() local
[all...]
H A Dassumed-rank-inquiries.f904 subroutine test_allocated(x) argument
5 real, allocatable :: x(..) local
9 subroutine test_associated_1(x) argument
10 real, pointer :: x(..) local
14 subroutine test_associated_2(x, y) argument
15 real, pointer :: x(..) local
20 subroutine test_associated_3(x, argument
21 real, pointer :: x( global() local
26 test_len_1(x) global() argument
27 character(*) :: x( global() local
31 test_len_2(x) global() argument
32 character(*), pointer :: x( global() local
36 test_storage_size_1(x) global() argument
37 class(*) :: x( global() local
41 test_storage_size_2(x) global() argument
42 class(*), pointer :: x( global() local
46 test_present_1(x) global() argument
47 class(*), optional :: x( global() local
51 test_present_2(x) global() argument
52 class(*), optional, pointer :: x( global() local
56 test_is_contiguous_1(x) global() argument
57 class(*) :: x( global() local
61 test_is_contiguous_2(x) global() argument
62 class(*), pointer :: x( global() local
66 test_same_type_as_1(x, y) global() argument
67 class(*) :: x( global() local
71 test_same_type_as_2(x, y) global() argument
72 class(*), pointer :: x( global() local
76 test_extends_type_of_1(x, y) global() argument
77 class(*) :: x( global() local
81 test_extends_type_of_2(x, y) global() argument
82 class(*), pointer :: x( global() local
86 c_loc_1(x) global() argument
88 real, target :: x( global() local
92 c_loc_2(x) global() argument
94 real, pointer :: x( global() local
[all...]
H A Dcall-sequence-associated-descriptors.f9010 character(*) :: x(n) local
13 character(*) :: x(10, *) local
17 character(*), optional :: x(n) local
21 subroutine test_char_1(x) argument
22 character(*) :: x(10, 20) local
54 test_char_copy_in_copy_out(x) global() argument
55 character(*) :: x( global() local
89 test_char_assumed_size(x) global() argument
90 character(*) :: x( global() local
121 test_optional_char(x) global() argument
122 character(*), optional :: x( global() local
172 class(*) :: x( global() local
175 class(*) :: x( global() local
179 class(*), optional :: x( global() local
183 test_poly_1(x) global() argument
184 class(*) :: x( global() local
212 test_poly_copy_in_copy_out(x) global() argument
213 class(*) :: x( global() local
242 test_poly_assumed_size(x) global() argument
243 class(*) :: x( global() local
269 test_optional_poly(x) global() argument
270 class(*), optional :: x( global() local
[all...]
/llvm-project/flang/include/flang/Lower/Support/
H A DUtils.h50 static Fortran::lower::SomeExpr toEvExpr(const A &x) { in toEvExpr()
58 FROM> &x) { in ignoreEvConvert()
62 static Fortran::lower::SomeExpr ignoreEvConvert(const A &x) { in ignoreEvConvert()
71 Fortran::common::TypeCategory::Integer, 8>> &x) { in ignoreEvConvert()
109 static unsigned getHashValue(const Fortran::semantics::Symbol &x) { in getHashValue()
113 static unsigned getHashValue(const Fortran::common::Indirection<A, COPY> &x) { in getHashValue()
117 static unsigned getHashValue(const std::optional<A> &x) { in getHashValue()
122 static unsigned getHashValue(const Fortran::evaluate::Subscript &x) { in getHashValue()
126 static unsigned getHashValue(const Fortran::evaluate::Triplet &x) { in getHashValue()
130 static unsigned getHashValue(const Fortran::evaluate::Component &x) { in getHashValue()
[all …]
/llvm-project/compiler-rt/lib/builtins/
H A Dint_math.h23 #define __has_builtin(x) 0 argument
38 #define crt_isfinite(x) _finite((x)) argument
39 #define crt_isinf(x) !_finite((x)) argument
40 #define crt_isnan(x) _isnan((x)) argument
46 #define crt_isfinite(x) __builtin_isfinite((x)) argument
48 #define crt_isfinite(x) \ argument
56 crt_isinf(x) global() argument
57 crt_isnan(x) global() argument
61 crt_copysign(x,y) global() argument
62 crt_copysignf(x,y) global() argument
63 crt_copysignl(x,y) global() argument
65 crt_copysign(x,y) global() argument
66 crt_copysignf(x,y) global() argument
67 crt_copysignl(x,y) global() argument
69 crt_copysignf128(x,y) global() argument
71 crt_copysignf128(x,y) global() argument
76 crt_fabs(x) global() argument
77 crt_fabsf(x) global() argument
78 crt_fabsl(x) global() argument
80 crt_fabs(x) global() argument
81 crt_fabsf(x) global() argument
82 crt_fabsl(x) global() argument
84 crt_fabsf128(x) global() argument
86 crt_fabsf128(x) global() argument
91 crt_fmaxl(x,y) global() argument
93 crt_fmaxl(x,y) global() argument
97 crt_logbl(x) global() argument
99 crt_logbl(x) global() argument
103 crt_scalbnl(x,y) global() argument
105 crt_scalbnl(x,y) global() argument
[all...]
/llvm-project/clang/test/Analysis/
H A Dtest-after-div-zero.c6 void err_eq(int x) { in err_eq()
11 void err_eq2(int x) { in err_eq2()
16 void err_ne(int x) { in err_ne()
21 void err_ge(int x) { in err_ge()
26 void err_le(int x) { in err_le()
31 void err_yes(int x) { in err_yes()
35 void err_not(int x) { in err_not()
40 void err_pnot(int x) { in err_pnot()
46 void err_pnot2(int x) { in err_pnot2()
52 void err_ppnot(int x) { in err_ppnot()
[all …]
/llvm-project/flang/test/Lower/
H A Ddummy-argument-assumed-shape-optional.f9019 subroutine test_assumed_shape_to_contiguous(x) argument
20 real :: x(:) local
48 subroutine test_assumed_shape_contiguous_to_contiguous(x) argument
63 subroutine test_assumed_shape_opt_to_contiguous(x) argument
64 real, optional :: x(:) local
92 subroutine test_assumed_shape_contiguous_opt_to_contiguous(x) argument
108 subroutine test_assumed_shape_to_contiguous_opt(x) argument
109 real :: x(:) local
137 subroutine test_assumed_shape_contiguous_to_contiguous_opt(x) argument
152 subroutine test_assumed_shape_opt_to_contiguous_opt(x) argument
[all …]
/llvm-project/flang/test/HLFIR/
H A Dassumed-type-actual-args.f905 subroutine test1(x) argument
8 type(*) :: x local
11 type(*) :: x local
15 subroutine test2(x) argument
18 type(*) :: x(*) local
21 type(*) :: x(*) local
25 subroutine test3(x) argument
28 type(*) :: x(:) local
31 type(*) :: x(:) local
35 subroutine test4(x) argument
[all …]
/llvm-project/mlir/python/mlir/
H A Dir.py26 return AffineMapAttr.get(x) argument
31 return IntegerSetAttr.get(x) argument
36 return BoolAttr.get(x, context=context) argument
41 return DictAttr.get(x, context=context) argument
46 return IntegerAttr.get(IndexType.get(context=context), x) argument
21 _affineMapAttr(x, context) global() argument
51 _i16Attr(x, context) global() argument
56 _i32Attr(x, context) global() argument
61 _i64Attr(x, context) global() argument
66 _si1Attr(x, context) global() argument
71 _si8Attr(x, context) global() argument
76 _si16Attr(x, context) global() argument
81 _si32Attr(x, context) global() argument
86 _si64Attr(x, context) global() argument
91 _ui1Attr(x, context) global() argument
96 _ui8Attr(x, context) global() argument
101 _ui16Attr(x, context) global() argument
106 _ui32Attr(x, context) global() argument
111 _ui64Attr(x, context) global() argument
116 _f32Attr(x, context) global() argument
121 _f64Attr(x, context) global() argument
126 _stringAttr(x, context) global() argument
131 _symbolNameAttr(x, context) global() argument
136 _symbolRefAttr(x, context) global() argument
144 _flatSymbolRefAttr(x, context) global() argument
149 _unitAttr(x, context) global() argument
157 _arrayAttr(x, context) global() argument
162 _affineMapArrayAttr(x, context) global() argument
167 _boolArrayAttr(x, context) global() argument
172 _dictArrayAttr(x, context) global() argument
177 _flatSymbolRefArrayAttr(x, context) global() argument
182 _i32ArrayAttr(x, context) global() argument
187 _i64ArrayAttr(x, context) global() argument
192 _i64SmallVectorArrayAttr(x, context) global() argument
197 _indexListArrayAttr(x, context) global() argument
202 _f32ArrayAttr(x, context) global() argument
207 _f64ArrayAttr(x, context) global() argument
212 _strArrayAttr(x, context) global() argument
217 _symbolRefArrayAttr(x, context) global() argument
222 _denseF32ArrayAttr(x, context) global() argument
227 _denseF64ArrayAttr(x, context) global() argument
232 _denseI8ArrayAttr(x, context) global() argument
237 _denseI16ArrayAttr(x, context) global() argument
242 _denseI32ArrayAttr(x, context) global() argument
247 _denseI64ArrayAttr(x, context) global() argument
252 _denseBoolArrayAttr(x, context) global() argument
257 _typeAttr(x, context) global() argument
262 _typeArrayAttr(x, context) global() argument
267 _memref_type_attr(x, context) global() argument
275 _f64ElementsAttr(x, context) global() argument
283 _i32ElementsAttr(x, context) global() argument
291 _i64ElementsAttr(x, context) global() argument
299 _indexElementsAttr(x, context) global() argument
[all...]
/llvm-project/clang/test/CodeGen/
H A Dcatch-implicit-integer-arithmetic-value-change-basics.c22 unsigned int convert_unsigned_int_to_unsigned_int(unsigned int x) { in convert_unsigned_int_to_unsigned_int()
28 unsigned char convert_unsigned_char_to_unsigned_char(unsigned char x) { in convert_unsigned_char_to_unsigned_char()
34 signed int convert_signed_int_to_signed_int(signed int x) { in convert_signed_int_to_signed_int()
40 signed char convert_signed_char_to_signed_char(signed char x) { in convert_signed_char_to_signed_char()
46 unsigned char convert_unsigned_int_to_unsigned_char(unsigned int x) { in convert_unsigned_int_to_unsigned_char()
52 unsigned int convert_unsigned_char_to_unsigned_int(unsigned char x) { in convert_unsigned_char_to_unsigned_int()
58 signed int convert_unsigned_char_to_signed_int(unsigned char x) { in convert_unsigned_char_to_signed_int()
64 signed int convert_signed_char_to_signed_int(signed char x) { in convert_signed_char_to_signed_int()
70 signed int convert_unsigned_int_to_signed_int(unsigned int x) { in convert_unsigned_int_to_signed_int()
77 unsigned int convert_signed_int_to_unsigned_int(signed int x) { in convert_signed_int_to_unsigned_int()
[all …]
H A Dcatch-implicit-unsigned-integer-truncations-basics.c15 unsigned int convert_unsigned_int_to_unsigned_int(unsigned int x) { in convert_unsigned_int_to_unsigned_int()
21 unsigned char convert_unsigned_char_to_unsigned_char(unsigned char x) { in convert_unsigned_char_to_unsigned_char()
27 signed int convert_signed_int_to_signed_int(signed int x) { in convert_signed_int_to_signed_int()
33 signed char convert_signed_char_to_signed_char(signed char x) { in convert_signed_char_to_signed_char()
39 unsigned char convert_unsigned_int_to_unsigned_char(unsigned int x) { in convert_unsigned_int_to_unsigned_char()
46 unsigned int convert_unsigned_char_to_unsigned_int(unsigned char x) { in convert_unsigned_char_to_unsigned_int()
52 signed int convert_unsigned_char_to_signed_int(unsigned char x) { in convert_unsigned_char_to_signed_int()
58 signed int convert_signed_char_to_signed_int(signed char x) { in convert_signed_char_to_signed_int()
64 signed int convert_unsigned_int_to_signed_int(unsigned int x) { in convert_unsigned_int_to_signed_int()
70 unsigned int convert_signed_int_to_unsigned_int(signed int x) { in convert_signed_int_to_unsigned_int()
[all …]
H A Dcatch-implicit-signed-integer-truncations-basics.c17 unsigned int convert_unsigned_int_to_unsigned_int(unsigned int x) { in convert_unsigned_int_to_unsigned_int()
23 unsigned char convert_unsigned_char_to_unsigned_char(unsigned char x) { in convert_unsigned_char_to_unsigned_char()
29 signed int convert_signed_int_to_signed_int(signed int x) { in convert_signed_int_to_signed_int()
35 signed char convert_signed_char_to_signed_char(signed char x) { in convert_signed_char_to_signed_char()
41 unsigned char convert_unsigned_int_to_unsigned_char(unsigned int x) { in convert_unsigned_int_to_unsigned_char()
47 unsigned int convert_unsigned_char_to_unsigned_int(unsigned char x) { in convert_unsigned_char_to_unsigned_int()
53 signed int convert_unsigned_char_to_signed_int(unsigned char x) { in convert_unsigned_char_to_signed_int()
59 signed int convert_signed_char_to_signed_int(signed char x) { in convert_signed_char_to_signed_int()
65 signed int convert_unsigned_int_to_signed_int(unsigned int x) { in convert_unsigned_int_to_signed_int()
71 unsigned int convert_signed_int_to_unsigned_int(signed int x) { in convert_signed_int_to_unsigned_int()
[all …]

12345678910>>...208