OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:thread_local
(Results
1 - 25
of
218
) sorted by null
1
2
3
4
5
6
7
8
9
/external/llvm/test/Assembler/
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/clang/test/SemaCXX/
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 declaration}}
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}
[
all
...]
cxx11-thread-local-print.cpp
5
// CHECK:
thread_local
int cxx11_tl;
8
thread_local
int cxx11_tl;
11
// CHECK:
thread_local
int cxx11_tl;
14
thread_local
int cxx11_tl;
cxx11-thread-unsupported.cpp
4
thread_local
int x; // expected-error {{thread-local storage is not supported for the current target}}
/external/clang/test/CodeGenCXX/
tls-init-funcs.cpp
3
// CHECK: @a = internal
thread_local
global
4
// CHECK: @_Z2vtIiE = linkonce_odr
thread_local
global i32 5
5
// CHECK: @_ZZ3inlvE3loc = linkonce_odr
thread_local
global i32 0
17
thread_local
A a;
19
extern
thread_local
int ext;
23
thread_local
int vt = 5;
28
thread_local
int loc;
ms-thread_local.cpp
9
// CHECK-DAG: @"\01??$a@X@@3UA@@A" = linkonce_odr
thread_local
global %struct.A zeroinitializer, comdat, align 1
12
thread_local
A a = A();
14
// CHECK-DAG: @"\01?b@@3UA@@A" =
thread_local
global %struct.A zeroinitializer, align 1
16
thread_local
A b;
21
thread_local
A &c = b;
22
thread_local
A &d = c;
cxx11-thread-local.cpp
9
// LINUX: @a =
thread_local
global i32 0
10
// DARWIN: @a = internal
thread_local
global i32 0
11
thread_local
int a = f();
12
extern
thread_local
int b;
15
// CHECK: @_ZL1d = internal
thread_local
global i32 0
16
static
thread_local
int d = g();
18
struct U { static
thread_local
int m; };
19
// LINUX: @_ZN1U1mE =
thread_local
global i32 0
20
// DARWIN: @_ZN1U1mE = internal
thread_local
global i32 0
21
thread_local
int U::m = f()
[
all
...]
pr18635.cpp
4
// CHECK: [[X_GLOBAL:@[^ ]+]]{{.*}}
thread_local
global
20
thread_local
unique_ptr<int> x;
/external/clang/test/CodeGen/
thread-specifier.c
3
// CHECK: @b = external
thread_local
global
4
// CHECK: @d.e = internal
thread_local
global
5
// CHECK: @d.f = internal
thread_local
global
6
// CHECK: @f.a = internal
thread_local
(initialexec) global
7
// CHECK: @a =
thread_local
global
8
// CHECK: @g =
thread_local
global
9
// CHECK: @h =
thread_local
(localdynamic) global
10
// CHECK: @i =
thread_local
(initialexec) global
11
// CHECK: @j =
thread_local
(localexec) global
tls-model.c
23
// CHECK-GD: @f.y = internal
thread_local
global i32 0
25
// CHECK-GD: @x =
thread_local
global i32 0
26
// CHECK-GD: @z =
thread_local
(initialexec) global i32 0
29
// CHECK-LD: @f.y = internal
thread_local
(localdynamic) global i32 0
31
// CHECK-LD: @x =
thread_local
(localdynamic) global i32 0
32
// CHECK-LD: @z =
thread_local
(initialexec) global i32 0
35
// CHECK-IE: @f.y = internal
thread_local
(initialexec) global i32 0
37
// CHECK-IE: @x =
thread_local
(initialexec) global i32 0
38
// CHECK-IE: @z =
thread_local
(initialexec) global i32 0
41
// CHECK-LE: @f.y = internal
thread_local
(localexec) global i32
[
all
...]
darwin-thread-specifier.c
2
// CHECK: @b =
thread_local
global i32 5, align 4
/external/llvm/test/CodeGen/Mips/
tls-alias.ll
3
@foo =
thread_local
global i32 42
4
@bar = hidden
thread_local
alias i32, i32* @foo
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
micromips-rdhwr-directives.ll
4
@a = external
thread_local
global i32
rdhwr-directives.ll
3
@a = external
thread_local
global i32
/external/llvm/test/Bitcode/
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/SystemZ/
tls-07.ll
8
@x =
thread_local
(localdynamic) global i32 0
9
@y =
thread_local
(localdynamic) global i32 0
tls-06.ll
9
@x =
thread_local
global i32 0
10
@y =
thread_local
global i32 0
/external/llvm/test/CodeGen/X86/
global-sections-tls.ll
4
@G1 = internal
thread_local
global i32 0 ; <i32*> [#uses=1]
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
tlv-3.ll
6
@foo = weak_odr
thread_local
global i8 1, align 4
2009-04-24.ll
7
@i =
thread_local
global i32 15
x86-64-tls-1.ll
2
@tm_nest_level = internal
thread_local
global i32 0
/external/autotest/frontend/
apache_auth.py
7
from autotest_lib.frontend import
thread_local
52
thread_local
.set_user(). If no such header is found, looks for
67
thread_local
.set_user(user)
73
system, and replaces the username in
thread_local
with the actual User model
80
username =
thread_local
.get_user()
81
thread_local
.set_user(None)
85
thread_local
.set_user(models.User.objects.get(login=username))
/external/clang/test/CXX/concepts-ts/dcl.dcl/dcl.spec/dcl.spec.concept/
p2.cpp
3
template<typename T> concept
thread_local
bool VCTL = true; // expected-error {{variable concept cannot be declared '
thread_local
'}}
Completed in 686 milliseconds
1
2
3
4
5
6
7
8
9