Symbol: typeof
crypto/dist/ipsec-tools/src/racoon/schedule.h
63
const typeof( ((type *)0)->member ) *__mptr = (ptr); \
sbin/efi/devpath3.c
960
seriallen = p->hdr.Length - offsetof(typeof(*p), SerialNum);
sys/arch/arm/gemini/gemini_reg.h
189
# define _LPCHC_ID_DEVICE(r) ((typeof(r))(((r) & LPCHC_ID_DEVICE) >> 8))
sys/arch/arm/gemini/gemini_reg.h
190
# define _LPCHC_ID_REV(r) ((typeof(r))(((r) & LPCHC_ID_REV) >> 0))
sys/arch/hpc/include/debug.h
139
__dbg_bit_print((a), sizeof(typeof(a)), 0, 0, NULL, \
sys/arch/hpc/include/debug.h
144
__dbg_bit_print((a), sizeof(typeof(a)), 0, 0, (m), \
sys/arch/hpc/include/debug.h
149
__dbg_bit_print((a), sizeof(typeof(a)), 0, 0, NULL, \
sys/arch/playstation2/ee/sif.c
63
typeof(x) x_ = x; \
sys/dev/ipmi.c
1121
__CTASSERT(offsetof(typeof(u.msg), data) == 2);
sys/dev/ipmi.c
1142
memcpy(buffer, u.msg.data, len - offsetof(typeof(u.msg), data));
sys/lib/libkern/libkern.h
262
#define CTASSERT_SIGNED(x) __CTASSERT(((typeof(x))-1) < 0)
sys/lib/libkern/libkern.h
265
#define CTASSERT_UNSIGNED(x) __CTASSERT(((typeof(x))-1) >= 0)
tests/include/t_stddef.c
100
ATF_CHECK(__builtin_types_compatible_p(ptrdiff_t, typeof(p - q)));
tests/include/t_stddef.c
101
ATF_CHECK(__builtin_types_compatible_p(size_t, typeof(sizeof(p))));
tests/include/t_stddef.c
103
ATF_CHECK(__builtin_types_compatible_p(nullptr_t, typeof(nullptr)));
tests/usr.bin/xlint/lint1/d_cast_typeof.c
15
((char *)&((typeof(hole))0)->list) :
tests/usr.bin/xlint/lint1/d_cast_typeof.c
16
((char *)&((typeof(*hole) *)0)->list);
tests/usr.bin/xlint/lint1/decl.c
153
sizeof(const typeof(plain_char)) +
tests/usr.bin/xlint/lint1/decl.c
154
sizeof(const typeof(signed_char)) +
tests/usr.bin/xlint/lint1/decl.c
155
sizeof(const typeof(unsigned_char)) +
tests/usr.bin/xlint/lint1/decl.c
156
sizeof(const typeof(signed_short)) +
tests/usr.bin/xlint/lint1/decl.c
157
sizeof(const typeof(unsigned_short)) +
tests/usr.bin/xlint/lint1/decl.c
158
sizeof(const typeof(signed_int)) +
tests/usr.bin/xlint/lint1/decl.c
159
sizeof(const typeof(unsigned_int)) +
tests/usr.bin/xlint/lint1/decl.c
160
sizeof(const typeof(signed_long)) +
tests/usr.bin/xlint/lint1/decl.c
161
sizeof(const typeof(unsigned_long)) +
tests/usr.bin/xlint/lint1/decl.c
162
sizeof(const typeof(unnamed_struct));
tests/usr.bin/xlint/lint1/gcc_typeof.c
12
void take_double(typeof(0.0));
tests/usr.bin/xlint/lint1/gcc_typeof.c
15
typeof(0.0)(
tests/usr.bin/xlint/lint1/gcc_typeof.c
16
typeof(0.0)
tests/usr.bin/xlint/lint1/msg_132.c
24
typedef typeof(sizeof(0)) size_t;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1000
double_struct_ptr = (typeof(double_struct_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1002
double_struct_ptr = (typeof(double_struct_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1005
char_union_ptr = (typeof(char_union_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1006
char_union_ptr = (typeof(char_union_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1008
char_union_ptr = (typeof(char_union_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1009
char_union_ptr = (typeof(char_union_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
101
bool_ptr = (typeof(bool_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1011
char_union_ptr = (typeof(char_union_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1013
char_union_ptr = (typeof(char_union_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1015
char_union_ptr = (typeof(char_union_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1017
char_union_ptr = (typeof(char_union_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1019
char_union_ptr = (typeof(char_union_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1021
char_union_ptr = (typeof(char_union_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1023
char_union_ptr = (typeof(char_union_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1025
char_union_ptr = (typeof(char_union_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1027
char_union_ptr = (typeof(char_union_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1029
char_union_ptr = (typeof(char_union_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
103
bool_ptr = (typeof(bool_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1031
char_union_ptr = (typeof(char_union_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1033
char_union_ptr = (typeof(char_union_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1035
char_union_ptr = (typeof(char_union_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1037
char_union_ptr = (typeof(char_union_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1038
char_union_ptr = (typeof(char_union_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1040
char_union_ptr = (typeof(char_union_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1042
char_union_ptr = (typeof(char_union_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1043
char_union_ptr = (typeof(char_union_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1045
char_union_ptr = (typeof(char_union_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1047
char_union_ptr = (typeof(char_union_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1049
char_union_ptr = (typeof(char_union_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
105
bool_ptr = (typeof(bool_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1051
char_union_ptr = (typeof(char_union_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1054
double_union_ptr = (typeof(double_union_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1055
double_union_ptr = (typeof(double_union_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1057
double_union_ptr = (typeof(double_union_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1058
double_union_ptr = (typeof(double_union_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1060
double_union_ptr = (typeof(double_union_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1062
double_union_ptr = (typeof(double_union_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1064
double_union_ptr = (typeof(double_union_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1066
double_union_ptr = (typeof(double_union_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1068
double_union_ptr = (typeof(double_union_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
107
bool_ptr = (typeof(bool_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1070
double_union_ptr = (typeof(double_union_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1072
double_union_ptr = (typeof(double_union_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1074
double_union_ptr = (typeof(double_union_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1076
double_union_ptr = (typeof(double_union_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1077
double_union_ptr = (typeof(double_union_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1079
double_union_ptr = (typeof(double_union_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1081
double_union_ptr = (typeof(double_union_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1083
double_union_ptr = (typeof(double_union_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1085
double_union_ptr = (typeof(double_union_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1086
double_union_ptr = (typeof(double_union_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1088
double_union_ptr = (typeof(double_union_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
109
bool_ptr = (typeof(bool_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1090
double_union_ptr = (typeof(double_union_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1092
double_union_ptr = (typeof(double_union_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1093
double_union_ptr = (typeof(double_union_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1095
double_union_ptr = (typeof(double_union_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1096
double_union_ptr = (typeof(double_union_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1098
double_union_ptr = (typeof(double_union_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1101
enum_ptr = (typeof(enum_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1102
enum_ptr = (typeof(enum_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1104
enum_ptr = (typeof(enum_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1105
enum_ptr = (typeof(enum_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1107
enum_ptr = (typeof(enum_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1109
enum_ptr = (typeof(enum_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
111
bool_ptr = (typeof(bool_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1110
enum_ptr = (typeof(enum_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1111
enum_ptr = (typeof(enum_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1112
enum_ptr = (typeof(enum_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1113
enum_ptr = (typeof(enum_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1115
enum_ptr = (typeof(enum_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1117
enum_ptr = (typeof(enum_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1119
enum_ptr = (typeof(enum_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1121
enum_ptr = (typeof(enum_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1123
enum_ptr = (typeof(enum_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1125
enum_ptr = (typeof(enum_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1127
enum_ptr = (typeof(enum_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1129
enum_ptr = (typeof(enum_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
113
bool_ptr = (typeof(bool_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1130
enum_ptr = (typeof(enum_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1132
enum_ptr = (typeof(enum_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1134
enum_ptr = (typeof(enum_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1136
enum_ptr = (typeof(enum_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1138
enum_ptr = (typeof(enum_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1139
enum_ptr = (typeof(enum_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1141
enum_ptr = (typeof(enum_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1143
enum_ptr = (typeof(enum_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1146
double_array_ptr = (typeof(double_array_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1147
double_array_ptr = (typeof(double_array_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1149
double_array_ptr = (typeof(double_array_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
115
char_ptr = (typeof(char_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1150
double_array_ptr = (typeof(double_array_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1152
double_array_ptr = (typeof(double_array_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1154
double_array_ptr = (typeof(double_array_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1156
double_array_ptr = (typeof(double_array_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1158
double_array_ptr = (typeof(double_array_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
116
char_ptr = (typeof(char_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1160
double_array_ptr = (typeof(double_array_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1162
double_array_ptr = (typeof(double_array_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1164
double_array_ptr = (typeof(double_array_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1166
double_array_ptr = (typeof(double_array_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1168
double_array_ptr = (typeof(double_array_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1169
double_array_ptr = (typeof(double_array_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
117
char_ptr = (typeof(char_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1170
double_array_ptr = (typeof(double_array_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1172
double_array_ptr = (typeof(double_array_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1174
double_array_ptr = (typeof(double_array_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1176
double_array_ptr = (typeof(double_array_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1177
double_array_ptr = (typeof(double_array_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1179
double_array_ptr = (typeof(double_array_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
118
char_ptr = (typeof(char_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1181
double_array_ptr = (typeof(double_array_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1183
double_array_ptr = (typeof(double_array_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1184
double_array_ptr = (typeof(double_array_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1186
double_array_ptr = (typeof(double_array_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1187
double_array_ptr = (typeof(double_array_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1189
double_array_ptr = (typeof(double_array_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
119
char_ptr = (typeof(char_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1192
func_ptr = (typeof(func_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1194
func_ptr = (typeof(func_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1196
func_ptr = (typeof(func_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1198
func_ptr = (typeof(func_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
120
char_ptr = (typeof(char_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1200
func_ptr = (typeof(func_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1202
func_ptr = (typeof(func_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1204
func_ptr = (typeof(func_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1206
func_ptr = (typeof(func_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1208
func_ptr = (typeof(func_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
121
char_ptr = (typeof(char_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1210
func_ptr = (typeof(func_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1212
func_ptr = (typeof(func_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1214
func_ptr = (typeof(func_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1216
func_ptr = (typeof(func_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1218
func_ptr = (typeof(func_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
122
char_ptr = (typeof(char_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1220
func_ptr = (typeof(func_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1222
func_ptr = (typeof(func_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1224
func_ptr = (typeof(func_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1226
func_ptr = (typeof(func_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1227
func_ptr = (typeof(func_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1229
func_ptr = (typeof(func_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
123
char_ptr = (typeof(char_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1231
func_ptr = (typeof(func_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1233
func_ptr = (typeof(func_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1235
func_ptr = (typeof(func_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1237
func_ptr = (typeof(func_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1239
func_ptr = (typeof(func_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
124
char_ptr = (typeof(char_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
1240
func_ptr = (typeof(func_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
125
char_ptr = (typeof(char_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
126
char_ptr = (typeof(char_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
127
char_ptr = (typeof(char_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
128
char_ptr = (typeof(char_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
129
char_ptr = (typeof(char_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
130
char_ptr = (typeof(char_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
131
char_ptr = (typeof(char_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
132
char_ptr = (typeof(char_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
133
char_ptr = (typeof(char_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
134
char_ptr = (typeof(char_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
135
char_ptr = (typeof(char_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
136
char_ptr = (typeof(char_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
137
char_ptr = (typeof(char_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
138
char_ptr = (typeof(char_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
139
char_ptr = (typeof(char_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
141
char_ptr = (typeof(char_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
144
schar_ptr = (typeof(schar_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
145
schar_ptr = (typeof(schar_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
146
schar_ptr = (typeof(schar_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
147
schar_ptr = (typeof(schar_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
149
schar_ptr = (typeof(schar_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
151
schar_ptr = (typeof(schar_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
153
schar_ptr = (typeof(schar_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
155
schar_ptr = (typeof(schar_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
157
schar_ptr = (typeof(schar_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
159
schar_ptr = (typeof(schar_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
161
schar_ptr = (typeof(schar_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
163
schar_ptr = (typeof(schar_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
165
schar_ptr = (typeof(schar_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
167
schar_ptr = (typeof(schar_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
169
schar_ptr = (typeof(schar_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
171
schar_ptr = (typeof(schar_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
173
schar_ptr = (typeof(schar_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
175
schar_ptr = (typeof(schar_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
176
schar_ptr = (typeof(schar_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
178
schar_ptr = (typeof(schar_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
180
schar_ptr = (typeof(schar_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
182
schar_ptr = (typeof(schar_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
184
schar_ptr = (typeof(schar_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
186
schar_ptr = (typeof(schar_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
188
schar_ptr = (typeof(schar_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
190
schar_ptr = (typeof(schar_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
192
uchar_ptr = (typeof(uchar_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
193
uchar_ptr = (typeof(uchar_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
194
uchar_ptr = (typeof(uchar_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
195
uchar_ptr = (typeof(uchar_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
196
uchar_ptr = (typeof(uchar_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
197
uchar_ptr = (typeof(uchar_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
198
uchar_ptr = (typeof(uchar_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
199
uchar_ptr = (typeof(uchar_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
200
uchar_ptr = (typeof(uchar_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
201
uchar_ptr = (typeof(uchar_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
202
uchar_ptr = (typeof(uchar_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
203
uchar_ptr = (typeof(uchar_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
204
uchar_ptr = (typeof(uchar_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
205
uchar_ptr = (typeof(uchar_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
206
uchar_ptr = (typeof(uchar_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
207
uchar_ptr = (typeof(uchar_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
208
uchar_ptr = (typeof(uchar_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
209
uchar_ptr = (typeof(uchar_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
210
uchar_ptr = (typeof(uchar_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
211
uchar_ptr = (typeof(uchar_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
212
uchar_ptr = (typeof(uchar_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
213
uchar_ptr = (typeof(uchar_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
214
uchar_ptr = (typeof(uchar_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
215
uchar_ptr = (typeof(uchar_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
216
uchar_ptr = (typeof(uchar_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
218
uchar_ptr = (typeof(uchar_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
221
short_ptr = (typeof(short_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
222
short_ptr = (typeof(short_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
224
short_ptr = (typeof(short_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
225
short_ptr = (typeof(short_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
226
short_ptr = (typeof(short_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
227
short_ptr = (typeof(short_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
229
short_ptr = (typeof(short_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
231
short_ptr = (typeof(short_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
233
short_ptr = (typeof(short_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
235
short_ptr = (typeof(short_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
237
short_ptr = (typeof(short_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
239
short_ptr = (typeof(short_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
241
short_ptr = (typeof(short_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
243
short_ptr = (typeof(short_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
245
short_ptr = (typeof(short_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
247
short_ptr = (typeof(short_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
249
short_ptr = (typeof(short_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
251
short_ptr = (typeof(short_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
252
short_ptr = (typeof(short_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
254
short_ptr = (typeof(short_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
256
short_ptr = (typeof(short_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
258
short_ptr = (typeof(short_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
260
short_ptr = (typeof(short_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
262
short_ptr = (typeof(short_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
264
short_ptr = (typeof(short_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
266
short_ptr = (typeof(short_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
269
ushort_ptr = (typeof(ushort_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
270
ushort_ptr = (typeof(ushort_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
272
ushort_ptr = (typeof(ushort_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
273
ushort_ptr = (typeof(ushort_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
274
ushort_ptr = (typeof(ushort_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
275
ushort_ptr = (typeof(ushort_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
277
ushort_ptr = (typeof(ushort_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
279
ushort_ptr = (typeof(ushort_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
281
ushort_ptr = (typeof(ushort_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
283
ushort_ptr = (typeof(ushort_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
285
ushort_ptr = (typeof(ushort_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
287
ushort_ptr = (typeof(ushort_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
289
ushort_ptr = (typeof(ushort_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
291
ushort_ptr = (typeof(ushort_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
293
ushort_ptr = (typeof(ushort_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
295
ushort_ptr = (typeof(ushort_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
297
ushort_ptr = (typeof(ushort_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
299
ushort_ptr = (typeof(ushort_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
300
ushort_ptr = (typeof(ushort_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
302
ushort_ptr = (typeof(ushort_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
304
ushort_ptr = (typeof(ushort_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
306
ushort_ptr = (typeof(ushort_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
308
ushort_ptr = (typeof(ushort_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
310
ushort_ptr = (typeof(ushort_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
312
ushort_ptr = (typeof(ushort_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
314
ushort_ptr = (typeof(ushort_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
317
int_ptr = (typeof(int_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
318
int_ptr = (typeof(int_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
320
int_ptr = (typeof(int_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
321
int_ptr = (typeof(int_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
323
int_ptr = (typeof(int_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
325
int_ptr = (typeof(int_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
326
int_ptr = (typeof(int_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
327
int_ptr = (typeof(int_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
328
int_ptr = (typeof(int_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
329
int_ptr = (typeof(int_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
331
int_ptr = (typeof(int_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
333
int_ptr = (typeof(int_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
335
int_ptr = (typeof(int_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
337
int_ptr = (typeof(int_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
339
int_ptr = (typeof(int_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
341
int_ptr = (typeof(int_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
343
int_ptr = (typeof(int_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
345
int_ptr = (typeof(int_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
346
int_ptr = (typeof(int_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
348
int_ptr = (typeof(int_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
350
int_ptr = (typeof(int_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
352
int_ptr = (typeof(int_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
354
int_ptr = (typeof(int_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
355
int_ptr = (typeof(int_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
357
int_ptr = (typeof(int_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
359
int_ptr = (typeof(int_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
362
uint_ptr = (typeof(uint_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
363
uint_ptr = (typeof(uint_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
365
uint_ptr = (typeof(uint_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
366
uint_ptr = (typeof(uint_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
368
uint_ptr = (typeof(uint_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
370
uint_ptr = (typeof(uint_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
371
uint_ptr = (typeof(uint_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
372
uint_ptr = (typeof(uint_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
373
uint_ptr = (typeof(uint_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
374
uint_ptr = (typeof(uint_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
376
uint_ptr = (typeof(uint_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
378
uint_ptr = (typeof(uint_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
380
uint_ptr = (typeof(uint_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
382
uint_ptr = (typeof(uint_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
384
uint_ptr = (typeof(uint_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
386
uint_ptr = (typeof(uint_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
388
uint_ptr = (typeof(uint_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
390
uint_ptr = (typeof(uint_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
391
uint_ptr = (typeof(uint_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
393
uint_ptr = (typeof(uint_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
395
uint_ptr = (typeof(uint_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
397
uint_ptr = (typeof(uint_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
399
uint_ptr = (typeof(uint_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
400
uint_ptr = (typeof(uint_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
402
uint_ptr = (typeof(uint_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
404
uint_ptr = (typeof(uint_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
407
long_ptr = (typeof(long_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
408
long_ptr = (typeof(long_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
410
long_ptr = (typeof(long_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
411
long_ptr = (typeof(long_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
413
long_ptr = (typeof(long_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
415
long_ptr = (typeof(long_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
416
long_ptr = (typeof(long_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
417
long_ptr = (typeof(long_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
418
long_ptr = (typeof(long_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
419
long_ptr = (typeof(long_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
421
long_ptr = (typeof(long_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
423
long_ptr = (typeof(long_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
425
long_ptr = (typeof(long_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
427
long_ptr = (typeof(long_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
429
long_ptr = (typeof(long_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
431
long_ptr = (typeof(long_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
433
long_ptr = (typeof(long_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
435
long_ptr = (typeof(long_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
436
long_ptr = (typeof(long_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
438
long_ptr = (typeof(long_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
440
long_ptr = (typeof(long_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
442
long_ptr = (typeof(long_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
444
long_ptr = (typeof(long_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
445
long_ptr = (typeof(long_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
447
long_ptr = (typeof(long_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
449
long_ptr = (typeof(long_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
452
ulong_ptr = (typeof(ulong_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
453
ulong_ptr = (typeof(ulong_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
455
ulong_ptr = (typeof(ulong_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
456
ulong_ptr = (typeof(ulong_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
458
ulong_ptr = (typeof(ulong_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
460
ulong_ptr = (typeof(ulong_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
461
ulong_ptr = (typeof(ulong_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
462
ulong_ptr = (typeof(ulong_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
463
ulong_ptr = (typeof(ulong_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
464
ulong_ptr = (typeof(ulong_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
466
ulong_ptr = (typeof(ulong_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
468
ulong_ptr = (typeof(ulong_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
470
ulong_ptr = (typeof(ulong_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
472
ulong_ptr = (typeof(ulong_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
474
ulong_ptr = (typeof(ulong_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
476
ulong_ptr = (typeof(ulong_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
478
ulong_ptr = (typeof(ulong_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
480
ulong_ptr = (typeof(ulong_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
481
ulong_ptr = (typeof(ulong_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
483
ulong_ptr = (typeof(ulong_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
485
ulong_ptr = (typeof(ulong_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
487
ulong_ptr = (typeof(ulong_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
489
ulong_ptr = (typeof(ulong_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
490
ulong_ptr = (typeof(ulong_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
492
ulong_ptr = (typeof(ulong_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
494
ulong_ptr = (typeof(ulong_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
497
llong_ptr = (typeof(llong_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
498
llong_ptr = (typeof(llong_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
500
llong_ptr = (typeof(llong_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
501
llong_ptr = (typeof(llong_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
503
llong_ptr = (typeof(llong_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
505
llong_ptr = (typeof(llong_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
507
llong_ptr = (typeof(llong_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
509
llong_ptr = (typeof(llong_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
511
llong_ptr = (typeof(llong_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
513
llong_ptr = (typeof(llong_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
514
llong_ptr = (typeof(llong_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
515
llong_ptr = (typeof(llong_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
517
llong_ptr = (typeof(llong_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
519
llong_ptr = (typeof(llong_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
521
llong_ptr = (typeof(llong_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
523
llong_ptr = (typeof(llong_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
525
llong_ptr = (typeof(llong_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
527
llong_ptr = (typeof(llong_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
528
llong_ptr = (typeof(llong_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
530
llong_ptr = (typeof(llong_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
532
llong_ptr = (typeof(llong_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
534
llong_ptr = (typeof(llong_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
536
llong_ptr = (typeof(llong_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
538
llong_ptr = (typeof(llong_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
540
llong_ptr = (typeof(llong_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
542
llong_ptr = (typeof(llong_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
545
ullong_ptr = (typeof(ullong_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
546
ullong_ptr = (typeof(ullong_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
548
ullong_ptr = (typeof(ullong_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
549
ullong_ptr = (typeof(ullong_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
551
ullong_ptr = (typeof(ullong_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
553
ullong_ptr = (typeof(ullong_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
555
ullong_ptr = (typeof(ullong_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
557
ullong_ptr = (typeof(ullong_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
559
ullong_ptr = (typeof(ullong_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
561
ullong_ptr = (typeof(ullong_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
562
ullong_ptr = (typeof(ullong_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
563
ullong_ptr = (typeof(ullong_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
565
ullong_ptr = (typeof(ullong_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
567
ullong_ptr = (typeof(ullong_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
569
ullong_ptr = (typeof(ullong_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
571
ullong_ptr = (typeof(ullong_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
573
ullong_ptr = (typeof(ullong_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
575
ullong_ptr = (typeof(ullong_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
576
ullong_ptr = (typeof(ullong_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
578
ullong_ptr = (typeof(ullong_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
580
ullong_ptr = (typeof(ullong_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
582
ullong_ptr = (typeof(ullong_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
584
ullong_ptr = (typeof(ullong_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
586
ullong_ptr = (typeof(ullong_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
588
ullong_ptr = (typeof(ullong_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
590
ullong_ptr = (typeof(ullong_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
593
float_ptr = (typeof(float_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
594
float_ptr = (typeof(float_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
596
float_ptr = (typeof(float_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
597
float_ptr = (typeof(float_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
599
float_ptr = (typeof(float_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
601
float_ptr = (typeof(float_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
603
float_ptr = (typeof(float_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
605
float_ptr = (typeof(float_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
607
float_ptr = (typeof(float_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
609
float_ptr = (typeof(float_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
611
float_ptr = (typeof(float_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
613
float_ptr = (typeof(float_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
614
float_ptr = (typeof(float_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
616
float_ptr = (typeof(float_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
618
float_ptr = (typeof(float_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
620
float_ptr = (typeof(float_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
622
float_ptr = (typeof(float_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
624
float_ptr = (typeof(float_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
625
float_ptr = (typeof(float_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
627
float_ptr = (typeof(float_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
629
float_ptr = (typeof(float_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
631
float_ptr = (typeof(float_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
633
float_ptr = (typeof(float_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
635
float_ptr = (typeof(float_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
637
float_ptr = (typeof(float_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
639
float_ptr = (typeof(float_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
642
double_ptr = (typeof(double_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
643
double_ptr = (typeof(double_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
645
double_ptr = (typeof(double_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
646
double_ptr = (typeof(double_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
648
double_ptr = (typeof(double_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
650
double_ptr = (typeof(double_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
652
double_ptr = (typeof(double_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
654
double_ptr = (typeof(double_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
656
double_ptr = (typeof(double_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
658
double_ptr = (typeof(double_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
66
bool_ptr = (typeof(bool_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
660
double_ptr = (typeof(double_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
662
double_ptr = (typeof(double_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
664
double_ptr = (typeof(double_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
665
double_ptr = (typeof(double_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
666
double_ptr = (typeof(double_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
668
double_ptr = (typeof(double_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
67
bool_ptr = (typeof(bool_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
670
double_ptr = (typeof(double_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
672
double_ptr = (typeof(double_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
673
double_ptr = (typeof(double_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
675
double_ptr = (typeof(double_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
677
double_ptr = (typeof(double_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
679
double_ptr = (typeof(double_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
680
double_ptr = (typeof(double_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
682
double_ptr = (typeof(double_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
683
double_ptr = (typeof(double_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
685
double_ptr = (typeof(double_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
688
ldouble_ptr = (typeof(ldouble_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
689
ldouble_ptr = (typeof(ldouble_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
69
bool_ptr = (typeof(bool_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
691
ldouble_ptr = (typeof(ldouble_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
692
ldouble_ptr = (typeof(ldouble_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
694
ldouble_ptr = (typeof(ldouble_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
696
ldouble_ptr = (typeof(ldouble_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
698
ldouble_ptr = (typeof(ldouble_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
70
bool_ptr = (typeof(bool_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
700
ldouble_ptr = (typeof(ldouble_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
702
ldouble_ptr = (typeof(ldouble_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
704
ldouble_ptr = (typeof(ldouble_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
706
ldouble_ptr = (typeof(ldouble_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
708
ldouble_ptr = (typeof(ldouble_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
710
ldouble_ptr = (typeof(ldouble_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
711
ldouble_ptr = (typeof(ldouble_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
712
ldouble_ptr = (typeof(ldouble_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
714
ldouble_ptr = (typeof(ldouble_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
716
ldouble_ptr = (typeof(ldouble_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
718
ldouble_ptr = (typeof(ldouble_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
719
ldouble_ptr = (typeof(ldouble_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
72
bool_ptr = (typeof(bool_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
721
ldouble_ptr = (typeof(ldouble_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
723
ldouble_ptr = (typeof(ldouble_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
725
ldouble_ptr = (typeof(ldouble_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
727
ldouble_ptr = (typeof(ldouble_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
729
ldouble_ptr = (typeof(ldouble_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
730
ldouble_ptr = (typeof(ldouble_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
732
ldouble_ptr = (typeof(ldouble_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
735
fcomplex_ptr = (typeof(fcomplex_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
736
fcomplex_ptr = (typeof(fcomplex_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
738
fcomplex_ptr = (typeof(fcomplex_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
739
fcomplex_ptr = (typeof(fcomplex_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
74
bool_ptr = (typeof(bool_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
741
fcomplex_ptr = (typeof(fcomplex_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
743
fcomplex_ptr = (typeof(fcomplex_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
745
fcomplex_ptr = (typeof(fcomplex_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
747
fcomplex_ptr = (typeof(fcomplex_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
749
fcomplex_ptr = (typeof(fcomplex_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
751
fcomplex_ptr = (typeof(fcomplex_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
753
fcomplex_ptr = (typeof(fcomplex_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
755
fcomplex_ptr = (typeof(fcomplex_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
757
fcomplex_ptr = (typeof(fcomplex_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
759
fcomplex_ptr = (typeof(fcomplex_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
76
bool_ptr = (typeof(bool_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
761
fcomplex_ptr = (typeof(fcomplex_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
762
fcomplex_ptr = (typeof(fcomplex_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
764
fcomplex_ptr = (typeof(fcomplex_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
766
fcomplex_ptr = (typeof(fcomplex_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
767
fcomplex_ptr = (typeof(fcomplex_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
769
fcomplex_ptr = (typeof(fcomplex_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
771
fcomplex_ptr = (typeof(fcomplex_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
773
fcomplex_ptr = (typeof(fcomplex_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
775
fcomplex_ptr = (typeof(fcomplex_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
777
fcomplex_ptr = (typeof(fcomplex_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
779
fcomplex_ptr = (typeof(fcomplex_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
78
bool_ptr = (typeof(bool_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
781
fcomplex_ptr = (typeof(fcomplex_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
784
dcomplex_ptr = (typeof(dcomplex_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
785
dcomplex_ptr = (typeof(dcomplex_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
787
dcomplex_ptr = (typeof(dcomplex_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
788
dcomplex_ptr = (typeof(dcomplex_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
790
dcomplex_ptr = (typeof(dcomplex_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
792
dcomplex_ptr = (typeof(dcomplex_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
794
dcomplex_ptr = (typeof(dcomplex_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
796
dcomplex_ptr = (typeof(dcomplex_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
798
dcomplex_ptr = (typeof(dcomplex_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
80
bool_ptr = (typeof(bool_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
800
dcomplex_ptr = (typeof(dcomplex_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
802
dcomplex_ptr = (typeof(dcomplex_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
804
dcomplex_ptr = (typeof(dcomplex_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
806
dcomplex_ptr = (typeof(dcomplex_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
808
dcomplex_ptr = (typeof(dcomplex_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
810
dcomplex_ptr = (typeof(dcomplex_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
812
dcomplex_ptr = (typeof(dcomplex_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
813
dcomplex_ptr = (typeof(dcomplex_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
814
dcomplex_ptr = (typeof(dcomplex_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
815
dcomplex_ptr = (typeof(dcomplex_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
817
dcomplex_ptr = (typeof(dcomplex_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
819
dcomplex_ptr = (typeof(dcomplex_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
82
bool_ptr = (typeof(bool_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
821
dcomplex_ptr = (typeof(dcomplex_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
823
dcomplex_ptr = (typeof(dcomplex_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
825
dcomplex_ptr = (typeof(dcomplex_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
827
dcomplex_ptr = (typeof(dcomplex_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
829
dcomplex_ptr = (typeof(dcomplex_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
832
lcomplex_ptr = (typeof(lcomplex_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
833
lcomplex_ptr = (typeof(lcomplex_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
835
lcomplex_ptr = (typeof(lcomplex_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
836
lcomplex_ptr = (typeof(lcomplex_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
838
lcomplex_ptr = (typeof(lcomplex_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
84
bool_ptr = (typeof(bool_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
840
lcomplex_ptr = (typeof(lcomplex_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
842
lcomplex_ptr = (typeof(lcomplex_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
844
lcomplex_ptr = (typeof(lcomplex_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
846
lcomplex_ptr = (typeof(lcomplex_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
848
lcomplex_ptr = (typeof(lcomplex_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
850
lcomplex_ptr = (typeof(lcomplex_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
852
lcomplex_ptr = (typeof(lcomplex_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
854
lcomplex_ptr = (typeof(lcomplex_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
856
lcomplex_ptr = (typeof(lcomplex_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
858
lcomplex_ptr = (typeof(lcomplex_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
86
bool_ptr = (typeof(bool_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
860
lcomplex_ptr = (typeof(lcomplex_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
861
lcomplex_ptr = (typeof(lcomplex_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
862
lcomplex_ptr = (typeof(lcomplex_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
863
lcomplex_ptr = (typeof(lcomplex_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
865
lcomplex_ptr = (typeof(lcomplex_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
867
lcomplex_ptr = (typeof(lcomplex_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
869
lcomplex_ptr = (typeof(lcomplex_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
871
lcomplex_ptr = (typeof(lcomplex_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
873
lcomplex_ptr = (typeof(lcomplex_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
875
lcomplex_ptr = (typeof(lcomplex_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
877
lcomplex_ptr = (typeof(lcomplex_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
879
void_ptr = (typeof(void_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
88
bool_ptr = (typeof(bool_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
880
void_ptr = (typeof(void_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
881
void_ptr = (typeof(void_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
882
void_ptr = (typeof(void_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
883
void_ptr = (typeof(void_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
884
void_ptr = (typeof(void_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
885
void_ptr = (typeof(void_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
886
void_ptr = (typeof(void_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
887
void_ptr = (typeof(void_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
888
void_ptr = (typeof(void_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
889
void_ptr = (typeof(void_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
890
void_ptr = (typeof(void_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
891
void_ptr = (typeof(void_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
892
void_ptr = (typeof(void_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
893
void_ptr = (typeof(void_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
894
void_ptr = (typeof(void_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
895
void_ptr = (typeof(void_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
896
void_ptr = (typeof(void_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
897
void_ptr = (typeof(void_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
898
void_ptr = (typeof(void_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
899
void_ptr = (typeof(void_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
90
bool_ptr = (typeof(bool_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
900
void_ptr = (typeof(void_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
901
void_ptr = (typeof(void_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
902
void_ptr = (typeof(void_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
903
void_ptr = (typeof(void_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
904
void_ptr = (typeof(void_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
907
char_struct_ptr = (typeof(char_struct_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
908
char_struct_ptr = (typeof(char_struct_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
910
char_struct_ptr = (typeof(char_struct_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
911
char_struct_ptr = (typeof(char_struct_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
913
char_struct_ptr = (typeof(char_struct_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
915
char_struct_ptr = (typeof(char_struct_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
917
char_struct_ptr = (typeof(char_struct_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
919
char_struct_ptr = (typeof(char_struct_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
92
bool_ptr = (typeof(bool_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
921
char_struct_ptr = (typeof(char_struct_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
923
char_struct_ptr = (typeof(char_struct_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
925
char_struct_ptr = (typeof(char_struct_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
927
char_struct_ptr = (typeof(char_struct_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
929
char_struct_ptr = (typeof(char_struct_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
931
char_struct_ptr = (typeof(char_struct_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
933
char_struct_ptr = (typeof(char_struct_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
935
char_struct_ptr = (typeof(char_struct_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
937
char_struct_ptr = (typeof(char_struct_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
939
char_struct_ptr = (typeof(char_struct_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
94
bool_ptr = (typeof(bool_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
940
char_struct_ptr = (typeof(char_struct_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
941
char_struct_ptr = (typeof(char_struct_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
943
char_struct_ptr = (typeof(char_struct_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
945
char_struct_ptr = (typeof(char_struct_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
947
char_struct_ptr = (typeof(char_struct_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
949
char_struct_ptr = (typeof(char_struct_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
951
char_struct_ptr = (typeof(char_struct_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
953
char_struct_ptr = (typeof(char_struct_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
956
double_struct_ptr = (typeof(double_struct_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
957
double_struct_ptr = (typeof(double_struct_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
959
double_struct_ptr = (typeof(double_struct_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
96
bool_ptr = (typeof(bool_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
960
double_struct_ptr = (typeof(double_struct_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
962
double_struct_ptr = (typeof(double_struct_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
964
double_struct_ptr = (typeof(double_struct_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
966
double_struct_ptr = (typeof(double_struct_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
968
double_struct_ptr = (typeof(double_struct_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
970
double_struct_ptr = (typeof(double_struct_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
972
double_struct_ptr = (typeof(double_struct_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
974
double_struct_ptr = (typeof(double_struct_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
976
double_struct_ptr = (typeof(double_struct_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
978
double_struct_ptr = (typeof(double_struct_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
98
bool_ptr = (typeof(bool_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
980
double_struct_ptr = (typeof(double_struct_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
982
double_struct_ptr = (typeof(double_struct_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
984
double_struct_ptr = (typeof(double_struct_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
986
double_struct_ptr = (typeof(double_struct_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
988
double_struct_ptr = (typeof(double_struct_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
989
double_struct_ptr = (typeof(double_struct_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
99
bool_ptr = (typeof(bool_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
991
double_struct_ptr = (typeof(double_struct_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
992
double_struct_ptr = (typeof(double_struct_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
994
double_struct_ptr = (typeof(double_struct_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
996
double_struct_ptr = (typeof(double_struct_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_ilp32_ldbl64.c
998
double_struct_ptr = (typeof(double_struct_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1001
double_struct_ptr = (typeof(double_struct_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1003
double_struct_ptr = (typeof(double_struct_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1005
double_struct_ptr = (typeof(double_struct_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1007
double_struct_ptr = (typeof(double_struct_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1009
double_struct_ptr = (typeof(double_struct_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
101
bool_ptr = (typeof(bool_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1012
char_union_ptr = (typeof(char_union_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1013
char_union_ptr = (typeof(char_union_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1015
char_union_ptr = (typeof(char_union_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1016
char_union_ptr = (typeof(char_union_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1018
char_union_ptr = (typeof(char_union_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1020
char_union_ptr = (typeof(char_union_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1022
char_union_ptr = (typeof(char_union_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1024
char_union_ptr = (typeof(char_union_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1026
char_union_ptr = (typeof(char_union_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1028
char_union_ptr = (typeof(char_union_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
103
bool_ptr = (typeof(bool_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1030
char_union_ptr = (typeof(char_union_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1032
char_union_ptr = (typeof(char_union_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1034
char_union_ptr = (typeof(char_union_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1036
char_union_ptr = (typeof(char_union_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1038
char_union_ptr = (typeof(char_union_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1040
char_union_ptr = (typeof(char_union_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1042
char_union_ptr = (typeof(char_union_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1044
char_union_ptr = (typeof(char_union_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1045
char_union_ptr = (typeof(char_union_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1047
char_union_ptr = (typeof(char_union_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1049
char_union_ptr = (typeof(char_union_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
105
bool_ptr = (typeof(bool_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1050
char_union_ptr = (typeof(char_union_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1052
char_union_ptr = (typeof(char_union_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1054
char_union_ptr = (typeof(char_union_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1056
char_union_ptr = (typeof(char_union_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1058
char_union_ptr = (typeof(char_union_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1061
double_union_ptr = (typeof(double_union_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1062
double_union_ptr = (typeof(double_union_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1064
double_union_ptr = (typeof(double_union_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1065
double_union_ptr = (typeof(double_union_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1067
double_union_ptr = (typeof(double_union_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1069
double_union_ptr = (typeof(double_union_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
107
bool_ptr = (typeof(bool_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1071
double_union_ptr = (typeof(double_union_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1073
double_union_ptr = (typeof(double_union_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1075
double_union_ptr = (typeof(double_union_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1077
double_union_ptr = (typeof(double_union_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1079
double_union_ptr = (typeof(double_union_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1081
double_union_ptr = (typeof(double_union_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1083
double_union_ptr = (typeof(double_union_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1084
double_union_ptr = (typeof(double_union_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1086
double_union_ptr = (typeof(double_union_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1088
double_union_ptr = (typeof(double_union_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
109
bool_ptr = (typeof(bool_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1090
double_union_ptr = (typeof(double_union_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1092
double_union_ptr = (typeof(double_union_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1093
double_union_ptr = (typeof(double_union_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1095
double_union_ptr = (typeof(double_union_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1097
double_union_ptr = (typeof(double_union_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1099
double_union_ptr = (typeof(double_union_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1100
double_union_ptr = (typeof(double_union_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1102
double_union_ptr = (typeof(double_union_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1103
double_union_ptr = (typeof(double_union_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1105
double_union_ptr = (typeof(double_union_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1108
enum_ptr = (typeof(enum_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1109
enum_ptr = (typeof(enum_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
111
bool_ptr = (typeof(bool_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1111
enum_ptr = (typeof(enum_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1112
enum_ptr = (typeof(enum_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1114
enum_ptr = (typeof(enum_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1116
enum_ptr = (typeof(enum_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1117
enum_ptr = (typeof(enum_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1118
enum_ptr = (typeof(enum_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1120
enum_ptr = (typeof(enum_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1122
enum_ptr = (typeof(enum_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1124
enum_ptr = (typeof(enum_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1126
enum_ptr = (typeof(enum_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1128
enum_ptr = (typeof(enum_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
113
bool_ptr = (typeof(bool_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1130
enum_ptr = (typeof(enum_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1132
enum_ptr = (typeof(enum_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1134
enum_ptr = (typeof(enum_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1136
enum_ptr = (typeof(enum_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1138
enum_ptr = (typeof(enum_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1139
enum_ptr = (typeof(enum_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1141
enum_ptr = (typeof(enum_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1143
enum_ptr = (typeof(enum_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1145
enum_ptr = (typeof(enum_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1147
enum_ptr = (typeof(enum_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1148
enum_ptr = (typeof(enum_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
115
char_ptr = (typeof(char_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1150
enum_ptr = (typeof(enum_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1152
enum_ptr = (typeof(enum_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1155
double_array_ptr = (typeof(double_array_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1156
double_array_ptr = (typeof(double_array_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1158
double_array_ptr = (typeof(double_array_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1159
double_array_ptr = (typeof(double_array_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
116
char_ptr = (typeof(char_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1161
double_array_ptr = (typeof(double_array_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1163
double_array_ptr = (typeof(double_array_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1165
double_array_ptr = (typeof(double_array_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1167
double_array_ptr = (typeof(double_array_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1169
double_array_ptr = (typeof(double_array_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
117
char_ptr = (typeof(char_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1171
double_array_ptr = (typeof(double_array_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1173
double_array_ptr = (typeof(double_array_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1175
double_array_ptr = (typeof(double_array_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1177
double_array_ptr = (typeof(double_array_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1178
double_array_ptr = (typeof(double_array_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
118
char_ptr = (typeof(char_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1180
double_array_ptr = (typeof(double_array_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1182
double_array_ptr = (typeof(double_array_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1184
double_array_ptr = (typeof(double_array_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1186
double_array_ptr = (typeof(double_array_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1187
double_array_ptr = (typeof(double_array_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1189
double_array_ptr = (typeof(double_array_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
119
char_ptr = (typeof(char_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1191
double_array_ptr = (typeof(double_array_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1193
double_array_ptr = (typeof(double_array_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1194
double_array_ptr = (typeof(double_array_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1196
double_array_ptr = (typeof(double_array_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1197
double_array_ptr = (typeof(double_array_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1199
double_array_ptr = (typeof(double_array_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
120
char_ptr = (typeof(char_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1202
func_ptr = (typeof(func_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1204
func_ptr = (typeof(func_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1206
func_ptr = (typeof(func_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1208
func_ptr = (typeof(func_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
121
char_ptr = (typeof(char_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1210
func_ptr = (typeof(func_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1212
func_ptr = (typeof(func_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1214
func_ptr = (typeof(func_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1216
func_ptr = (typeof(func_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1218
func_ptr = (typeof(func_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
122
char_ptr = (typeof(char_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1220
func_ptr = (typeof(func_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1222
func_ptr = (typeof(func_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1224
func_ptr = (typeof(func_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1226
func_ptr = (typeof(func_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1228
func_ptr = (typeof(func_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
123
char_ptr = (typeof(char_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1230
func_ptr = (typeof(func_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1232
func_ptr = (typeof(func_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1234
func_ptr = (typeof(func_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1236
func_ptr = (typeof(func_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1237
func_ptr = (typeof(func_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1239
func_ptr = (typeof(func_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
124
char_ptr = (typeof(char_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1241
func_ptr = (typeof(func_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1243
func_ptr = (typeof(func_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1245
func_ptr = (typeof(func_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1247
func_ptr = (typeof(func_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1249
func_ptr = (typeof(func_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
125
char_ptr = (typeof(char_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
1250
func_ptr = (typeof(func_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
126
char_ptr = (typeof(char_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
127
char_ptr = (typeof(char_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
128
char_ptr = (typeof(char_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
129
char_ptr = (typeof(char_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
130
char_ptr = (typeof(char_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
131
char_ptr = (typeof(char_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
132
char_ptr = (typeof(char_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
133
char_ptr = (typeof(char_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
134
char_ptr = (typeof(char_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
135
char_ptr = (typeof(char_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
136
char_ptr = (typeof(char_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
137
char_ptr = (typeof(char_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
138
char_ptr = (typeof(char_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
139
char_ptr = (typeof(char_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
141
char_ptr = (typeof(char_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
144
schar_ptr = (typeof(schar_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
145
schar_ptr = (typeof(schar_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
146
schar_ptr = (typeof(schar_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
147
schar_ptr = (typeof(schar_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
149
schar_ptr = (typeof(schar_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
151
schar_ptr = (typeof(schar_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
153
schar_ptr = (typeof(schar_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
155
schar_ptr = (typeof(schar_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
157
schar_ptr = (typeof(schar_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
159
schar_ptr = (typeof(schar_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
161
schar_ptr = (typeof(schar_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
163
schar_ptr = (typeof(schar_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
165
schar_ptr = (typeof(schar_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
167
schar_ptr = (typeof(schar_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
169
schar_ptr = (typeof(schar_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
171
schar_ptr = (typeof(schar_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
173
schar_ptr = (typeof(schar_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
175
schar_ptr = (typeof(schar_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
176
schar_ptr = (typeof(schar_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
178
schar_ptr = (typeof(schar_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
180
schar_ptr = (typeof(schar_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
182
schar_ptr = (typeof(schar_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
184
schar_ptr = (typeof(schar_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
186
schar_ptr = (typeof(schar_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
188
schar_ptr = (typeof(schar_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
190
schar_ptr = (typeof(schar_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
192
uchar_ptr = (typeof(uchar_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
193
uchar_ptr = (typeof(uchar_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
194
uchar_ptr = (typeof(uchar_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
195
uchar_ptr = (typeof(uchar_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
196
uchar_ptr = (typeof(uchar_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
197
uchar_ptr = (typeof(uchar_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
198
uchar_ptr = (typeof(uchar_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
199
uchar_ptr = (typeof(uchar_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
200
uchar_ptr = (typeof(uchar_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
201
uchar_ptr = (typeof(uchar_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
202
uchar_ptr = (typeof(uchar_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
203
uchar_ptr = (typeof(uchar_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
204
uchar_ptr = (typeof(uchar_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
205
uchar_ptr = (typeof(uchar_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
206
uchar_ptr = (typeof(uchar_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
207
uchar_ptr = (typeof(uchar_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
208
uchar_ptr = (typeof(uchar_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
209
uchar_ptr = (typeof(uchar_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
210
uchar_ptr = (typeof(uchar_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
211
uchar_ptr = (typeof(uchar_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
212
uchar_ptr = (typeof(uchar_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
213
uchar_ptr = (typeof(uchar_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
214
uchar_ptr = (typeof(uchar_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
215
uchar_ptr = (typeof(uchar_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
216
uchar_ptr = (typeof(uchar_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
218
uchar_ptr = (typeof(uchar_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
221
short_ptr = (typeof(short_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
222
short_ptr = (typeof(short_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
224
short_ptr = (typeof(short_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
225
short_ptr = (typeof(short_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
226
short_ptr = (typeof(short_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
227
short_ptr = (typeof(short_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
229
short_ptr = (typeof(short_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
231
short_ptr = (typeof(short_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
233
short_ptr = (typeof(short_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
235
short_ptr = (typeof(short_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
237
short_ptr = (typeof(short_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
239
short_ptr = (typeof(short_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
241
short_ptr = (typeof(short_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
243
short_ptr = (typeof(short_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
245
short_ptr = (typeof(short_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
247
short_ptr = (typeof(short_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
249
short_ptr = (typeof(short_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
251
short_ptr = (typeof(short_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
252
short_ptr = (typeof(short_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
254
short_ptr = (typeof(short_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
256
short_ptr = (typeof(short_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
258
short_ptr = (typeof(short_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
260
short_ptr = (typeof(short_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
262
short_ptr = (typeof(short_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
264
short_ptr = (typeof(short_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
266
short_ptr = (typeof(short_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
269
ushort_ptr = (typeof(ushort_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
270
ushort_ptr = (typeof(ushort_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
272
ushort_ptr = (typeof(ushort_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
273
ushort_ptr = (typeof(ushort_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
274
ushort_ptr = (typeof(ushort_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
275
ushort_ptr = (typeof(ushort_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
277
ushort_ptr = (typeof(ushort_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
279
ushort_ptr = (typeof(ushort_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
281
ushort_ptr = (typeof(ushort_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
283
ushort_ptr = (typeof(ushort_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
285
ushort_ptr = (typeof(ushort_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
287
ushort_ptr = (typeof(ushort_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
289
ushort_ptr = (typeof(ushort_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
291
ushort_ptr = (typeof(ushort_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
293
ushort_ptr = (typeof(ushort_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
295
ushort_ptr = (typeof(ushort_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
297
ushort_ptr = (typeof(ushort_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
299
ushort_ptr = (typeof(ushort_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
300
ushort_ptr = (typeof(ushort_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
302
ushort_ptr = (typeof(ushort_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
304
ushort_ptr = (typeof(ushort_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
306
ushort_ptr = (typeof(ushort_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
308
ushort_ptr = (typeof(ushort_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
310
ushort_ptr = (typeof(ushort_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
312
ushort_ptr = (typeof(ushort_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
314
ushort_ptr = (typeof(ushort_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
317
int_ptr = (typeof(int_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
318
int_ptr = (typeof(int_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
320
int_ptr = (typeof(int_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
321
int_ptr = (typeof(int_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
323
int_ptr = (typeof(int_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
325
int_ptr = (typeof(int_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
326
int_ptr = (typeof(int_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
327
int_ptr = (typeof(int_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
329
int_ptr = (typeof(int_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
331
int_ptr = (typeof(int_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
333
int_ptr = (typeof(int_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
335
int_ptr = (typeof(int_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
337
int_ptr = (typeof(int_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
339
int_ptr = (typeof(int_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
341
int_ptr = (typeof(int_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
343
int_ptr = (typeof(int_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
345
int_ptr = (typeof(int_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
347
int_ptr = (typeof(int_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
348
int_ptr = (typeof(int_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
350
int_ptr = (typeof(int_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
352
int_ptr = (typeof(int_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
354
int_ptr = (typeof(int_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
356
int_ptr = (typeof(int_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
357
int_ptr = (typeof(int_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
359
int_ptr = (typeof(int_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
361
int_ptr = (typeof(int_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
364
uint_ptr = (typeof(uint_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
365
uint_ptr = (typeof(uint_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
367
uint_ptr = (typeof(uint_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
368
uint_ptr = (typeof(uint_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
370
uint_ptr = (typeof(uint_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
372
uint_ptr = (typeof(uint_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
373
uint_ptr = (typeof(uint_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
374
uint_ptr = (typeof(uint_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
376
uint_ptr = (typeof(uint_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
378
uint_ptr = (typeof(uint_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
380
uint_ptr = (typeof(uint_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
382
uint_ptr = (typeof(uint_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
384
uint_ptr = (typeof(uint_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
386
uint_ptr = (typeof(uint_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
388
uint_ptr = (typeof(uint_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
390
uint_ptr = (typeof(uint_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
392
uint_ptr = (typeof(uint_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
394
uint_ptr = (typeof(uint_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
395
uint_ptr = (typeof(uint_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
397
uint_ptr = (typeof(uint_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
399
uint_ptr = (typeof(uint_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
401
uint_ptr = (typeof(uint_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
403
uint_ptr = (typeof(uint_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
404
uint_ptr = (typeof(uint_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
406
uint_ptr = (typeof(uint_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
408
uint_ptr = (typeof(uint_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
411
long_ptr = (typeof(long_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
412
long_ptr = (typeof(long_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
414
long_ptr = (typeof(long_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
415
long_ptr = (typeof(long_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
417
long_ptr = (typeof(long_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
419
long_ptr = (typeof(long_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
421
long_ptr = (typeof(long_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
423
long_ptr = (typeof(long_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
424
long_ptr = (typeof(long_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
425
long_ptr = (typeof(long_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
426
long_ptr = (typeof(long_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
427
long_ptr = (typeof(long_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
429
long_ptr = (typeof(long_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
431
long_ptr = (typeof(long_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
433
long_ptr = (typeof(long_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
435
long_ptr = (typeof(long_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
437
long_ptr = (typeof(long_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
439
long_ptr = (typeof(long_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
440
long_ptr = (typeof(long_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
442
long_ptr = (typeof(long_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
444
long_ptr = (typeof(long_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
446
long_ptr = (typeof(long_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
448
long_ptr = (typeof(long_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
450
long_ptr = (typeof(long_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
452
long_ptr = (typeof(long_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
454
long_ptr = (typeof(long_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
457
ulong_ptr = (typeof(ulong_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
458
ulong_ptr = (typeof(ulong_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
460
ulong_ptr = (typeof(ulong_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
461
ulong_ptr = (typeof(ulong_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
463
ulong_ptr = (typeof(ulong_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
465
ulong_ptr = (typeof(ulong_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
467
ulong_ptr = (typeof(ulong_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
469
ulong_ptr = (typeof(ulong_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
470
ulong_ptr = (typeof(ulong_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
471
ulong_ptr = (typeof(ulong_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
472
ulong_ptr = (typeof(ulong_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
473
ulong_ptr = (typeof(ulong_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
475
ulong_ptr = (typeof(ulong_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
477
ulong_ptr = (typeof(ulong_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
479
ulong_ptr = (typeof(ulong_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
481
ulong_ptr = (typeof(ulong_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
483
ulong_ptr = (typeof(ulong_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
485
ulong_ptr = (typeof(ulong_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
486
ulong_ptr = (typeof(ulong_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
488
ulong_ptr = (typeof(ulong_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
490
ulong_ptr = (typeof(ulong_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
492
ulong_ptr = (typeof(ulong_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
494
ulong_ptr = (typeof(ulong_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
496
ulong_ptr = (typeof(ulong_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
498
ulong_ptr = (typeof(ulong_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
500
ulong_ptr = (typeof(ulong_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
503
llong_ptr = (typeof(llong_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
504
llong_ptr = (typeof(llong_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
506
llong_ptr = (typeof(llong_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
507
llong_ptr = (typeof(llong_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
509
llong_ptr = (typeof(llong_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
511
llong_ptr = (typeof(llong_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
513
llong_ptr = (typeof(llong_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
515
llong_ptr = (typeof(llong_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
516
llong_ptr = (typeof(llong_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
517
llong_ptr = (typeof(llong_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
518
llong_ptr = (typeof(llong_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
519
llong_ptr = (typeof(llong_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
521
llong_ptr = (typeof(llong_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
523
llong_ptr = (typeof(llong_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
525
llong_ptr = (typeof(llong_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
527
llong_ptr = (typeof(llong_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
529
llong_ptr = (typeof(llong_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
531
llong_ptr = (typeof(llong_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
532
llong_ptr = (typeof(llong_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
534
llong_ptr = (typeof(llong_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
536
llong_ptr = (typeof(llong_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
538
llong_ptr = (typeof(llong_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
540
llong_ptr = (typeof(llong_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
542
llong_ptr = (typeof(llong_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
544
llong_ptr = (typeof(llong_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
546
llong_ptr = (typeof(llong_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
549
ullong_ptr = (typeof(ullong_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
550
ullong_ptr = (typeof(ullong_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
552
ullong_ptr = (typeof(ullong_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
553
ullong_ptr = (typeof(ullong_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
555
ullong_ptr = (typeof(ullong_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
557
ullong_ptr = (typeof(ullong_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
559
ullong_ptr = (typeof(ullong_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
561
ullong_ptr = (typeof(ullong_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
562
ullong_ptr = (typeof(ullong_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
563
ullong_ptr = (typeof(ullong_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
564
ullong_ptr = (typeof(ullong_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
565
ullong_ptr = (typeof(ullong_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
567
ullong_ptr = (typeof(ullong_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
569
ullong_ptr = (typeof(ullong_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
571
ullong_ptr = (typeof(ullong_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
573
ullong_ptr = (typeof(ullong_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
575
ullong_ptr = (typeof(ullong_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
577
ullong_ptr = (typeof(ullong_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
578
ullong_ptr = (typeof(ullong_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
580
ullong_ptr = (typeof(ullong_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
582
ullong_ptr = (typeof(ullong_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
584
ullong_ptr = (typeof(ullong_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
586
ullong_ptr = (typeof(ullong_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
588
ullong_ptr = (typeof(ullong_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
590
ullong_ptr = (typeof(ullong_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
592
ullong_ptr = (typeof(ullong_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
595
float_ptr = (typeof(float_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
596
float_ptr = (typeof(float_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
598
float_ptr = (typeof(float_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
599
float_ptr = (typeof(float_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
601
float_ptr = (typeof(float_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
603
float_ptr = (typeof(float_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
605
float_ptr = (typeof(float_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
607
float_ptr = (typeof(float_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
609
float_ptr = (typeof(float_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
611
float_ptr = (typeof(float_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
613
float_ptr = (typeof(float_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
615
float_ptr = (typeof(float_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
616
float_ptr = (typeof(float_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
618
float_ptr = (typeof(float_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
620
float_ptr = (typeof(float_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
622
float_ptr = (typeof(float_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
624
float_ptr = (typeof(float_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
626
float_ptr = (typeof(float_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
627
float_ptr = (typeof(float_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
629
float_ptr = (typeof(float_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
631
float_ptr = (typeof(float_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
633
float_ptr = (typeof(float_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
635
float_ptr = (typeof(float_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
637
float_ptr = (typeof(float_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
639
float_ptr = (typeof(float_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
641
float_ptr = (typeof(float_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
644
double_ptr = (typeof(double_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
645
double_ptr = (typeof(double_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
647
double_ptr = (typeof(double_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
648
double_ptr = (typeof(double_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
650
double_ptr = (typeof(double_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
652
double_ptr = (typeof(double_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
654
double_ptr = (typeof(double_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
656
double_ptr = (typeof(double_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
658
double_ptr = (typeof(double_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
66
bool_ptr = (typeof(bool_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
660
double_ptr = (typeof(double_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
662
double_ptr = (typeof(double_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
664
double_ptr = (typeof(double_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
666
double_ptr = (typeof(double_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
667
double_ptr = (typeof(double_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
669
double_ptr = (typeof(double_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
67
bool_ptr = (typeof(bool_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
671
double_ptr = (typeof(double_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
673
double_ptr = (typeof(double_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
675
double_ptr = (typeof(double_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
676
double_ptr = (typeof(double_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
678
double_ptr = (typeof(double_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
680
double_ptr = (typeof(double_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
682
double_ptr = (typeof(double_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
683
double_ptr = (typeof(double_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
685
double_ptr = (typeof(double_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
686
double_ptr = (typeof(double_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
688
double_ptr = (typeof(double_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
69
bool_ptr = (typeof(bool_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
691
ldouble_ptr = (typeof(ldouble_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
692
ldouble_ptr = (typeof(ldouble_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
694
ldouble_ptr = (typeof(ldouble_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
695
ldouble_ptr = (typeof(ldouble_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
697
ldouble_ptr = (typeof(ldouble_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
699
ldouble_ptr = (typeof(ldouble_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
70
bool_ptr = (typeof(bool_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
701
ldouble_ptr = (typeof(ldouble_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
703
ldouble_ptr = (typeof(ldouble_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
705
ldouble_ptr = (typeof(ldouble_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
707
ldouble_ptr = (typeof(ldouble_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
709
ldouble_ptr = (typeof(ldouble_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
711
ldouble_ptr = (typeof(ldouble_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
713
ldouble_ptr = (typeof(ldouble_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
715
ldouble_ptr = (typeof(ldouble_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
716
ldouble_ptr = (typeof(ldouble_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
718
ldouble_ptr = (typeof(ldouble_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
72
bool_ptr = (typeof(bool_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
720
ldouble_ptr = (typeof(ldouble_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
722
ldouble_ptr = (typeof(ldouble_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
723
ldouble_ptr = (typeof(ldouble_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
725
ldouble_ptr = (typeof(ldouble_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
727
ldouble_ptr = (typeof(ldouble_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
729
ldouble_ptr = (typeof(ldouble_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
731
ldouble_ptr = (typeof(ldouble_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
733
ldouble_ptr = (typeof(ldouble_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
735
ldouble_ptr = (typeof(ldouble_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
737
ldouble_ptr = (typeof(ldouble_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
74
bool_ptr = (typeof(bool_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
740
fcomplex_ptr = (typeof(fcomplex_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
741
fcomplex_ptr = (typeof(fcomplex_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
743
fcomplex_ptr = (typeof(fcomplex_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
744
fcomplex_ptr = (typeof(fcomplex_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
746
fcomplex_ptr = (typeof(fcomplex_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
748
fcomplex_ptr = (typeof(fcomplex_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
750
fcomplex_ptr = (typeof(fcomplex_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
752
fcomplex_ptr = (typeof(fcomplex_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
754
fcomplex_ptr = (typeof(fcomplex_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
756
fcomplex_ptr = (typeof(fcomplex_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
758
fcomplex_ptr = (typeof(fcomplex_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
76
bool_ptr = (typeof(bool_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
760
fcomplex_ptr = (typeof(fcomplex_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
762
fcomplex_ptr = (typeof(fcomplex_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
764
fcomplex_ptr = (typeof(fcomplex_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
766
fcomplex_ptr = (typeof(fcomplex_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
767
fcomplex_ptr = (typeof(fcomplex_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
769
fcomplex_ptr = (typeof(fcomplex_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
771
fcomplex_ptr = (typeof(fcomplex_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
772
fcomplex_ptr = (typeof(fcomplex_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
774
fcomplex_ptr = (typeof(fcomplex_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
776
fcomplex_ptr = (typeof(fcomplex_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
778
fcomplex_ptr = (typeof(fcomplex_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
78
bool_ptr = (typeof(bool_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
780
fcomplex_ptr = (typeof(fcomplex_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
782
fcomplex_ptr = (typeof(fcomplex_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
784
fcomplex_ptr = (typeof(fcomplex_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
786
fcomplex_ptr = (typeof(fcomplex_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
789
dcomplex_ptr = (typeof(dcomplex_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
790
dcomplex_ptr = (typeof(dcomplex_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
792
dcomplex_ptr = (typeof(dcomplex_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
793
dcomplex_ptr = (typeof(dcomplex_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
795
dcomplex_ptr = (typeof(dcomplex_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
797
dcomplex_ptr = (typeof(dcomplex_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
799
dcomplex_ptr = (typeof(dcomplex_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
80
bool_ptr = (typeof(bool_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
801
dcomplex_ptr = (typeof(dcomplex_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
803
dcomplex_ptr = (typeof(dcomplex_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
805
dcomplex_ptr = (typeof(dcomplex_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
807
dcomplex_ptr = (typeof(dcomplex_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
809
dcomplex_ptr = (typeof(dcomplex_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
811
dcomplex_ptr = (typeof(dcomplex_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
813
dcomplex_ptr = (typeof(dcomplex_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
815
dcomplex_ptr = (typeof(dcomplex_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
817
dcomplex_ptr = (typeof(dcomplex_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
818
dcomplex_ptr = (typeof(dcomplex_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
82
bool_ptr = (typeof(bool_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
820
dcomplex_ptr = (typeof(dcomplex_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
821
dcomplex_ptr = (typeof(dcomplex_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
823
dcomplex_ptr = (typeof(dcomplex_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
825
dcomplex_ptr = (typeof(dcomplex_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
827
dcomplex_ptr = (typeof(dcomplex_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
829
dcomplex_ptr = (typeof(dcomplex_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
831
dcomplex_ptr = (typeof(dcomplex_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
833
dcomplex_ptr = (typeof(dcomplex_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
835
dcomplex_ptr = (typeof(dcomplex_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
838
lcomplex_ptr = (typeof(lcomplex_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
839
lcomplex_ptr = (typeof(lcomplex_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
84
bool_ptr = (typeof(bool_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
841
lcomplex_ptr = (typeof(lcomplex_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
842
lcomplex_ptr = (typeof(lcomplex_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
844
lcomplex_ptr = (typeof(lcomplex_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
846
lcomplex_ptr = (typeof(lcomplex_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
848
lcomplex_ptr = (typeof(lcomplex_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
850
lcomplex_ptr = (typeof(lcomplex_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
852
lcomplex_ptr = (typeof(lcomplex_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
854
lcomplex_ptr = (typeof(lcomplex_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
856
lcomplex_ptr = (typeof(lcomplex_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
858
lcomplex_ptr = (typeof(lcomplex_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
86
bool_ptr = (typeof(bool_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
860
lcomplex_ptr = (typeof(lcomplex_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
862
lcomplex_ptr = (typeof(lcomplex_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
864
lcomplex_ptr = (typeof(lcomplex_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
866
lcomplex_ptr = (typeof(lcomplex_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
868
lcomplex_ptr = (typeof(lcomplex_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
869
lcomplex_ptr = (typeof(lcomplex_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
870
lcomplex_ptr = (typeof(lcomplex_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
872
lcomplex_ptr = (typeof(lcomplex_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
874
lcomplex_ptr = (typeof(lcomplex_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
876
lcomplex_ptr = (typeof(lcomplex_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
878
lcomplex_ptr = (typeof(lcomplex_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
88
bool_ptr = (typeof(bool_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
880
lcomplex_ptr = (typeof(lcomplex_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
882
lcomplex_ptr = (typeof(lcomplex_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
884
lcomplex_ptr = (typeof(lcomplex_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
886
void_ptr = (typeof(void_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
887
void_ptr = (typeof(void_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
888
void_ptr = (typeof(void_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
889
void_ptr = (typeof(void_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
890
void_ptr = (typeof(void_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
891
void_ptr = (typeof(void_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
892
void_ptr = (typeof(void_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
893
void_ptr = (typeof(void_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
894
void_ptr = (typeof(void_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
895
void_ptr = (typeof(void_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
896
void_ptr = (typeof(void_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
897
void_ptr = (typeof(void_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
898
void_ptr = (typeof(void_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
899
void_ptr = (typeof(void_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
90
bool_ptr = (typeof(bool_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
900
void_ptr = (typeof(void_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
901
void_ptr = (typeof(void_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
902
void_ptr = (typeof(void_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
903
void_ptr = (typeof(void_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
904
void_ptr = (typeof(void_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
905
void_ptr = (typeof(void_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
906
void_ptr = (typeof(void_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
907
void_ptr = (typeof(void_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
908
void_ptr = (typeof(void_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
909
void_ptr = (typeof(void_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
910
void_ptr = (typeof(void_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
911
void_ptr = (typeof(void_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
914
char_struct_ptr = (typeof(char_struct_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
915
char_struct_ptr = (typeof(char_struct_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
917
char_struct_ptr = (typeof(char_struct_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
918
char_struct_ptr = (typeof(char_struct_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
92
bool_ptr = (typeof(bool_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
920
char_struct_ptr = (typeof(char_struct_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
922
char_struct_ptr = (typeof(char_struct_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
924
char_struct_ptr = (typeof(char_struct_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
926
char_struct_ptr = (typeof(char_struct_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
928
char_struct_ptr = (typeof(char_struct_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
930
char_struct_ptr = (typeof(char_struct_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
932
char_struct_ptr = (typeof(char_struct_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
934
char_struct_ptr = (typeof(char_struct_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
936
char_struct_ptr = (typeof(char_struct_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
938
char_struct_ptr = (typeof(char_struct_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
94
bool_ptr = (typeof(bool_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
940
char_struct_ptr = (typeof(char_struct_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
942
char_struct_ptr = (typeof(char_struct_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
944
char_struct_ptr = (typeof(char_struct_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
946
char_struct_ptr = (typeof(char_struct_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
947
char_struct_ptr = (typeof(char_struct_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
948
char_struct_ptr = (typeof(char_struct_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
950
char_struct_ptr = (typeof(char_struct_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
952
char_struct_ptr = (typeof(char_struct_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
954
char_struct_ptr = (typeof(char_struct_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
956
char_struct_ptr = (typeof(char_struct_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
958
char_struct_ptr = (typeof(char_struct_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
96
bool_ptr = (typeof(bool_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
960
char_struct_ptr = (typeof(char_struct_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
963
double_struct_ptr = (typeof(double_struct_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
964
double_struct_ptr = (typeof(double_struct_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
966
double_struct_ptr = (typeof(double_struct_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
967
double_struct_ptr = (typeof(double_struct_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
969
double_struct_ptr = (typeof(double_struct_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
971
double_struct_ptr = (typeof(double_struct_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
973
double_struct_ptr = (typeof(double_struct_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
975
double_struct_ptr = (typeof(double_struct_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
977
double_struct_ptr = (typeof(double_struct_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
979
double_struct_ptr = (typeof(double_struct_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
98
bool_ptr = (typeof(bool_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
981
double_struct_ptr = (typeof(double_struct_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
983
double_struct_ptr = (typeof(double_struct_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
985
double_struct_ptr = (typeof(double_struct_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
987
double_struct_ptr = (typeof(double_struct_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
989
double_struct_ptr = (typeof(double_struct_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
99
bool_ptr = (typeof(bool_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
991
double_struct_ptr = (typeof(double_struct_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
993
double_struct_ptr = (typeof(double_struct_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
995
double_struct_ptr = (typeof(double_struct_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
996
double_struct_ptr = (typeof(double_struct_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
998
double_struct_ptr = (typeof(double_struct_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_lp64_ldbl128.c
999
double_struct_ptr = (typeof(double_struct_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1000
double_struct_ptr = (typeof(double_struct_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1002
double_struct_ptr = (typeof(double_struct_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1004
double_struct_ptr = (typeof(double_struct_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1006
double_struct_ptr = (typeof(double_struct_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1007
double_struct_ptr = (typeof(double_struct_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1009
double_struct_ptr = (typeof(double_struct_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
101
bool_ptr = (typeof(bool_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1010
double_struct_ptr = (typeof(double_struct_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1012
double_struct_ptr = (typeof(double_struct_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1014
double_struct_ptr = (typeof(double_struct_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1016
double_struct_ptr = (typeof(double_struct_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1018
double_struct_ptr = (typeof(double_struct_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
102
bool_ptr = (typeof(bool_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1020
double_struct_ptr = (typeof(double_struct_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1023
char_union_ptr = (typeof(char_union_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1024
char_union_ptr = (typeof(char_union_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1026
char_union_ptr = (typeof(char_union_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1027
char_union_ptr = (typeof(char_union_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1029
char_union_ptr = (typeof(char_union_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1031
char_union_ptr = (typeof(char_union_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1033
char_union_ptr = (typeof(char_union_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1035
char_union_ptr = (typeof(char_union_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1037
char_union_ptr = (typeof(char_union_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1039
char_union_ptr = (typeof(char_union_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
104
bool_ptr = (typeof(bool_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1041
char_union_ptr = (typeof(char_union_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1043
char_union_ptr = (typeof(char_union_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1045
char_union_ptr = (typeof(char_union_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1047
char_union_ptr = (typeof(char_union_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1049
char_union_ptr = (typeof(char_union_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1051
char_union_ptr = (typeof(char_union_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1053
char_union_ptr = (typeof(char_union_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1055
char_union_ptr = (typeof(char_union_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1056
char_union_ptr = (typeof(char_union_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1058
char_union_ptr = (typeof(char_union_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
106
bool_ptr = (typeof(bool_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1060
char_union_ptr = (typeof(char_union_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1061
char_union_ptr = (typeof(char_union_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1063
char_union_ptr = (typeof(char_union_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1065
char_union_ptr = (typeof(char_union_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1067
char_union_ptr = (typeof(char_union_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1069
char_union_ptr = (typeof(char_union_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1072
double_union_ptr = (typeof(double_union_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1073
double_union_ptr = (typeof(double_union_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1075
double_union_ptr = (typeof(double_union_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1076
double_union_ptr = (typeof(double_union_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1078
double_union_ptr = (typeof(double_union_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
108
bool_ptr = (typeof(bool_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1080
double_union_ptr = (typeof(double_union_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1082
double_union_ptr = (typeof(double_union_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1084
double_union_ptr = (typeof(double_union_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1086
double_union_ptr = (typeof(double_union_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1088
double_union_ptr = (typeof(double_union_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1090
double_union_ptr = (typeof(double_union_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1092
double_union_ptr = (typeof(double_union_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1094
double_union_ptr = (typeof(double_union_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1095
double_union_ptr = (typeof(double_union_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1097
double_union_ptr = (typeof(double_union_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1099
double_union_ptr = (typeof(double_union_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
110
bool_ptr = (typeof(bool_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1101
double_union_ptr = (typeof(double_union_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1103
double_union_ptr = (typeof(double_union_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1104
double_union_ptr = (typeof(double_union_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1106
double_union_ptr = (typeof(double_union_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1108
double_union_ptr = (typeof(double_union_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1110
double_union_ptr = (typeof(double_union_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1111
double_union_ptr = (typeof(double_union_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1113
double_union_ptr = (typeof(double_union_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1114
double_union_ptr = (typeof(double_union_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1116
double_union_ptr = (typeof(double_union_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1119
enum_ptr = (typeof(enum_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
112
bool_ptr = (typeof(bool_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1120
enum_ptr = (typeof(enum_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1122
enum_ptr = (typeof(enum_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1123
enum_ptr = (typeof(enum_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1125
enum_ptr = (typeof(enum_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1127
enum_ptr = (typeof(enum_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1128
enum_ptr = (typeof(enum_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1129
enum_ptr = (typeof(enum_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1131
enum_ptr = (typeof(enum_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1133
enum_ptr = (typeof(enum_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1135
enum_ptr = (typeof(enum_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1137
enum_ptr = (typeof(enum_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1139
enum_ptr = (typeof(enum_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
114
bool_ptr = (typeof(bool_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1141
enum_ptr = (typeof(enum_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1143
enum_ptr = (typeof(enum_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1145
enum_ptr = (typeof(enum_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1147
enum_ptr = (typeof(enum_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1149
enum_ptr = (typeof(enum_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1150
enum_ptr = (typeof(enum_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1152
enum_ptr = (typeof(enum_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1154
enum_ptr = (typeof(enum_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1156
enum_ptr = (typeof(enum_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1158
enum_ptr = (typeof(enum_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1159
enum_ptr = (typeof(enum_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
116
bool_ptr = (typeof(bool_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1161
enum_ptr = (typeof(enum_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1163
enum_ptr = (typeof(enum_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1166
double_array_ptr = (typeof(double_array_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1167
double_array_ptr = (typeof(double_array_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1169
double_array_ptr = (typeof(double_array_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1170
double_array_ptr = (typeof(double_array_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1172
double_array_ptr = (typeof(double_array_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1174
double_array_ptr = (typeof(double_array_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1176
double_array_ptr = (typeof(double_array_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1178
double_array_ptr = (typeof(double_array_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
118
char_ptr = (typeof(char_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1180
double_array_ptr = (typeof(double_array_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1182
double_array_ptr = (typeof(double_array_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1184
double_array_ptr = (typeof(double_array_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1186
double_array_ptr = (typeof(double_array_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1188
double_array_ptr = (typeof(double_array_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1189
double_array_ptr = (typeof(double_array_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
119
char_ptr = (typeof(char_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1191
double_array_ptr = (typeof(double_array_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1193
double_array_ptr = (typeof(double_array_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1195
double_array_ptr = (typeof(double_array_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1197
double_array_ptr = (typeof(double_array_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1198
double_array_ptr = (typeof(double_array_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
120
char_ptr = (typeof(char_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1200
double_array_ptr = (typeof(double_array_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1202
double_array_ptr = (typeof(double_array_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1204
double_array_ptr = (typeof(double_array_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1205
double_array_ptr = (typeof(double_array_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1207
double_array_ptr = (typeof(double_array_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1208
double_array_ptr = (typeof(double_array_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
121
char_ptr = (typeof(char_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1210
double_array_ptr = (typeof(double_array_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1213
func_ptr = (typeof(func_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1215
func_ptr = (typeof(func_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1217
func_ptr = (typeof(func_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1219
func_ptr = (typeof(func_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
122
char_ptr = (typeof(char_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1221
func_ptr = (typeof(func_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1223
func_ptr = (typeof(func_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1225
func_ptr = (typeof(func_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1227
func_ptr = (typeof(func_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1229
func_ptr = (typeof(func_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
123
char_ptr = (typeof(char_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1231
func_ptr = (typeof(func_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1233
func_ptr = (typeof(func_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1235
func_ptr = (typeof(func_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1237
func_ptr = (typeof(func_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1239
func_ptr = (typeof(func_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
124
char_ptr = (typeof(char_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1241
func_ptr = (typeof(func_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1243
func_ptr = (typeof(func_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1245
func_ptr = (typeof(func_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1247
func_ptr = (typeof(func_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1248
func_ptr = (typeof(func_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
125
char_ptr = (typeof(char_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1250
func_ptr = (typeof(func_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1252
func_ptr = (typeof(func_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1254
func_ptr = (typeof(func_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1256
func_ptr = (typeof(func_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1258
func_ptr = (typeof(func_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
126
char_ptr = (typeof(char_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1260
func_ptr = (typeof(func_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
1261
func_ptr = (typeof(func_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
127
char_ptr = (typeof(char_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
128
char_ptr = (typeof(char_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
129
char_ptr = (typeof(char_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
130
char_ptr = (typeof(char_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
131
char_ptr = (typeof(char_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
132
char_ptr = (typeof(char_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
133
char_ptr = (typeof(char_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
134
char_ptr = (typeof(char_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
135
char_ptr = (typeof(char_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
136
char_ptr = (typeof(char_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
137
char_ptr = (typeof(char_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
138
char_ptr = (typeof(char_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
139
char_ptr = (typeof(char_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
140
char_ptr = (typeof(char_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
141
char_ptr = (typeof(char_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
142
char_ptr = (typeof(char_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
144
char_ptr = (typeof(char_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
147
schar_ptr = (typeof(schar_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
148
schar_ptr = (typeof(schar_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
149
schar_ptr = (typeof(schar_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
150
schar_ptr = (typeof(schar_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
152
schar_ptr = (typeof(schar_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
154
schar_ptr = (typeof(schar_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
156
schar_ptr = (typeof(schar_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
158
schar_ptr = (typeof(schar_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
160
schar_ptr = (typeof(schar_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
162
schar_ptr = (typeof(schar_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
164
schar_ptr = (typeof(schar_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
166
schar_ptr = (typeof(schar_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
168
schar_ptr = (typeof(schar_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
170
schar_ptr = (typeof(schar_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
172
schar_ptr = (typeof(schar_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
174
schar_ptr = (typeof(schar_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
176
schar_ptr = (typeof(schar_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
178
schar_ptr = (typeof(schar_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
179
schar_ptr = (typeof(schar_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
181
schar_ptr = (typeof(schar_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
183
schar_ptr = (typeof(schar_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
185
schar_ptr = (typeof(schar_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
187
schar_ptr = (typeof(schar_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
189
schar_ptr = (typeof(schar_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
191
schar_ptr = (typeof(schar_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
193
schar_ptr = (typeof(schar_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
195
uchar_ptr = (typeof(uchar_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
196
uchar_ptr = (typeof(uchar_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
197
uchar_ptr = (typeof(uchar_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
198
uchar_ptr = (typeof(uchar_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
199
uchar_ptr = (typeof(uchar_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
200
uchar_ptr = (typeof(uchar_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
201
uchar_ptr = (typeof(uchar_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
202
uchar_ptr = (typeof(uchar_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
203
uchar_ptr = (typeof(uchar_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
204
uchar_ptr = (typeof(uchar_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
205
uchar_ptr = (typeof(uchar_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
206
uchar_ptr = (typeof(uchar_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
207
uchar_ptr = (typeof(uchar_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
208
uchar_ptr = (typeof(uchar_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
209
uchar_ptr = (typeof(uchar_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
210
uchar_ptr = (typeof(uchar_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
211
uchar_ptr = (typeof(uchar_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
212
uchar_ptr = (typeof(uchar_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
213
uchar_ptr = (typeof(uchar_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
214
uchar_ptr = (typeof(uchar_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
215
uchar_ptr = (typeof(uchar_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
216
uchar_ptr = (typeof(uchar_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
217
uchar_ptr = (typeof(uchar_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
218
uchar_ptr = (typeof(uchar_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
219
uchar_ptr = (typeof(uchar_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
221
uchar_ptr = (typeof(uchar_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
224
short_ptr = (typeof(short_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
225
short_ptr = (typeof(short_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
227
short_ptr = (typeof(short_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
228
short_ptr = (typeof(short_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
229
short_ptr = (typeof(short_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
230
short_ptr = (typeof(short_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
232
short_ptr = (typeof(short_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
234
short_ptr = (typeof(short_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
236
short_ptr = (typeof(short_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
238
short_ptr = (typeof(short_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
240
short_ptr = (typeof(short_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
242
short_ptr = (typeof(short_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
244
short_ptr = (typeof(short_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
246
short_ptr = (typeof(short_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
248
short_ptr = (typeof(short_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
250
short_ptr = (typeof(short_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
252
short_ptr = (typeof(short_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
254
short_ptr = (typeof(short_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
255
short_ptr = (typeof(short_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
257
short_ptr = (typeof(short_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
259
short_ptr = (typeof(short_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
261
short_ptr = (typeof(short_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
263
short_ptr = (typeof(short_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
265
short_ptr = (typeof(short_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
267
short_ptr = (typeof(short_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
269
short_ptr = (typeof(short_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
272
ushort_ptr = (typeof(ushort_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
273
ushort_ptr = (typeof(ushort_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
275
ushort_ptr = (typeof(ushort_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
276
ushort_ptr = (typeof(ushort_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
277
ushort_ptr = (typeof(ushort_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
278
ushort_ptr = (typeof(ushort_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
280
ushort_ptr = (typeof(ushort_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
282
ushort_ptr = (typeof(ushort_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
284
ushort_ptr = (typeof(ushort_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
286
ushort_ptr = (typeof(ushort_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
288
ushort_ptr = (typeof(ushort_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
290
ushort_ptr = (typeof(ushort_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
292
ushort_ptr = (typeof(ushort_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
294
ushort_ptr = (typeof(ushort_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
296
ushort_ptr = (typeof(ushort_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
298
ushort_ptr = (typeof(ushort_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
300
ushort_ptr = (typeof(ushort_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
302
ushort_ptr = (typeof(ushort_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
303
ushort_ptr = (typeof(ushort_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
305
ushort_ptr = (typeof(ushort_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
307
ushort_ptr = (typeof(ushort_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
309
ushort_ptr = (typeof(ushort_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
311
ushort_ptr = (typeof(ushort_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
313
ushort_ptr = (typeof(ushort_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
315
ushort_ptr = (typeof(ushort_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
317
ushort_ptr = (typeof(ushort_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
320
int_ptr = (typeof(int_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
321
int_ptr = (typeof(int_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
323
int_ptr = (typeof(int_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
324
int_ptr = (typeof(int_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
326
int_ptr = (typeof(int_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
328
int_ptr = (typeof(int_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
329
int_ptr = (typeof(int_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
330
int_ptr = (typeof(int_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
332
int_ptr = (typeof(int_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
334
int_ptr = (typeof(int_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
336
int_ptr = (typeof(int_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
338
int_ptr = (typeof(int_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
340
int_ptr = (typeof(int_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
342
int_ptr = (typeof(int_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
344
int_ptr = (typeof(int_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
346
int_ptr = (typeof(int_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
348
int_ptr = (typeof(int_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
350
int_ptr = (typeof(int_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
351
int_ptr = (typeof(int_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
353
int_ptr = (typeof(int_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
355
int_ptr = (typeof(int_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
357
int_ptr = (typeof(int_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
359
int_ptr = (typeof(int_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
360
int_ptr = (typeof(int_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
362
int_ptr = (typeof(int_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
364
int_ptr = (typeof(int_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
367
uint_ptr = (typeof(uint_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
368
uint_ptr = (typeof(uint_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
370
uint_ptr = (typeof(uint_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
371
uint_ptr = (typeof(uint_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
373
uint_ptr = (typeof(uint_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
375
uint_ptr = (typeof(uint_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
376
uint_ptr = (typeof(uint_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
377
uint_ptr = (typeof(uint_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
379
uint_ptr = (typeof(uint_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
381
uint_ptr = (typeof(uint_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
383
uint_ptr = (typeof(uint_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
385
uint_ptr = (typeof(uint_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
387
uint_ptr = (typeof(uint_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
389
uint_ptr = (typeof(uint_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
391
uint_ptr = (typeof(uint_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
393
uint_ptr = (typeof(uint_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
395
uint_ptr = (typeof(uint_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
397
uint_ptr = (typeof(uint_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
398
uint_ptr = (typeof(uint_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
400
uint_ptr = (typeof(uint_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
402
uint_ptr = (typeof(uint_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
404
uint_ptr = (typeof(uint_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
406
uint_ptr = (typeof(uint_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
407
uint_ptr = (typeof(uint_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
409
uint_ptr = (typeof(uint_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
411
uint_ptr = (typeof(uint_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
414
long_ptr = (typeof(long_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
415
long_ptr = (typeof(long_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
417
long_ptr = (typeof(long_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
418
long_ptr = (typeof(long_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
420
long_ptr = (typeof(long_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
422
long_ptr = (typeof(long_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
424
long_ptr = (typeof(long_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
426
long_ptr = (typeof(long_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
427
long_ptr = (typeof(long_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
428
long_ptr = (typeof(long_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
430
long_ptr = (typeof(long_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
432
long_ptr = (typeof(long_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
434
long_ptr = (typeof(long_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
436
long_ptr = (typeof(long_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
438
long_ptr = (typeof(long_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
440
long_ptr = (typeof(long_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
442
long_ptr = (typeof(long_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
444
long_ptr = (typeof(long_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
445
long_ptr = (typeof(long_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
447
long_ptr = (typeof(long_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
449
long_ptr = (typeof(long_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
451
long_ptr = (typeof(long_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
453
long_ptr = (typeof(long_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
455
long_ptr = (typeof(long_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
457
long_ptr = (typeof(long_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
459
long_ptr = (typeof(long_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
462
ulong_ptr = (typeof(ulong_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
463
ulong_ptr = (typeof(ulong_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
465
ulong_ptr = (typeof(ulong_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
466
ulong_ptr = (typeof(ulong_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
468
ulong_ptr = (typeof(ulong_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
470
ulong_ptr = (typeof(ulong_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
472
ulong_ptr = (typeof(ulong_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
474
ulong_ptr = (typeof(ulong_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
475
ulong_ptr = (typeof(ulong_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
476
ulong_ptr = (typeof(ulong_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
478
ulong_ptr = (typeof(ulong_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
480
ulong_ptr = (typeof(ulong_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
482
ulong_ptr = (typeof(ulong_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
484
ulong_ptr = (typeof(ulong_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
486
ulong_ptr = (typeof(ulong_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
488
ulong_ptr = (typeof(ulong_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
490
ulong_ptr = (typeof(ulong_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
492
ulong_ptr = (typeof(ulong_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
493
ulong_ptr = (typeof(ulong_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
495
ulong_ptr = (typeof(ulong_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
497
ulong_ptr = (typeof(ulong_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
499
ulong_ptr = (typeof(ulong_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
501
ulong_ptr = (typeof(ulong_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
503
ulong_ptr = (typeof(ulong_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
505
ulong_ptr = (typeof(ulong_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
507
ulong_ptr = (typeof(ulong_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
510
llong_ptr = (typeof(llong_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
511
llong_ptr = (typeof(llong_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
513
llong_ptr = (typeof(llong_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
514
llong_ptr = (typeof(llong_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
516
llong_ptr = (typeof(llong_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
518
llong_ptr = (typeof(llong_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
520
llong_ptr = (typeof(llong_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
522
llong_ptr = (typeof(llong_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
524
llong_ptr = (typeof(llong_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
526
llong_ptr = (typeof(llong_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
527
llong_ptr = (typeof(llong_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
528
llong_ptr = (typeof(llong_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
530
llong_ptr = (typeof(llong_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
532
llong_ptr = (typeof(llong_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
534
llong_ptr = (typeof(llong_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
536
llong_ptr = (typeof(llong_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
538
llong_ptr = (typeof(llong_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
540
llong_ptr = (typeof(llong_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
541
llong_ptr = (typeof(llong_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
543
llong_ptr = (typeof(llong_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
545
llong_ptr = (typeof(llong_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
547
llong_ptr = (typeof(llong_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
549
llong_ptr = (typeof(llong_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
551
llong_ptr = (typeof(llong_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
553
llong_ptr = (typeof(llong_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
555
llong_ptr = (typeof(llong_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
558
ullong_ptr = (typeof(ullong_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
559
ullong_ptr = (typeof(ullong_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
561
ullong_ptr = (typeof(ullong_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
562
ullong_ptr = (typeof(ullong_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
564
ullong_ptr = (typeof(ullong_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
566
ullong_ptr = (typeof(ullong_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
568
ullong_ptr = (typeof(ullong_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
570
ullong_ptr = (typeof(ullong_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
572
ullong_ptr = (typeof(ullong_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
574
ullong_ptr = (typeof(ullong_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
575
ullong_ptr = (typeof(ullong_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
576
ullong_ptr = (typeof(ullong_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
578
ullong_ptr = (typeof(ullong_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
580
ullong_ptr = (typeof(ullong_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
582
ullong_ptr = (typeof(ullong_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
584
ullong_ptr = (typeof(ullong_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
586
ullong_ptr = (typeof(ullong_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
588
ullong_ptr = (typeof(ullong_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
589
ullong_ptr = (typeof(ullong_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
591
ullong_ptr = (typeof(ullong_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
593
ullong_ptr = (typeof(ullong_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
595
ullong_ptr = (typeof(ullong_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
597
ullong_ptr = (typeof(ullong_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
599
ullong_ptr = (typeof(ullong_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
601
ullong_ptr = (typeof(ullong_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
603
ullong_ptr = (typeof(ullong_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
606
float_ptr = (typeof(float_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
607
float_ptr = (typeof(float_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
609
float_ptr = (typeof(float_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
610
float_ptr = (typeof(float_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
612
float_ptr = (typeof(float_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
614
float_ptr = (typeof(float_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
616
float_ptr = (typeof(float_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
618
float_ptr = (typeof(float_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
620
float_ptr = (typeof(float_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
622
float_ptr = (typeof(float_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
624
float_ptr = (typeof(float_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
626
float_ptr = (typeof(float_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
627
float_ptr = (typeof(float_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
629
float_ptr = (typeof(float_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
631
float_ptr = (typeof(float_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
633
float_ptr = (typeof(float_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
635
float_ptr = (typeof(float_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
637
float_ptr = (typeof(float_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
638
float_ptr = (typeof(float_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
640
float_ptr = (typeof(float_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
642
float_ptr = (typeof(float_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
644
float_ptr = (typeof(float_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
646
float_ptr = (typeof(float_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
648
float_ptr = (typeof(float_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
650
float_ptr = (typeof(float_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
652
float_ptr = (typeof(float_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
655
double_ptr = (typeof(double_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
656
double_ptr = (typeof(double_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
658
double_ptr = (typeof(double_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
659
double_ptr = (typeof(double_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
661
double_ptr = (typeof(double_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
663
double_ptr = (typeof(double_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
665
double_ptr = (typeof(double_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
667
double_ptr = (typeof(double_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
669
double_ptr = (typeof(double_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
671
double_ptr = (typeof(double_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
673
double_ptr = (typeof(double_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
675
double_ptr = (typeof(double_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
677
double_ptr = (typeof(double_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
678
double_ptr = (typeof(double_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
680
double_ptr = (typeof(double_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
682
double_ptr = (typeof(double_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
684
double_ptr = (typeof(double_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
686
double_ptr = (typeof(double_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
687
double_ptr = (typeof(double_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
689
double_ptr = (typeof(double_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
69
bool_ptr = (typeof(bool_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
691
double_ptr = (typeof(double_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
693
double_ptr = (typeof(double_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
694
double_ptr = (typeof(double_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
696
double_ptr = (typeof(double_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
697
double_ptr = (typeof(double_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
699
double_ptr = (typeof(double_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
70
bool_ptr = (typeof(bool_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
702
ldouble_ptr = (typeof(ldouble_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
703
ldouble_ptr = (typeof(ldouble_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
705
ldouble_ptr = (typeof(ldouble_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
706
ldouble_ptr = (typeof(ldouble_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
708
ldouble_ptr = (typeof(ldouble_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
710
ldouble_ptr = (typeof(ldouble_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
712
ldouble_ptr = (typeof(ldouble_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
714
ldouble_ptr = (typeof(ldouble_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
716
ldouble_ptr = (typeof(ldouble_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
718
ldouble_ptr = (typeof(ldouble_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
72
bool_ptr = (typeof(bool_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
720
ldouble_ptr = (typeof(ldouble_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
722
ldouble_ptr = (typeof(ldouble_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
724
ldouble_ptr = (typeof(ldouble_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
726
ldouble_ptr = (typeof(ldouble_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
727
ldouble_ptr = (typeof(ldouble_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
729
ldouble_ptr = (typeof(ldouble_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
73
bool_ptr = (typeof(bool_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
731
ldouble_ptr = (typeof(ldouble_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
733
ldouble_ptr = (typeof(ldouble_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
734
ldouble_ptr = (typeof(ldouble_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
736
ldouble_ptr = (typeof(ldouble_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
738
ldouble_ptr = (typeof(ldouble_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
740
ldouble_ptr = (typeof(ldouble_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
742
ldouble_ptr = (typeof(ldouble_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
744
ldouble_ptr = (typeof(ldouble_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
746
ldouble_ptr = (typeof(ldouble_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
748
ldouble_ptr = (typeof(ldouble_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
75
bool_ptr = (typeof(bool_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
751
fcomplex_ptr = (typeof(fcomplex_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
752
fcomplex_ptr = (typeof(fcomplex_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
754
fcomplex_ptr = (typeof(fcomplex_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
755
fcomplex_ptr = (typeof(fcomplex_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
757
fcomplex_ptr = (typeof(fcomplex_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
759
fcomplex_ptr = (typeof(fcomplex_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
761
fcomplex_ptr = (typeof(fcomplex_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
763
fcomplex_ptr = (typeof(fcomplex_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
765
fcomplex_ptr = (typeof(fcomplex_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
767
fcomplex_ptr = (typeof(fcomplex_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
769
fcomplex_ptr = (typeof(fcomplex_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
77
bool_ptr = (typeof(bool_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
771
fcomplex_ptr = (typeof(fcomplex_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
773
fcomplex_ptr = (typeof(fcomplex_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
775
fcomplex_ptr = (typeof(fcomplex_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
777
fcomplex_ptr = (typeof(fcomplex_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
778
fcomplex_ptr = (typeof(fcomplex_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
780
fcomplex_ptr = (typeof(fcomplex_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
782
fcomplex_ptr = (typeof(fcomplex_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
783
fcomplex_ptr = (typeof(fcomplex_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
785
fcomplex_ptr = (typeof(fcomplex_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
787
fcomplex_ptr = (typeof(fcomplex_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
789
fcomplex_ptr = (typeof(fcomplex_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
79
bool_ptr = (typeof(bool_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
791
fcomplex_ptr = (typeof(fcomplex_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
793
fcomplex_ptr = (typeof(fcomplex_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
795
fcomplex_ptr = (typeof(fcomplex_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
797
fcomplex_ptr = (typeof(fcomplex_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
800
dcomplex_ptr = (typeof(dcomplex_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
801
dcomplex_ptr = (typeof(dcomplex_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
803
dcomplex_ptr = (typeof(dcomplex_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
804
dcomplex_ptr = (typeof(dcomplex_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
806
dcomplex_ptr = (typeof(dcomplex_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
808
dcomplex_ptr = (typeof(dcomplex_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
81
bool_ptr = (typeof(bool_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
810
dcomplex_ptr = (typeof(dcomplex_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
812
dcomplex_ptr = (typeof(dcomplex_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
814
dcomplex_ptr = (typeof(dcomplex_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
816
dcomplex_ptr = (typeof(dcomplex_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
818
dcomplex_ptr = (typeof(dcomplex_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
820
dcomplex_ptr = (typeof(dcomplex_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
822
dcomplex_ptr = (typeof(dcomplex_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
824
dcomplex_ptr = (typeof(dcomplex_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
826
dcomplex_ptr = (typeof(dcomplex_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
828
dcomplex_ptr = (typeof(dcomplex_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
829
dcomplex_ptr = (typeof(dcomplex_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
83
bool_ptr = (typeof(bool_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
831
dcomplex_ptr = (typeof(dcomplex_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
832
dcomplex_ptr = (typeof(dcomplex_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
834
dcomplex_ptr = (typeof(dcomplex_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
836
dcomplex_ptr = (typeof(dcomplex_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
838
dcomplex_ptr = (typeof(dcomplex_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
840
dcomplex_ptr = (typeof(dcomplex_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
842
dcomplex_ptr = (typeof(dcomplex_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
844
dcomplex_ptr = (typeof(dcomplex_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
846
dcomplex_ptr = (typeof(dcomplex_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
849
lcomplex_ptr = (typeof(lcomplex_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
85
bool_ptr = (typeof(bool_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
850
lcomplex_ptr = (typeof(lcomplex_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
852
lcomplex_ptr = (typeof(lcomplex_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
853
lcomplex_ptr = (typeof(lcomplex_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
855
lcomplex_ptr = (typeof(lcomplex_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
857
lcomplex_ptr = (typeof(lcomplex_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
859
lcomplex_ptr = (typeof(lcomplex_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
861
lcomplex_ptr = (typeof(lcomplex_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
863
lcomplex_ptr = (typeof(lcomplex_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
865
lcomplex_ptr = (typeof(lcomplex_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
867
lcomplex_ptr = (typeof(lcomplex_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
869
lcomplex_ptr = (typeof(lcomplex_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
87
bool_ptr = (typeof(bool_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
871
lcomplex_ptr = (typeof(lcomplex_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
873
lcomplex_ptr = (typeof(lcomplex_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
875
lcomplex_ptr = (typeof(lcomplex_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
877
lcomplex_ptr = (typeof(lcomplex_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
879
lcomplex_ptr = (typeof(lcomplex_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
880
lcomplex_ptr = (typeof(lcomplex_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
881
lcomplex_ptr = (typeof(lcomplex_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
883
lcomplex_ptr = (typeof(lcomplex_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
885
lcomplex_ptr = (typeof(lcomplex_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
887
lcomplex_ptr = (typeof(lcomplex_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
889
lcomplex_ptr = (typeof(lcomplex_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
89
bool_ptr = (typeof(bool_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
891
lcomplex_ptr = (typeof(lcomplex_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
893
lcomplex_ptr = (typeof(lcomplex_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
895
lcomplex_ptr = (typeof(lcomplex_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
897
void_ptr = (typeof(void_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
898
void_ptr = (typeof(void_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
899
void_ptr = (typeof(void_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
900
void_ptr = (typeof(void_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
901
void_ptr = (typeof(void_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
902
void_ptr = (typeof(void_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
903
void_ptr = (typeof(void_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
904
void_ptr = (typeof(void_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
905
void_ptr = (typeof(void_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
906
void_ptr = (typeof(void_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
907
void_ptr = (typeof(void_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
908
void_ptr = (typeof(void_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
909
void_ptr = (typeof(void_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
91
bool_ptr = (typeof(bool_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
910
void_ptr = (typeof(void_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
911
void_ptr = (typeof(void_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
912
void_ptr = (typeof(void_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
913
void_ptr = (typeof(void_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
914
void_ptr = (typeof(void_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
915
void_ptr = (typeof(void_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
916
void_ptr = (typeof(void_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
917
void_ptr = (typeof(void_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
918
void_ptr = (typeof(void_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
919
void_ptr = (typeof(void_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
920
void_ptr = (typeof(void_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
921
void_ptr = (typeof(void_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
922
void_ptr = (typeof(void_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
925
char_struct_ptr = (typeof(char_struct_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
926
char_struct_ptr = (typeof(char_struct_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
928
char_struct_ptr = (typeof(char_struct_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
929
char_struct_ptr = (typeof(char_struct_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
93
bool_ptr = (typeof(bool_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
931
char_struct_ptr = (typeof(char_struct_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
933
char_struct_ptr = (typeof(char_struct_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
935
char_struct_ptr = (typeof(char_struct_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
937
char_struct_ptr = (typeof(char_struct_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
939
char_struct_ptr = (typeof(char_struct_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
941
char_struct_ptr = (typeof(char_struct_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
943
char_struct_ptr = (typeof(char_struct_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
945
char_struct_ptr = (typeof(char_struct_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
947
char_struct_ptr = (typeof(char_struct_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
949
char_struct_ptr = (typeof(char_struct_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
95
bool_ptr = (typeof(bool_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
951
char_struct_ptr = (typeof(char_struct_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
953
char_struct_ptr = (typeof(char_struct_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
955
char_struct_ptr = (typeof(char_struct_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
957
char_struct_ptr = (typeof(char_struct_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
958
char_struct_ptr = (typeof(char_struct_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
959
char_struct_ptr = (typeof(char_struct_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
961
char_struct_ptr = (typeof(char_struct_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
963
char_struct_ptr = (typeof(char_struct_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
965
char_struct_ptr = (typeof(char_struct_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
967
char_struct_ptr = (typeof(char_struct_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
969
char_struct_ptr = (typeof(char_struct_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
97
bool_ptr = (typeof(bool_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
971
char_struct_ptr = (typeof(char_struct_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
974
double_struct_ptr = (typeof(double_struct_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
975
double_struct_ptr = (typeof(double_struct_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
977
double_struct_ptr = (typeof(double_struct_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
978
double_struct_ptr = (typeof(double_struct_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
980
double_struct_ptr = (typeof(double_struct_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
982
double_struct_ptr = (typeof(double_struct_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
984
double_struct_ptr = (typeof(double_struct_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
986
double_struct_ptr = (typeof(double_struct_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
988
double_struct_ptr = (typeof(double_struct_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
99
bool_ptr = (typeof(bool_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
990
double_struct_ptr = (typeof(double_struct_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
992
double_struct_ptr = (typeof(double_struct_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
994
double_struct_ptr = (typeof(double_struct_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
996
double_struct_ptr = (typeof(double_struct_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable.c
998
double_struct_ptr = (typeof(double_struct_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
100
bool_ptr = (typeof(bool_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1001
double_struct_ptr = (typeof(double_struct_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1003
double_struct_ptr = (typeof(double_struct_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1005
double_struct_ptr = (typeof(double_struct_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1007
double_struct_ptr = (typeof(double_struct_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1009
double_struct_ptr = (typeof(double_struct_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1011
double_struct_ptr = (typeof(double_struct_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1012
double_struct_ptr = (typeof(double_struct_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1014
double_struct_ptr = (typeof(double_struct_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1015
double_struct_ptr = (typeof(double_struct_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1017
double_struct_ptr = (typeof(double_struct_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1019
double_struct_ptr = (typeof(double_struct_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
102
bool_ptr = (typeof(bool_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1021
double_struct_ptr = (typeof(double_struct_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1023
double_struct_ptr = (typeof(double_struct_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1025
double_struct_ptr = (typeof(double_struct_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1028
char_union_ptr = (typeof(char_union_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1029
char_union_ptr = (typeof(char_union_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1031
char_union_ptr = (typeof(char_union_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1032
char_union_ptr = (typeof(char_union_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1034
char_union_ptr = (typeof(char_union_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1036
char_union_ptr = (typeof(char_union_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1038
char_union_ptr = (typeof(char_union_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
104
bool_ptr = (typeof(bool_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1040
char_union_ptr = (typeof(char_union_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1042
char_union_ptr = (typeof(char_union_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1044
char_union_ptr = (typeof(char_union_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1046
char_union_ptr = (typeof(char_union_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1048
char_union_ptr = (typeof(char_union_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1050
char_union_ptr = (typeof(char_union_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1052
char_union_ptr = (typeof(char_union_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1054
char_union_ptr = (typeof(char_union_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1056
char_union_ptr = (typeof(char_union_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1058
char_union_ptr = (typeof(char_union_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
106
bool_ptr = (typeof(bool_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1060
char_union_ptr = (typeof(char_union_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1061
char_union_ptr = (typeof(char_union_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1063
char_union_ptr = (typeof(char_union_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1065
char_union_ptr = (typeof(char_union_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1066
char_union_ptr = (typeof(char_union_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1068
char_union_ptr = (typeof(char_union_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
107
bool_ptr = (typeof(bool_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1070
char_union_ptr = (typeof(char_union_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1072
char_union_ptr = (typeof(char_union_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1074
char_union_ptr = (typeof(char_union_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1077
double_union_ptr = (typeof(double_union_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1078
double_union_ptr = (typeof(double_union_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1080
double_union_ptr = (typeof(double_union_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1081
double_union_ptr = (typeof(double_union_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1083
double_union_ptr = (typeof(double_union_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1085
double_union_ptr = (typeof(double_union_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1087
double_union_ptr = (typeof(double_union_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1089
double_union_ptr = (typeof(double_union_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
109
bool_ptr = (typeof(bool_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1091
double_union_ptr = (typeof(double_union_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1093
double_union_ptr = (typeof(double_union_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1095
double_union_ptr = (typeof(double_union_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1097
double_union_ptr = (typeof(double_union_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1099
double_union_ptr = (typeof(double_union_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1100
double_union_ptr = (typeof(double_union_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1102
double_union_ptr = (typeof(double_union_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1104
double_union_ptr = (typeof(double_union_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1106
double_union_ptr = (typeof(double_union_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1108
double_union_ptr = (typeof(double_union_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1109
double_union_ptr = (typeof(double_union_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
111
bool_ptr = (typeof(bool_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1111
double_union_ptr = (typeof(double_union_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1113
double_union_ptr = (typeof(double_union_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1115
double_union_ptr = (typeof(double_union_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1116
double_union_ptr = (typeof(double_union_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1118
double_union_ptr = (typeof(double_union_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1119
double_union_ptr = (typeof(double_union_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1121
double_union_ptr = (typeof(double_union_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1124
enum_ptr = (typeof(enum_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1125
enum_ptr = (typeof(enum_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1127
enum_ptr = (typeof(enum_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1128
enum_ptr = (typeof(enum_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
113
bool_ptr = (typeof(bool_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1130
enum_ptr = (typeof(enum_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1132
enum_ptr = (typeof(enum_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1133
enum_ptr = (typeof(enum_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1134
enum_ptr = (typeof(enum_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1136
enum_ptr = (typeof(enum_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1138
enum_ptr = (typeof(enum_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1140
enum_ptr = (typeof(enum_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1142
enum_ptr = (typeof(enum_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1144
enum_ptr = (typeof(enum_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1146
enum_ptr = (typeof(enum_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1148
enum_ptr = (typeof(enum_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
115
bool_ptr = (typeof(bool_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1150
enum_ptr = (typeof(enum_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1152
enum_ptr = (typeof(enum_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1154
enum_ptr = (typeof(enum_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1155
enum_ptr = (typeof(enum_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1157
enum_ptr = (typeof(enum_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1159
enum_ptr = (typeof(enum_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1161
enum_ptr = (typeof(enum_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1163
enum_ptr = (typeof(enum_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1164
enum_ptr = (typeof(enum_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1166
enum_ptr = (typeof(enum_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1168
enum_ptr = (typeof(enum_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
117
bool_ptr = (typeof(bool_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1171
double_array_ptr = (typeof(double_array_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1172
double_array_ptr = (typeof(double_array_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1174
double_array_ptr = (typeof(double_array_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1175
double_array_ptr = (typeof(double_array_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1177
double_array_ptr = (typeof(double_array_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1179
double_array_ptr = (typeof(double_array_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1181
double_array_ptr = (typeof(double_array_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1183
double_array_ptr = (typeof(double_array_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1185
double_array_ptr = (typeof(double_array_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1187
double_array_ptr = (typeof(double_array_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1189
double_array_ptr = (typeof(double_array_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
119
bool_ptr = (typeof(bool_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1191
double_array_ptr = (typeof(double_array_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1193
double_array_ptr = (typeof(double_array_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1194
double_array_ptr = (typeof(double_array_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1196
double_array_ptr = (typeof(double_array_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1198
double_array_ptr = (typeof(double_array_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1200
double_array_ptr = (typeof(double_array_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1202
double_array_ptr = (typeof(double_array_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1203
double_array_ptr = (typeof(double_array_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1205
double_array_ptr = (typeof(double_array_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1207
double_array_ptr = (typeof(double_array_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1209
double_array_ptr = (typeof(double_array_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
121
bool_ptr = (typeof(bool_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1210
double_array_ptr = (typeof(double_array_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1212
double_array_ptr = (typeof(double_array_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1213
double_array_ptr = (typeof(double_array_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1215
double_array_ptr = (typeof(double_array_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1218
func_ptr = (typeof(func_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1220
func_ptr = (typeof(func_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1222
func_ptr = (typeof(func_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1224
func_ptr = (typeof(func_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1226
func_ptr = (typeof(func_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1228
func_ptr = (typeof(func_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
123
char_ptr = (typeof(char_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1230
func_ptr = (typeof(func_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1232
func_ptr = (typeof(func_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1234
func_ptr = (typeof(func_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1236
func_ptr = (typeof(func_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1238
func_ptr = (typeof(func_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
124
char_ptr = (typeof(char_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1240
func_ptr = (typeof(func_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1242
func_ptr = (typeof(func_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1244
func_ptr = (typeof(func_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1246
func_ptr = (typeof(func_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1248
func_ptr = (typeof(func_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
125
char_ptr = (typeof(char_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1250
func_ptr = (typeof(func_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1252
func_ptr = (typeof(func_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1253
func_ptr = (typeof(func_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1255
func_ptr = (typeof(func_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1257
func_ptr = (typeof(func_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1259
func_ptr = (typeof(func_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
126
char_ptr = (typeof(char_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1261
func_ptr = (typeof(func_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1263
func_ptr = (typeof(func_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1265
func_ptr = (typeof(func_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
1266
func_ptr = (typeof(func_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
127
char_ptr = (typeof(char_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
128
char_ptr = (typeof(char_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
129
char_ptr = (typeof(char_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
130
char_ptr = (typeof(char_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
131
char_ptr = (typeof(char_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
132
char_ptr = (typeof(char_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
133
char_ptr = (typeof(char_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
134
char_ptr = (typeof(char_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
135
char_ptr = (typeof(char_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
136
char_ptr = (typeof(char_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
137
char_ptr = (typeof(char_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
138
char_ptr = (typeof(char_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
139
char_ptr = (typeof(char_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
140
char_ptr = (typeof(char_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
141
char_ptr = (typeof(char_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
142
char_ptr = (typeof(char_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
143
char_ptr = (typeof(char_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
144
char_ptr = (typeof(char_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
145
char_ptr = (typeof(char_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
146
char_ptr = (typeof(char_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
147
char_ptr = (typeof(char_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
149
char_ptr = (typeof(char_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
152
schar_ptr = (typeof(schar_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
153
schar_ptr = (typeof(schar_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
154
schar_ptr = (typeof(schar_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
155
schar_ptr = (typeof(schar_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
157
schar_ptr = (typeof(schar_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
159
schar_ptr = (typeof(schar_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
161
schar_ptr = (typeof(schar_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
163
schar_ptr = (typeof(schar_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
165
schar_ptr = (typeof(schar_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
167
schar_ptr = (typeof(schar_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
169
schar_ptr = (typeof(schar_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
171
schar_ptr = (typeof(schar_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
173
schar_ptr = (typeof(schar_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
175
schar_ptr = (typeof(schar_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
177
schar_ptr = (typeof(schar_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
179
schar_ptr = (typeof(schar_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
181
schar_ptr = (typeof(schar_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
183
schar_ptr = (typeof(schar_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
184
schar_ptr = (typeof(schar_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
186
schar_ptr = (typeof(schar_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
188
schar_ptr = (typeof(schar_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
190
schar_ptr = (typeof(schar_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
192
schar_ptr = (typeof(schar_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
194
schar_ptr = (typeof(schar_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
196
schar_ptr = (typeof(schar_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
198
schar_ptr = (typeof(schar_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
200
uchar_ptr = (typeof(uchar_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
201
uchar_ptr = (typeof(uchar_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
202
uchar_ptr = (typeof(uchar_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
203
uchar_ptr = (typeof(uchar_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
204
uchar_ptr = (typeof(uchar_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
205
uchar_ptr = (typeof(uchar_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
206
uchar_ptr = (typeof(uchar_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
207
uchar_ptr = (typeof(uchar_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
208
uchar_ptr = (typeof(uchar_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
209
uchar_ptr = (typeof(uchar_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
210
uchar_ptr = (typeof(uchar_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
211
uchar_ptr = (typeof(uchar_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
212
uchar_ptr = (typeof(uchar_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
213
uchar_ptr = (typeof(uchar_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
214
uchar_ptr = (typeof(uchar_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
215
uchar_ptr = (typeof(uchar_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
216
uchar_ptr = (typeof(uchar_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
217
uchar_ptr = (typeof(uchar_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
218
uchar_ptr = (typeof(uchar_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
219
uchar_ptr = (typeof(uchar_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
220
uchar_ptr = (typeof(uchar_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
221
uchar_ptr = (typeof(uchar_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
222
uchar_ptr = (typeof(uchar_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
223
uchar_ptr = (typeof(uchar_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
224
uchar_ptr = (typeof(uchar_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
226
uchar_ptr = (typeof(uchar_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
229
short_ptr = (typeof(short_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
230
short_ptr = (typeof(short_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
232
short_ptr = (typeof(short_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
233
short_ptr = (typeof(short_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
234
short_ptr = (typeof(short_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
235
short_ptr = (typeof(short_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
237
short_ptr = (typeof(short_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
239
short_ptr = (typeof(short_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
241
short_ptr = (typeof(short_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
243
short_ptr = (typeof(short_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
245
short_ptr = (typeof(short_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
247
short_ptr = (typeof(short_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
249
short_ptr = (typeof(short_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
251
short_ptr = (typeof(short_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
253
short_ptr = (typeof(short_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
255
short_ptr = (typeof(short_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
257
short_ptr = (typeof(short_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
259
short_ptr = (typeof(short_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
260
short_ptr = (typeof(short_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
262
short_ptr = (typeof(short_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
264
short_ptr = (typeof(short_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
266
short_ptr = (typeof(short_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
268
short_ptr = (typeof(short_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
270
short_ptr = (typeof(short_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
272
short_ptr = (typeof(short_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
274
short_ptr = (typeof(short_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
277
ushort_ptr = (typeof(ushort_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
278
ushort_ptr = (typeof(ushort_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
280
ushort_ptr = (typeof(ushort_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
281
ushort_ptr = (typeof(ushort_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
282
ushort_ptr = (typeof(ushort_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
283
ushort_ptr = (typeof(ushort_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
285
ushort_ptr = (typeof(ushort_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
287
ushort_ptr = (typeof(ushort_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
289
ushort_ptr = (typeof(ushort_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
291
ushort_ptr = (typeof(ushort_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
293
ushort_ptr = (typeof(ushort_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
295
ushort_ptr = (typeof(ushort_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
297
ushort_ptr = (typeof(ushort_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
299
ushort_ptr = (typeof(ushort_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
301
ushort_ptr = (typeof(ushort_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
303
ushort_ptr = (typeof(ushort_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
305
ushort_ptr = (typeof(ushort_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
307
ushort_ptr = (typeof(ushort_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
308
ushort_ptr = (typeof(ushort_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
310
ushort_ptr = (typeof(ushort_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
312
ushort_ptr = (typeof(ushort_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
314
ushort_ptr = (typeof(ushort_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
316
ushort_ptr = (typeof(ushort_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
318
ushort_ptr = (typeof(ushort_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
320
ushort_ptr = (typeof(ushort_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
322
ushort_ptr = (typeof(ushort_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
325
int_ptr = (typeof(int_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
326
int_ptr = (typeof(int_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
328
int_ptr = (typeof(int_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
329
int_ptr = (typeof(int_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
331
int_ptr = (typeof(int_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
333
int_ptr = (typeof(int_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
334
int_ptr = (typeof(int_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
335
int_ptr = (typeof(int_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
337
int_ptr = (typeof(int_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
339
int_ptr = (typeof(int_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
341
int_ptr = (typeof(int_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
343
int_ptr = (typeof(int_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
345
int_ptr = (typeof(int_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
347
int_ptr = (typeof(int_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
349
int_ptr = (typeof(int_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
351
int_ptr = (typeof(int_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
353
int_ptr = (typeof(int_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
355
int_ptr = (typeof(int_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
356
int_ptr = (typeof(int_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
358
int_ptr = (typeof(int_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
360
int_ptr = (typeof(int_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
362
int_ptr = (typeof(int_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
364
int_ptr = (typeof(int_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
365
int_ptr = (typeof(int_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
367
int_ptr = (typeof(int_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
369
int_ptr = (typeof(int_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
372
uint_ptr = (typeof(uint_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
373
uint_ptr = (typeof(uint_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
375
uint_ptr = (typeof(uint_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
376
uint_ptr = (typeof(uint_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
378
uint_ptr = (typeof(uint_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
380
uint_ptr = (typeof(uint_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
381
uint_ptr = (typeof(uint_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
382
uint_ptr = (typeof(uint_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
384
uint_ptr = (typeof(uint_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
386
uint_ptr = (typeof(uint_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
388
uint_ptr = (typeof(uint_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
390
uint_ptr = (typeof(uint_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
392
uint_ptr = (typeof(uint_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
394
uint_ptr = (typeof(uint_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
396
uint_ptr = (typeof(uint_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
398
uint_ptr = (typeof(uint_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
400
uint_ptr = (typeof(uint_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
402
uint_ptr = (typeof(uint_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
403
uint_ptr = (typeof(uint_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
405
uint_ptr = (typeof(uint_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
407
uint_ptr = (typeof(uint_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
409
uint_ptr = (typeof(uint_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
411
uint_ptr = (typeof(uint_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
412
uint_ptr = (typeof(uint_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
414
uint_ptr = (typeof(uint_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
416
uint_ptr = (typeof(uint_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
419
long_ptr = (typeof(long_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
420
long_ptr = (typeof(long_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
422
long_ptr = (typeof(long_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
423
long_ptr = (typeof(long_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
425
long_ptr = (typeof(long_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
427
long_ptr = (typeof(long_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
429
long_ptr = (typeof(long_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
431
long_ptr = (typeof(long_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
432
long_ptr = (typeof(long_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
433
long_ptr = (typeof(long_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
435
long_ptr = (typeof(long_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
437
long_ptr = (typeof(long_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
439
long_ptr = (typeof(long_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
441
long_ptr = (typeof(long_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
443
long_ptr = (typeof(long_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
445
long_ptr = (typeof(long_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
447
long_ptr = (typeof(long_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
449
long_ptr = (typeof(long_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
450
long_ptr = (typeof(long_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
452
long_ptr = (typeof(long_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
454
long_ptr = (typeof(long_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
456
long_ptr = (typeof(long_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
458
long_ptr = (typeof(long_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
460
long_ptr = (typeof(long_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
462
long_ptr = (typeof(long_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
464
long_ptr = (typeof(long_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
467
ulong_ptr = (typeof(ulong_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
468
ulong_ptr = (typeof(ulong_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
470
ulong_ptr = (typeof(ulong_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
471
ulong_ptr = (typeof(ulong_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
473
ulong_ptr = (typeof(ulong_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
475
ulong_ptr = (typeof(ulong_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
477
ulong_ptr = (typeof(ulong_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
479
ulong_ptr = (typeof(ulong_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
480
ulong_ptr = (typeof(ulong_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
481
ulong_ptr = (typeof(ulong_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
483
ulong_ptr = (typeof(ulong_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
485
ulong_ptr = (typeof(ulong_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
487
ulong_ptr = (typeof(ulong_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
489
ulong_ptr = (typeof(ulong_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
491
ulong_ptr = (typeof(ulong_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
493
ulong_ptr = (typeof(ulong_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
495
ulong_ptr = (typeof(ulong_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
497
ulong_ptr = (typeof(ulong_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
498
ulong_ptr = (typeof(ulong_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
500
ulong_ptr = (typeof(ulong_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
502
ulong_ptr = (typeof(ulong_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
504
ulong_ptr = (typeof(ulong_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
506
ulong_ptr = (typeof(ulong_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
508
ulong_ptr = (typeof(ulong_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
510
ulong_ptr = (typeof(ulong_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
512
ulong_ptr = (typeof(ulong_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
515
llong_ptr = (typeof(llong_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
516
llong_ptr = (typeof(llong_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
518
llong_ptr = (typeof(llong_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
519
llong_ptr = (typeof(llong_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
521
llong_ptr = (typeof(llong_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
523
llong_ptr = (typeof(llong_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
525
llong_ptr = (typeof(llong_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
527
llong_ptr = (typeof(llong_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
529
llong_ptr = (typeof(llong_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
531
llong_ptr = (typeof(llong_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
532
llong_ptr = (typeof(llong_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
533
llong_ptr = (typeof(llong_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
535
llong_ptr = (typeof(llong_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
537
llong_ptr = (typeof(llong_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
539
llong_ptr = (typeof(llong_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
541
llong_ptr = (typeof(llong_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
543
llong_ptr = (typeof(llong_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
545
llong_ptr = (typeof(llong_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
546
llong_ptr = (typeof(llong_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
548
llong_ptr = (typeof(llong_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
550
llong_ptr = (typeof(llong_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
552
llong_ptr = (typeof(llong_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
554
llong_ptr = (typeof(llong_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
556
llong_ptr = (typeof(llong_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
558
llong_ptr = (typeof(llong_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
560
llong_ptr = (typeof(llong_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
563
ullong_ptr = (typeof(ullong_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
564
ullong_ptr = (typeof(ullong_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
566
ullong_ptr = (typeof(ullong_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
567
ullong_ptr = (typeof(ullong_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
569
ullong_ptr = (typeof(ullong_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
571
ullong_ptr = (typeof(ullong_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
573
ullong_ptr = (typeof(ullong_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
575
ullong_ptr = (typeof(ullong_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
577
ullong_ptr = (typeof(ullong_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
579
ullong_ptr = (typeof(ullong_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
580
ullong_ptr = (typeof(ullong_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
581
ullong_ptr = (typeof(ullong_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
583
ullong_ptr = (typeof(ullong_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
585
ullong_ptr = (typeof(ullong_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
587
ullong_ptr = (typeof(ullong_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
589
ullong_ptr = (typeof(ullong_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
591
ullong_ptr = (typeof(ullong_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
593
ullong_ptr = (typeof(ullong_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
594
ullong_ptr = (typeof(ullong_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
596
ullong_ptr = (typeof(ullong_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
598
ullong_ptr = (typeof(ullong_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
600
ullong_ptr = (typeof(ullong_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
602
ullong_ptr = (typeof(ullong_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
604
ullong_ptr = (typeof(ullong_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
606
ullong_ptr = (typeof(ullong_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
608
ullong_ptr = (typeof(ullong_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
611
float_ptr = (typeof(float_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
612
float_ptr = (typeof(float_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
614
float_ptr = (typeof(float_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
615
float_ptr = (typeof(float_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
617
float_ptr = (typeof(float_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
619
float_ptr = (typeof(float_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
621
float_ptr = (typeof(float_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
623
float_ptr = (typeof(float_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
625
float_ptr = (typeof(float_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
627
float_ptr = (typeof(float_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
629
float_ptr = (typeof(float_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
631
float_ptr = (typeof(float_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
632
float_ptr = (typeof(float_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
634
float_ptr = (typeof(float_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
636
float_ptr = (typeof(float_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
638
float_ptr = (typeof(float_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
640
float_ptr = (typeof(float_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
642
float_ptr = (typeof(float_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
643
float_ptr = (typeof(float_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
645
float_ptr = (typeof(float_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
647
float_ptr = (typeof(float_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
649
float_ptr = (typeof(float_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
651
float_ptr = (typeof(float_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
653
float_ptr = (typeof(float_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
655
float_ptr = (typeof(float_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
657
float_ptr = (typeof(float_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
660
double_ptr = (typeof(double_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
661
double_ptr = (typeof(double_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
663
double_ptr = (typeof(double_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
664
double_ptr = (typeof(double_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
666
double_ptr = (typeof(double_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
668
double_ptr = (typeof(double_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
670
double_ptr = (typeof(double_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
672
double_ptr = (typeof(double_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
674
double_ptr = (typeof(double_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
676
double_ptr = (typeof(double_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
678
double_ptr = (typeof(double_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
680
double_ptr = (typeof(double_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
682
double_ptr = (typeof(double_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
683
double_ptr = (typeof(double_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
685
double_ptr = (typeof(double_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
687
double_ptr = (typeof(double_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
689
double_ptr = (typeof(double_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
691
double_ptr = (typeof(double_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
692
double_ptr = (typeof(double_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
694
double_ptr = (typeof(double_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
696
double_ptr = (typeof(double_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
698
double_ptr = (typeof(double_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
699
double_ptr = (typeof(double_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
701
double_ptr = (typeof(double_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
702
double_ptr = (typeof(double_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
704
double_ptr = (typeof(double_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
707
ldouble_ptr = (typeof(ldouble_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
708
ldouble_ptr = (typeof(ldouble_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
710
ldouble_ptr = (typeof(ldouble_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
711
ldouble_ptr = (typeof(ldouble_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
713
ldouble_ptr = (typeof(ldouble_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
715
ldouble_ptr = (typeof(ldouble_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
717
ldouble_ptr = (typeof(ldouble_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
719
ldouble_ptr = (typeof(ldouble_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
721
ldouble_ptr = (typeof(ldouble_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
723
ldouble_ptr = (typeof(ldouble_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
725
ldouble_ptr = (typeof(ldouble_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
727
ldouble_ptr = (typeof(ldouble_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
729
ldouble_ptr = (typeof(ldouble_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
731
ldouble_ptr = (typeof(ldouble_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
732
ldouble_ptr = (typeof(ldouble_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
734
ldouble_ptr = (typeof(ldouble_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
736
ldouble_ptr = (typeof(ldouble_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
738
ldouble_ptr = (typeof(ldouble_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
739
ldouble_ptr = (typeof(ldouble_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
74
bool_ptr = (typeof(bool_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
741
ldouble_ptr = (typeof(ldouble_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
743
ldouble_ptr = (typeof(ldouble_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
745
ldouble_ptr = (typeof(ldouble_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
747
ldouble_ptr = (typeof(ldouble_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
749
ldouble_ptr = (typeof(ldouble_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
75
bool_ptr = (typeof(bool_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
751
ldouble_ptr = (typeof(ldouble_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
753
ldouble_ptr = (typeof(ldouble_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
756
fcomplex_ptr = (typeof(fcomplex_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
757
fcomplex_ptr = (typeof(fcomplex_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
759
fcomplex_ptr = (typeof(fcomplex_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
760
fcomplex_ptr = (typeof(fcomplex_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
762
fcomplex_ptr = (typeof(fcomplex_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
764
fcomplex_ptr = (typeof(fcomplex_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
766
fcomplex_ptr = (typeof(fcomplex_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
768
fcomplex_ptr = (typeof(fcomplex_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
77
bool_ptr = (typeof(bool_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
770
fcomplex_ptr = (typeof(fcomplex_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
772
fcomplex_ptr = (typeof(fcomplex_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
774
fcomplex_ptr = (typeof(fcomplex_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
776
fcomplex_ptr = (typeof(fcomplex_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
778
fcomplex_ptr = (typeof(fcomplex_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
78
bool_ptr = (typeof(bool_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
780
fcomplex_ptr = (typeof(fcomplex_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
782
fcomplex_ptr = (typeof(fcomplex_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
783
fcomplex_ptr = (typeof(fcomplex_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
785
fcomplex_ptr = (typeof(fcomplex_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
787
fcomplex_ptr = (typeof(fcomplex_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
788
fcomplex_ptr = (typeof(fcomplex_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
790
fcomplex_ptr = (typeof(fcomplex_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
792
fcomplex_ptr = (typeof(fcomplex_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
794
fcomplex_ptr = (typeof(fcomplex_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
796
fcomplex_ptr = (typeof(fcomplex_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
798
fcomplex_ptr = (typeof(fcomplex_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
80
bool_ptr = (typeof(bool_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
800
fcomplex_ptr = (typeof(fcomplex_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
802
fcomplex_ptr = (typeof(fcomplex_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
805
dcomplex_ptr = (typeof(dcomplex_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
806
dcomplex_ptr = (typeof(dcomplex_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
808
dcomplex_ptr = (typeof(dcomplex_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
809
dcomplex_ptr = (typeof(dcomplex_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
811
dcomplex_ptr = (typeof(dcomplex_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
813
dcomplex_ptr = (typeof(dcomplex_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
815
dcomplex_ptr = (typeof(dcomplex_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
817
dcomplex_ptr = (typeof(dcomplex_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
819
dcomplex_ptr = (typeof(dcomplex_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
82
bool_ptr = (typeof(bool_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
821
dcomplex_ptr = (typeof(dcomplex_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
823
dcomplex_ptr = (typeof(dcomplex_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
825
dcomplex_ptr = (typeof(dcomplex_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
827
dcomplex_ptr = (typeof(dcomplex_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
829
dcomplex_ptr = (typeof(dcomplex_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
831
dcomplex_ptr = (typeof(dcomplex_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
833
dcomplex_ptr = (typeof(dcomplex_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
834
dcomplex_ptr = (typeof(dcomplex_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
836
dcomplex_ptr = (typeof(dcomplex_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
837
dcomplex_ptr = (typeof(dcomplex_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
839
dcomplex_ptr = (typeof(dcomplex_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
84
bool_ptr = (typeof(bool_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
841
dcomplex_ptr = (typeof(dcomplex_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
843
dcomplex_ptr = (typeof(dcomplex_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
845
dcomplex_ptr = (typeof(dcomplex_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
847
dcomplex_ptr = (typeof(dcomplex_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
849
dcomplex_ptr = (typeof(dcomplex_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
851
dcomplex_ptr = (typeof(dcomplex_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
854
lcomplex_ptr = (typeof(lcomplex_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
855
lcomplex_ptr = (typeof(lcomplex_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
857
lcomplex_ptr = (typeof(lcomplex_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
858
lcomplex_ptr = (typeof(lcomplex_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
86
bool_ptr = (typeof(bool_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
860
lcomplex_ptr = (typeof(lcomplex_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
862
lcomplex_ptr = (typeof(lcomplex_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
864
lcomplex_ptr = (typeof(lcomplex_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
866
lcomplex_ptr = (typeof(lcomplex_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
868
lcomplex_ptr = (typeof(lcomplex_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
870
lcomplex_ptr = (typeof(lcomplex_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
872
lcomplex_ptr = (typeof(lcomplex_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
874
lcomplex_ptr = (typeof(lcomplex_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
876
lcomplex_ptr = (typeof(lcomplex_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
878
lcomplex_ptr = (typeof(lcomplex_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
88
bool_ptr = (typeof(bool_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
880
lcomplex_ptr = (typeof(lcomplex_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
882
lcomplex_ptr = (typeof(lcomplex_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
884
lcomplex_ptr = (typeof(lcomplex_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
885
lcomplex_ptr = (typeof(lcomplex_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
886
lcomplex_ptr = (typeof(lcomplex_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
888
lcomplex_ptr = (typeof(lcomplex_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
890
lcomplex_ptr = (typeof(lcomplex_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
892
lcomplex_ptr = (typeof(lcomplex_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
894
lcomplex_ptr = (typeof(lcomplex_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
896
lcomplex_ptr = (typeof(lcomplex_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
898
lcomplex_ptr = (typeof(lcomplex_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
90
bool_ptr = (typeof(bool_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
900
lcomplex_ptr = (typeof(lcomplex_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
902
void_ptr = (typeof(void_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
903
void_ptr = (typeof(void_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
904
void_ptr = (typeof(void_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
905
void_ptr = (typeof(void_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
906
void_ptr = (typeof(void_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
907
void_ptr = (typeof(void_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
908
void_ptr = (typeof(void_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
909
void_ptr = (typeof(void_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
910
void_ptr = (typeof(void_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
911
void_ptr = (typeof(void_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
912
void_ptr = (typeof(void_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
913
void_ptr = (typeof(void_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
914
void_ptr = (typeof(void_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
915
void_ptr = (typeof(void_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
916
void_ptr = (typeof(void_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
917
void_ptr = (typeof(void_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
918
void_ptr = (typeof(void_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
919
void_ptr = (typeof(void_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
92
bool_ptr = (typeof(bool_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
920
void_ptr = (typeof(void_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
921
void_ptr = (typeof(void_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
922
void_ptr = (typeof(void_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
923
void_ptr = (typeof(void_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
924
void_ptr = (typeof(void_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
925
void_ptr = (typeof(void_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
926
void_ptr = (typeof(void_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
927
void_ptr = (typeof(void_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
930
char_struct_ptr = (typeof(char_struct_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
931
char_struct_ptr = (typeof(char_struct_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
933
char_struct_ptr = (typeof(char_struct_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
934
char_struct_ptr = (typeof(char_struct_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
936
char_struct_ptr = (typeof(char_struct_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
938
char_struct_ptr = (typeof(char_struct_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
94
bool_ptr = (typeof(bool_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
940
char_struct_ptr = (typeof(char_struct_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
942
char_struct_ptr = (typeof(char_struct_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
944
char_struct_ptr = (typeof(char_struct_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
946
char_struct_ptr = (typeof(char_struct_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
948
char_struct_ptr = (typeof(char_struct_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
950
char_struct_ptr = (typeof(char_struct_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
952
char_struct_ptr = (typeof(char_struct_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
954
char_struct_ptr = (typeof(char_struct_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
956
char_struct_ptr = (typeof(char_struct_ptr))ldouble_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
958
char_struct_ptr = (typeof(char_struct_ptr))fcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
96
bool_ptr = (typeof(bool_ptr))float_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
960
char_struct_ptr = (typeof(char_struct_ptr))dcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
962
char_struct_ptr = (typeof(char_struct_ptr))lcomplex_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
963
char_struct_ptr = (typeof(char_struct_ptr))void_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
964
char_struct_ptr = (typeof(char_struct_ptr))char_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
966
char_struct_ptr = (typeof(char_struct_ptr))double_struct_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
968
char_struct_ptr = (typeof(char_struct_ptr))char_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
970
char_struct_ptr = (typeof(char_struct_ptr))double_union_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
972
char_struct_ptr = (typeof(char_struct_ptr))enum_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
974
char_struct_ptr = (typeof(char_struct_ptr))double_array_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
976
char_struct_ptr = (typeof(char_struct_ptr))func_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
979
double_struct_ptr = (typeof(double_struct_ptr))bool_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
98
bool_ptr = (typeof(bool_ptr))double_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
980
double_struct_ptr = (typeof(double_struct_ptr))char_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
982
double_struct_ptr = (typeof(double_struct_ptr))schar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
983
double_struct_ptr = (typeof(double_struct_ptr))uchar_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
985
double_struct_ptr = (typeof(double_struct_ptr))short_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
987
double_struct_ptr = (typeof(double_struct_ptr))ushort_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
989
double_struct_ptr = (typeof(double_struct_ptr))int_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
991
double_struct_ptr = (typeof(double_struct_ptr))uint_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
993
double_struct_ptr = (typeof(double_struct_ptr))long_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
995
double_struct_ptr = (typeof(double_struct_ptr))ulong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
997
double_struct_ptr = (typeof(double_struct_ptr))llong_ptr;
tests/usr.bin/xlint/lint1/msg_247_portable_int.c
999
double_struct_ptr = (typeof(double_struct_ptr))ullong_ptr;
tests/usr.bin/xlint/lint1/msg_357.c
20
typedef typeof(sizeof(0)) size_t;
tests/usr.bin/xlint/lint1/msg_358.c
20
typedef typeof(sizeof(0)) size_t;
tests/usr.bin/xlint/lint1/msg_359.c
15
typedef typeof(sizeof(0)) size_t;
tests/usr.bin/xlint/lint1/msg_360.c
14
typedef typeof(sizeof(0)) size_t;
tests/usr.bin/xlint/lint1/msg_361.c
13
typedef typeof(sizeof(0)) size_t;
tests/usr.bin/xlint/lint1/msg_362.c
13
typedef typeof(sizeof(0)) size_t;
tests/usr.bin/xlint/lint1/msg_363.c
15
typedef typeof(sizeof(0)) size_t;
tests/usr.bin/xlint/lint1/msg_364.c
13
typedef typeof(sizeof(0)) size_t;
tests/usr.bin/xlint/lint1/msg_365.c
12
typedef typeof(sizeof(0)) size_t;
tests/usr.bin/xlint/lint1/msg_366.c
17
typedef typeof(sizeof(0)) size_t;
tests/usr.bin/xlint/lint1/msg_367.c
15
typedef typeof(sizeof(0)) size_t;
tests/usr.bin/xlint/lint1/msg_368.c
13
typedef typeof(sizeof(0)) size_t;
tests/usr.bin/xlint/lint1/msg_369.c
15
typedef typeof(sizeof(0)) size_t;
tests/usr.bin/xlint/lint1/msg_370.c
15
typedef typeof(sizeof(0)) size_t;
tests/usr.bin/xlint/lint1/msg_371.c
14
typedef typeof(sizeof(0)) size_t;
tests/usr.bin/xlint/lint1/msg_372.c
13
typedef typeof(sizeof(0)) size_t;
tests/usr.bin/xlint/lint1/msg_373.c
14
typedef typeof(sizeof(0)) size_t;
tests/usr.bin/xlint/lint1/msg_374.c
13
typedef typeof(sizeof(0)) size_t;
tests/usr.bin/xlint/lint1/msg_375.c
13
typedef typeof(sizeof(0)) size_t;
tests/usr.bin/xlint/lint1/msg_376.c
12
typedef typeof(sizeof(0)) size_t;
tests/usr.bin/xlint/lint1/msg_377.c
16
typedef typeof(sizeof(0)) size_t;
tests/usr.bin/xlint/lint1/msg_378.c
14
typedef typeof(sizeof(0)) size_t;
tests/usr.bin/xlint/lint1/msg_386.c
17
typedef typeof(sizeof 0) size_t;
tests/usr.bin/xlint/lint1/parse_type_name.c
54
sink(sizeof(int(typeof(12345))));
tests/usr.bin/xlint/lint1/platform_int.c
12
void to_size(typeof(sizeof(int)));
tests/usr.bin/xlint/lint1/platform_long.c
12
void to_size(typeof(sizeof(int)));
tests/usr.bin/xlint/lint1/platform_lp64.c
30
void to_size_t(typeof(sizeof(int)));
tests/usr.bin/xlint/lint1/queries.c
222
bits.u9 = (typeof(bits.u9))u8;
tests/usr.bin/xlint/lint1/queries.c
40
typedef typeof(sizeof 0) size_t;
usr.sbin/pwd_mkdb/pwd_mkdb.c
188
((sizeof(sw) == 2 ? (typeof(sw))bswap16((uint16_t)sw) : \
usr.sbin/pwd_mkdb/pwd_mkdb.c
189
(sizeof(sw) == 4 ? (typeof(sw))bswap32((uint32_t)sw) : \
usr.sbin/pwd_mkdb/pwd_mkdb.c
190
(sizeof(sw) == 8 ? (typeof(sw))bswap64((uint64_t)sw) : (abort(), 0)))))
usr.sbin/tpctl/fb.c
48
#define ALIGN(a, n) ((typeof(a))(((int)(a) + (n) - 1) / (n) * (n)))
usr.sbin/tpctl/fb.c
51
typeof(a) tmp; \
usr.sbin/tprof/tprof_top.c
377
sizeof(typeof(*sample_n_kern_per_cpu[mode])) * ncpu);
usr.sbin/tprof/tprof_top.c
379
sizeof(typeof(*sample_n_user_per_cpu[mode])) * ncpu);
usr.sbin/tprof/tprof_top.c
381
sizeof(typeof(*sample_n_per_event[mode])) * nevent);
usr.sbin/tprof/tprof_top.c
383
sizeof(typeof(*sample_n_per_event_cpu[mode])) *
usr.sbin/tprof/tprof_top.c
410
sizeof(typeof(*sample_n_kern_per_cpu[mode])) * ncpu);
usr.sbin/tprof/tprof_top.c
412
sizeof(typeof(*sample_n_user_per_cpu[mode])) * ncpu);
usr.sbin/tprof/tprof_top.c
414
sizeof(typeof(*sample_n_per_event[mode])) * nevent);
usr.sbin/tprof/tprof_top.c
416
sizeof(typeof(*sample_n_per_event_cpu[mode])) *