Home | History | Annotate | Download | only in ptr.align

Lines Matching defs:buf

20     char buf[N];
22 void* p = &buf[0];
25 assert(p == &buf[0]);
29 p = &buf[1];
32 assert(p == &buf[4]);
36 p = &buf[2];
39 assert(p == &buf[4]);
43 p = &buf[3];
46 assert(p == &buf[4]);
50 p = &buf[4];
53 assert(p == &buf[4]);
57 p = &buf[0];
60 assert(p == &buf[0]);
64 p = &buf[1];
67 assert(p == &buf[4]);
71 p = &buf[1];
74 assert(p == &buf[1]);
78 p = &buf[0];
81 assert(p == &buf[0]);