• Home
  • Raw
  • Download

Lines Matching refs:__thread

13 __thread int t1;
14 __thread extern int t2;
15 __thread static int t3;
21 __thread __private_extern__ int t4;
22 struct t5 { __thread int x; };
30 __thread int t6();
39 int f(__thread int t7) { // expected-error {{' is only allowed on variable declarations}} in f()
40 __thread int t8; in f()
46 extern __thread int t9; in f()
47 static __thread int t10; in f()
48 __thread __private_extern__ int t11; in f()
50__thread auto int t12a; // expected-error-re {{cannot combine with previous '{{__thread|_Thread_lo… in f()
51 …auto __thread int t12b; // expected-error {{cannot combine with previous 'auto' declaration specif… in f()
53 __thread auto t12a = 0; // expected-error {{'_Thread_local' variables must have global storage}} in f()
54 auto __thread t12b = 0; // expected-error {{'_Thread_local' variables must have global storage}} in f()
56__thread register int t13a; // expected-error-re {{cannot combine with previous '{{__thread|_Threa… in f()
57 …register __thread int t13b; // expected-error {{cannot combine with previous 'register' declaratio… in f()
60 __thread typedef int t14; // expected-error-re {{cannot combine with previous '{{__thread|_Thread_l…
61 __thread int t15; // expected-note {{previous definition is here}}
64 __thread int t16; // expected-error {{thread-local declaration of 't16' follows non-thread-local de…
74 __thread int thread_int;
87 __thread int non_const_init = non_const();
101 __thread S s;
114 __thread HasCtor var_with_ctor;
123 __thread int aggregate[10] = {0};