Lines Matching refs:aptr
93 static void do_the_access(volatile union aligntest *aptr) in do_the_access() argument
95 aptr->thelonglong = 2; in do_the_access()
96 aptr->thelonglong; in do_the_access()
99 aptr->thedouble = 3.0; in do_the_access()
100 aptr->thedouble; in do_the_access()
103 aptr->theuintmax_t = 4; in do_the_access()
104 aptr->theuintmax_t; in do_the_access()
106 aptr->thepfunc = test_main; in do_the_access()
107 aptr->thepfunc; in do_the_access()
109 aptr->thetime_t = 3; in do_the_access()
110 aptr->thetime_t; in do_the_access()
133 union aligntest *aptr = NULL; in ZTEST() local
136 aptr = malloc(sizeof(*aptr)); in ZTEST()
137 if (aptr) { in ZTEST()
138 do_the_access(aptr); in ZTEST()
140 free(aptr); in ZTEST()
148 union aligntest *aptr = NULL; in ZTEST() local
153 aptr = malloc(sizeof(*aptr)); in ZTEST()
154 if (aptr) { in ZTEST()
155 do_the_access(aptr); in ZTEST()
157 free(aptr); in ZTEST()
165 union aligntest *aptr = NULL; in ZTEST() local
168 aptr = malloc(sizeof(*aptr)); in ZTEST()
169 if (aptr) { in ZTEST()
170 do_the_access(aptr); in ZTEST()
172 free(aptr); in ZTEST()