Lines Matching refs:thread_local
19 thread_local int a = f();
20 extern thread_local int b;
24 static thread_local int d = g();
26 struct U { static thread_local int m; };
29 thread_local int U::m = f();
39 static thread_local U u;
43 template<typename T> struct V { static thread_local int m; };
44 template<typename T> thread_local int V<T>::m = g();
46 template<typename T> struct W { static thread_local int m; };
47 template<typename T> thread_local int W<T>::m = 123;
50 template<typename T> struct X { static thread_local Dtor m; };
51 template<typename T> thread_local Dtor X<T>::m;
56 template thread_local int V<float>::m;
57 template thread_local int W<float>::m;
58 template thread_local Dtor X<float>::m;
60 extern template thread_local int V<char>::m;
61 extern template thread_local int W<char>::m;
62 extern template thread_local Dtor X<char>::m;
123 static thread_local int n = g(); in f()
242 static thread_local S s; in tls_dtor()
250 static thread_local T t; in tls_dtor()
258 static thread_local const S &u = S(); in tls_dtor()
287 thread_local int n; in PR15991()
293 static thread_local int n;
304 thread_local int anon_i{f()};