Home | History | Annotate | Download | only in lint1

Lines Matching defs:int

105 int
109 /* expect-1: error: old-style declaration; add 'int' [1] */
131 int *const volatile cover_type_qualifier_list;
139 int signed_int;
140 unsigned int unsigned_int;
144 int member;
164 /* expect+2: error: old-style declaration; add 'int' [1] */
165 /* expect+1: error: syntax error 'int' [249] */
166 thread int thread_int;
167 __thread int thread_int;
168 /* expect+2: error: old-style declaration; add 'int' [1] */
169 /* expect+1: error: syntax error 'int' [249] */
170 __thread__ int thread_int;
175 /* expect+1: error: old-style declaration; add 'int' [1] */
187 const volatile int
202 unsigned int :0;
203 unsigned int bit:1;
204 unsigned int :0;
228 unsigned int :bits;
229 int named_member;
235 int
236 get_x(struct point3d { struct point3d_number { int v; } x, y, z; } arg)
251 int padding, plain, arr[2];
256 unsigned int off_plain:(unsigned long)&((s1 *)0)->plain;
257 unsigned int off_arr:(unsigned long)&((s1 *)0)->arr;
258 unsigned int off_arr_0:(unsigned long)&((s1 *)0)->arr[0];
259 unsigned int off_arr_3:(unsigned long)&((s1 *)0)->arr[3];
264 typedef int off_plain[-(int)(unsigned long)&((s1 *)0)->plain];
266 typedef int off_arr[-(int)(unsigned long)&((s1 *)0)->arr];
268 typedef int off_arr_0[-(int)(unsigned long)&((s1 *)0)->arr[0]];
270 typedef int off_arr_3[-(int)(unsigned long)&((s1 *)0)->arr[3]];
273 /* PR bin/39639: writing "long double" gave "long int" */
274 int
275 long_double_vs_long_int(long double *a, long int *b)
282 int member[0];
291 int i;
298 int x;
299 int y;
316 typedef void (*fprint_function)(int, const char *, ...);
321 /* expect+1: error: redeclaration of 'static_function' with type 'function(pointer to function(pointer to function(int, pointer to const char, ...) returning void, pointer to function(int, pointer to const char, ...) returning void, pointer to function(int, pointer to const char, ...) returning void, pointer to function(int, pointer to const char, ...) returning void) returning pointer to function(int, pointer to const char, ...) returning void) returning void', expected 'function(void) returning void' [347] */
340 /* expect+1: warning: constant -0x8000000000000000 too large for 'int' [56] */
341 typedef int shl_overflow_positive[1LL << 32 << 31];
342 /* expect+1: warning: constant -0x8000000000000000 too large for 'int' [56] */
343 typedef int shl_overflow_negative[-1LL << 32 << 31];