Lines Matching refs:thread_local
11 thread_local int a = f();
12 extern thread_local int b;
16 static thread_local int d = g();
18 struct U { static thread_local int m; };
21 thread_local int U::m = f();
31 static thread_local U u;
35 template<typename T> struct V { static thread_local int m; };
36 template<typename T> thread_local int V<T>::m = g();
87 static thread_local int n = g(); in f()
140 static thread_local S s; in tls_dtor()
147 static thread_local T t; in tls_dtor()
154 static thread_local const S &u = S(); in tls_dtor()
162 thread_local int n; in PR15991()
168 static thread_local int n;
179 thread_local int anon_i{1};