OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:__thread
(Results
1 - 25
of
158
) sorted by null
1
2
3
4
5
6
7
/external/valgrind/main/none/tests/
tls2.c
4
__thread
int static_extern;
tls2_so.c
4
__thread
int so_extern;
tls_so.c
6
extern
__thread
int so_extern;
7
static
__thread
int so_local;
8
extern
__thread
int global;
tls.c
12
static
__thread
int local;
13
__thread
int global;
14
extern
__thread
int static_extern;
15
extern
__thread
int so_extern;
108
printf("FAILED: no compiler support for
__thread
\n");
/external/clang/test/CodeGen/
thread-specifier.c
16
__thread
int a;
17
extern
__thread
int b;
20
__thread
static int e;
21
__thread
static union {float a; int b;} f = {.b = 1};
25
__thread
int g __attribute__((tls_model("global-dynamic")));
26
__thread
int h __attribute__((tls_model("local-dynamic")));
27
__thread
int i __attribute__((tls_model("initial-exec")));
28
__thread
int j __attribute__((tls_model("local-exec")));
31
__thread
static int a __attribute__((tls_model("initial-exec")));
darwin-thread-specifier.c
3
__thread
int b = 5;
tls-model.c
7
int
__thread
x;
9
static int
__thread
y;
12
int
__thread
__attribute__((tls_model("initial-exec"))) z;
/external/clang/test/Sema/
thread-specifier.c
13
__thread
int t1;
14
__thread
extern int t2;
15
__thread
static int t3;
17
// expected-warning@-3 {{'
__thread
' before 'extern'}}
18
// expected-warning@-3 {{'
__thread
' before 'static'}}
21
__thread
__private_extern__ int t4;
22
struct t5 {
__thread
int x; };
24
// expected-error-re@-2 {{'(
__thread
|_Thread_local|thread_local)' is only allowed on variable declarations}}
30
__thread
int t6();
32
// expected-error@-2 {{'
__thread
' is only allowed on variable declarations}
[
all
...]
attr-tls_model.c
10
static
__thread
int y __attribute((tls_model("global-dynamic"))); // no-warning
12
static
__thread
int y __attribute((tls_model("local", "dynamic"))); // expected-error {{'tls_model' attribute takes one argument}}
13
static
__thread
int y __attribute((tls_model(123))); // expected-error {{'tls_model' attribute requires a string}}
14
static
__thread
int y __attribute((tls_model("foobar"))); // expected-error {{tls_model must be "global-dynamic", "local-dynamic", "initial-exec" or "local-exec"}}
tls.c
23
__thread
int x;
/external/clang/test/SemaCXX/
cxx11-thread-local-print.cpp
3
// CHECK:
__thread
int gnu_tl;
6
__thread
int gnu_tl;
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
h_errno.cc
9
static
__thread
int __h_errno__;
/external/chromium_org/third_party/mesa/src/src/mapi/mapi/
u_current.h
33
extern
__thread
struct mapi_table *u_current_table
36
extern
__thread
void *u_current_user
/external/mesa3d/src/mapi/mapi/
u_current.h
33
extern
__thread
struct mapi_table *u_current_table
36
extern
__thread
void *u_current_user
/external/compiler-rt/lib/lsan/lit_tests/TestCases/SharedLibs/
huge_tls_lib_so.cc
7
__thread
void *huge_thread_local_array[(1 << 20) / sizeof(void *)]; // NOLINT
/external/compiler-rt/lib/tsan/lit_tests/
tls_race.cc
11
static
__thread
int Var = 42;
tls_race2.cc
12
static
__thread
int Var = 42;
/external/compiler-rt/lib/lsan/lit_tests/TestCases/
fork.cc
11
__thread
void *thread_local_var;
use_tls_static.cc
11
__thread
void *tls_var;
/external/pixman/pixman/
config.h
23
#define TLS
__thread
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/common/
dri_test.c
14
PUBLIC
__thread
struct _glapi_table * _glapi_tls_Dispatch
17
PUBLIC
__thread
void * _glapi_tls_Context
/external/clang/test/CXX/class/class.friend/
p6.cpp
14
friend
__thread
class G; // expected-error {{'
__thread
' is invalid in friend declarations}}
/external/llvm/test/MC/MachO/
tlv-bss.ll
13
; static
__thread
void* val;
16
; template<class T>
__thread
void* Tls<T>::val;
/external/mesa3d/src/mesa/drivers/dri/common/
dri_test.c
14
PUBLIC
__thread
struct _glapi_table * _glapi_tls_Dispatch
17
PUBLIC
__thread
void * _glapi_tls_Context
/external/compiler-rt/lib/asan/lit_tests/TestCases/Linux/
unpoison_tls.cc
12
__thread
int64_t tls_var[2];
Completed in 1232 milliseconds
1
2
3
4
5
6
7