Searched refs:thread_local (Results 1 – 25 of 373) sorted by relevance
12345678910>>...15
/external/clang/test/CodeGenCXX/ |
D | cxx11-thread-local.cpp | 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() [all …]
|
D | tls-init-funcs.cpp | 17 thread_local A a; 19 extern thread_local int ext; 23 thread_local int vt = 5; 28 thread_local int loc; in inl()
|
D | ms-thread_local.cpp | 12 thread_local A a = A(); 16 thread_local A b; 21 thread_local A &c = b; 22 thread_local A &d = c;
|
/external/clang/test/SemaCXX/ |
D | cxx11-thread-local.cpp | 4 static thread_local int a; 6 thread_local int c; // expected-error {{'thread_local' is only allowed on variable declarations}} 7 static thread_local int d; // expected-note {{here}} 10 thread_local int S::a; 11 thread_local int S::b; // expected-error {{thread-local declaration of 'b' follows non-thread-local… 12 thread_local int S::c; // expected-error {{non-static data member defined out-of-line}} 15 thread_local int x[3]; 16 thread_local int y[3]; 17 thread_local int z[3]; // expected-note {{previous}} 20 thread_local int x; in f() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Assembler/ |
D | tls-models.ll | 4 ; CHECK: @a = thread_local global i32 0 5 ; CHECK: @b = thread_local(localdynamic) global i32 0 6 ; CHECK: @c = thread_local(initialexec) global i32 0 7 ; CHECK: @d = thread_local(localexec) global i32 0 9 @a = thread_local global i32 0 10 @b = thread_local(localdynamic) global i32 0 11 @c = thread_local(initialexec) global i32 0 12 @d = thread_local(localexec) global i32 0
|
/external/llvm/test/Assembler/ |
D | tls-models.ll | 4 ; CHECK: @a = thread_local global i32 0 5 ; CHECK: @b = thread_local(localdynamic) global i32 0 6 ; CHECK: @c = thread_local(initialexec) global i32 0 7 ; CHECK: @d = thread_local(localexec) global i32 0 9 @a = thread_local global i32 0 10 @b = thread_local(localdynamic) global i32 0 11 @c = thread_local(initialexec) global i32 0 12 @d = thread_local(localexec) global i32 0
|
/external/libcxxabi/test/ |
D | thread_local_destruction_order.pass.cpp | 38 thread_local OrderChecker checker{ID}; in ~CreatesThreadLocalInDestructor() 46 thread_local CreatesThreadLocalInDestructor<2> creates_tl2; in thread_fn() 47 thread_local OrderChecker fn_thread_local{1}; in thread_fn() 48 thread_local CreatesThreadLocalInDestructor<0> creates_tl0; in thread_fn() 57 thread_local OrderChecker fn_thread_local{4}; in main() 58 thread_local CreatesThreadLocalInDestructor<3> creates_tl; in main()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Bitcode/ |
D | global-variables.3.2.ll | 32 @initialexec.var = thread_local(initialexec) global i32 0, align 4 33 ; CHECK: @initialexec.var = thread_local(initialexec) global i32 0, align 4 35 @localdynamic.var = thread_local(localdynamic) constant i32 0, align 4 36 ; CHECK: @localdynamic.var = thread_local(localdynamic) constant i32 0, align 4 38 @localexec.var = thread_local(localexec) constant i32 0, align 4 39 ; CHECK: @localexec.var = thread_local(localexec) constant i32 0, align 4
|
/external/llvm/test/Bitcode/ |
D | global-variables.3.2.ll | 32 @initialexec.var = thread_local(initialexec) global i32 0, align 4 33 ; CHECK: @initialexec.var = thread_local(initialexec) global i32 0, align 4 35 @localdynamic.var = thread_local(localdynamic) constant i32 0, align 4 36 ; CHECK: @localdynamic.var = thread_local(localdynamic) constant i32 0, align 4 38 @localexec.var = thread_local(localexec) constant i32 0, align 4 39 ; CHECK: @localexec.var = thread_local(localexec) constant i32 0, align 4
|
/external/llvm/test/CodeGen/Mips/ |
D | tls-models.ll | 4 @external_gd = external thread_local global i32 5 @internal_gd = internal thread_local global i32 42 7 @external_ld = external thread_local(localdynamic) global i32 8 @internal_ld = internal thread_local(localdynamic) global i32 42 10 @external_ie = external thread_local(initialexec) global i32 11 @internal_ie = internal thread_local(initialexec) global i32 42 13 @external_le = external thread_local(localexec) global i32 14 @internal_le = internal thread_local(localexec) global i32 42
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Mips/ |
D | tls-models.ll | 4 @external_gd = external thread_local global i32 5 @internal_gd = internal thread_local global i32 42 7 @external_ld = external thread_local(localdynamic) global i32 8 @internal_ld = internal thread_local(localdynamic) global i32 42 10 @external_ie = external thread_local(initialexec) global i32 11 @internal_ie = internal thread_local(initialexec) global i32 42 13 @external_le = external thread_local(localexec) global i32 14 @internal_le = internal thread_local(localexec) global i32 42
|
/external/autotest/frontend/ |
D | apache_auth.py | 7 from autotest_lib.frontend import thread_local 67 thread_local.set_user(user) 80 username = thread_local.get_user() 81 thread_local.set_user(None) 85 thread_local.set_user(models.User.objects.get(login=username))
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Hexagon/ |
D | tls_static.ll | 3 @dst_le = thread_local global i32 0, align 4 4 @src_le = thread_local global i32 0, align 4 16 @dst_ie = external thread_local global i32 17 @src_ie = external thread_local global i32
|
D | tls_pic.ll | 3 @dst_ie = thread_local(initialexec) global i32 0, align 4 4 @src_ie = thread_local(initialexec) global i32 0, align 4 18 @dst_gd = external thread_local global i32 19 @src_gd = external thread_local global i32
|
/external/llvm/test/CodeGen/Hexagon/ |
D | tls_static.ll | 3 @dst_le = thread_local global i32 0, align 4 4 @src_le = thread_local global i32 0, align 4 16 @dst_ie = external thread_local global i32 17 @src_ie = external thread_local global i32
|
D | tls_pic.ll | 3 @dst_ie = thread_local(initialexec) global i32 0, align 4 4 @src_ie = thread_local(initialexec) global i32 0, align 4 18 @dst_gd = external thread_local global i32 19 @src_gd = external thread_local global i32
|
/external/llvm/test/CodeGen/X86/ |
D | tlv-2.ll | 3 @b = thread_local global i32 5, align 4 4 @a = thread_local global i32 0, align 4 5 @c = internal thread_local global i32 0, align 4 6 @d = internal thread_local global i32 5, align 4
|
D | tls-models.ll | 9 @external_gd = external thread_local global i32 10 @internal_gd = internal thread_local global i32 42 12 @external_ld = external thread_local(localdynamic) global i32 13 @internal_ld = internal thread_local(localdynamic) global i32 42 15 @external_ie = external thread_local(initialexec) global i32 16 @internal_ie = internal thread_local(initialexec) global i32 42 18 @external_le = external thread_local(localexec) global i32 19 @internal_le = internal thread_local(localexec) global i32 42
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/ |
D | tlv-2.ll | 3 @b = thread_local global i32 5, align 4 4 @a = thread_local global i32 0, align 4 5 @c = internal thread_local global i32 0, align 4 6 @d = internal thread_local global i32 5, align 4
|
D | tls-models.ll | 9 @external_gd = external thread_local global i32 10 @internal_gd = internal thread_local global i32 42 12 @external_ld = external thread_local(localdynamic) global i32 13 @internal_ld = internal thread_local(localdynamic) global i32 42 15 @external_ie = external thread_local(initialexec) global i32 16 @internal_ie = internal thread_local(initialexec) global i32 42 18 @external_le = external thread_local(localexec) global i32 19 @internal_le = internal thread_local(localexec) global i32 42
|
/external/swiftshader/third_party/LLVM/test/CodeGen/X86/ |
D | tlv-2.ll | 3 @b = thread_local global i32 5, align 4 4 @a = thread_local global i32 0, align 4 5 @c = internal thread_local global i32 0, align 4 6 @d = internal thread_local global i32 5, align 4
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/ARM/ |
D | tls-models.ll | 11 @external_gd = external thread_local global i32 12 @internal_gd = internal thread_local global i32 42 14 @external_ld = external thread_local(localdynamic) global i32 15 @internal_ld = internal thread_local(localdynamic) global i32 42 17 @external_ie = external thread_local(initialexec) global i32 18 @internal_ie = internal thread_local(initialexec) global i32 42 20 @external_le = external thread_local(localexec) global i32 21 @internal_le = internal thread_local(localexec) global i32 42
|
/external/clang/test/PCH/ |
D | thread-local.cpp | 7 extern thread_local int a; 15 thread_local int b; // expected-error {{thread-local declaration of 'b' with dynamic initialization… 17 thread_local int c; // expected-error {{thread-local declaration of 'c' follows non-thread-local de…
|
/external/llvm/test/CodeGen/ARM/ |
D | tls-models.ll | 11 @external_gd = external thread_local global i32 12 @internal_gd = internal thread_local global i32 42 14 @external_ld = external thread_local(localdynamic) global i32 15 @internal_ld = internal thread_local(localdynamic) global i32 42 17 @external_ie = external thread_local(initialexec) global i32 18 @internal_ie = internal thread_local(initialexec) global i32 42 20 @external_le = external thread_local(localexec) global i32 21 @internal_le = internal thread_local(localexec) global i32 42
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AArch64/ |
D | emutls.ll | 27 @i1 = thread_local global i32 15 28 @i2 = external thread_local global i32 29 @i3 = internal thread_local global i32 15 30 @i4 = hidden thread_local global i32 15 31 @i5 = external hidden thread_local global i32 32 @s1 = thread_local global i16 15 33 @b1 = thread_local global i8 0 90 @_ZN1AIiE1xE = linkonce_odr thread_local global i32 0, comdat, align 4 91 @_ZN1AIfE1xE = linkonce_odr thread_local global float 0.000000e+00, comdat, align 4
|
12345678910>>...15