Lines Matching refs:a
29 __attribute__ ((aligned(0x20))) int a; member
38 .a = INIT_A,
59 if (s.a != INIT_A || s.b != INIT_B) in check_s()
62 check_alignment (thr_name, "s.a", &s.a, 0x20); in check_s()
71 ++s.a; in tf()
82 pthread_attr_t a; in do_test() local
84 xpthread_attr_init (&a); in do_test()
87 xpthread_attr_setstacksize (&a, STACK_SIZE); in do_test()
96 for (j = 0; j < M; ++j, ++s.a) in do_test()
97 th[j] = xpthread_create (&a, tf, NULL); in do_test()
108 xpthread_attr_setstack (&a, thr_stack + 1, STACK_SIZE); in do_test()
109 th = xpthread_create (&a, tf, NULL); in do_test()
113 xpthread_attr_destroy (&a); in do_test()