HomeSort by relevance Sort by last modified time
    Searched refs:__thread (Results 1 - 25 of 96) sorted by null

1 2 3 4

  /external/clang/test/CodeGen/
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;
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")));
  /external/clang/test/Sema/
tls.c 23 __thread int x;
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"}}
  /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/chromium_org/native_client_sdk/src/libraries/nacl_io/
h_errno.cc 9 static __thread int __h_errno__;
  /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/clang/test/SemaCXX/
cxx11-thread-local-print.cpp 3 // CHECK: __thread int gnu_tl;
6 __thread int gnu_tl;
  /external/pixman/pixman/
config.h 23 #define TLS __thread
  /external/compiler-rt/lib/lsan/lit_tests/TestCases/
use_tls_static.cc 11 __thread void *tls_var;
fork.cc 11 __thread void *thread_local_var;
  /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/clang/test/CXX/class/class.friend/
p6.cpp 14 friend __thread class G; // expected-error {{'__thread' is invalid in friend declarations}}
  /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/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/mesa3d/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/mesa/drivers/dri/common/
dri_test.c 14 PUBLIC __thread struct _glapi_table * _glapi_tls_Dispatch
17 PUBLIC __thread void * _glapi_tls_Context
  /external/chromium_org/third_party/tcmalloc/chromium/src/
linux_shadow_stacks.cc 16 __thread
18 __thread
20 __thread
  /external/compiler-rt/lib/asan/lit_tests/TestCases/Linux/
unpoison_tls.cc 12 __thread int64_t tls_var[2];

Completed in 538 milliseconds

1 2 3 4