Home | History | Annotate | Download | only in lint1

Lines Matching refs:counter

94  * (in this case 'struct counter') and a private part that is only visible to
104 struct counter {
109 struct counter public_part;
115 struct counter *
124 struct counter *
131 return (struct counter *)impl;
135 counter_increment(struct counter *counter)
139 * from 'struct counter' to 'struct counter_impl'.
141 struct counter_impl *impl = (struct counter_impl *)counter;
223 sink((struct counter *)(char *)ptr);
225 sink((struct counter *)(unsigned char *)ptr);
227 /* expect+1: warning: pointer cast from 'signed char' to unrelated 'struct counter' [247] */
228 sink((struct counter *)(signed char *)ptr);