OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tls_model
(Results
1 - 25
of
25
) sorted by null
/external/clang/test/Sema/
attr-tls_model.c
3
#if !__has_attribute(
tls_model
)
4
#error "Should support
tls_model
attribute"
7
int f() __attribute((
tls_model
("global-dynamic"))); // expected-error {{'
tls_model
' attribute only applies to thread-local variables}}
9
int x __attribute((
tls_model
("global-dynamic"))); // expected-error {{'
tls_model
' attribute only applies to thread-local variables}}
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}
[
all
...]
/bionic/tests/libs/
elftls_tprel.cpp
34
__attribute__((
tls_model
("initial-exec"))) static __thread int tls_var_1 = 3;
35
__attribute__((
tls_model
("initial-exec"))) static __thread int tls_var_2 = 7;
45
__attribute__((
tls_model
("initial-exec"), weak)) extern "C" __thread int missing_weak_tls;
elftls_shared_var_ie.cpp
31
__attribute__((
tls_model
("initial-exec"))) extern "C" __thread int elftls_shared_var;
/external/clang/test/CodeGen/
thread-specifier.c
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")));
tls-model.c
17
int __thread __attribute__((
tls_model
("initial-exec"))) z;
/bionic/tests/
elftls_test.cpp
38
__attribute__((
tls_model
("local-exec"))) static __thread int tlsvar_le_zero;
41
__attribute__((
tls_model
("local-exec"))) static __thread int tlsvar_le_init = 10;
44
__attribute__((
tls_model
("initial-exec"))) extern "C" __thread int elftls_shared_var;
elftls_dl_test.cpp
43
__attribute__((
tls_model
("initial-exec"))) extern "C" __thread int elftls_shared_var;
/external/mesa3d/src/mapi/
u_current.h
33
__attribute__((
tls_model
("initial-exec")));
36
__attribute__((
tls_model
("initial-exec")));
u_current.c
103
__attribute__((
tls_model
("initial-exec")))
107
__attribute__((
tls_model
("initial-exec")));
/external/jemalloc/include/jemalloc/internal/
jemalloc_internal_defs_host.h
137
/* Non-empty if the
tls_model
attribute is supported. */
138
#define JEMALLOC_TLS_MODEL __attribute__((
tls_model
("initial-exec")))
/external/clang/test/SemaCXX/
cxx11-gnu-attrs.cpp
41
__thread int
tls_model
[[gnu::
tls_model
("local-exec")]];
variable
/external/jemalloc_new/include/jemalloc/internal/
jemalloc_internal_defs.h
162
/* Non-empty if the
tls_model
attribute is supported. */
163
#define JEMALLOC_TLS_MODEL __attribute__((
tls_model
("initial-exec")))
jemalloc_internal_defs_host.h
153
/* Non-empty if the
tls_model
attribute is supported. */
154
#define JEMALLOC_TLS_MODEL __attribute__((
tls_model
("initial-exec")))
/external/linux-kselftest/tools/testing/selftests/rseq/
rseq.c
33
__attribute__((
tls_model
("initial-exec"))) __thread
38
static __attribute__((
tls_model
("initial-exec"))) __thread
param_test.c
45
static __thread __attribute__((
tls_model
("initial-exec")))
50
static __thread __attribute__((
tls_model
("initial-exec"), unused))
/external/mesa3d/src/mapi/glapi/
glapi.h
92
__attribute__((
tls_model
("initial-exec")));
95
__attribute__((
tls_model
("initial-exec")));
/external/llvm/include/llvm/Transforms/
Instrumentation.h
23
extern __thread __attribute__((
tls_model
("initial-exec")))
29
extern __thread __attribute__((
tls_model
("initial-exec")))
/external/compiler-rt/lib/sanitizer_common/
sanitizer_tls_get_addr.cc
37
__attribute__((
tls_model
("initial-exec")))
/external/mesa3d/src/egl/main/
eglcurrent.c
49
__attribute__ ((
tls_model
("initial-exec")));
/external/mesa3d/src/glx/
glxcurrent.c
79
__thread void *__glX_tls_Context __attribute__ ((
tls_model
("initial-exec")))
glxclient.h
662
__attribute__ ((
tls_model
("initial-exec")));
/external/compiler-rt/lib/tsan/dd/
dd_interceptors.cc
18
__attribute__((
tls_model
("initial-exec")))
20
__attribute__((
tls_model
("initial-exec")))
/external/compiler-rt/lib/tsan/rtl/
tsan_rtl.h
451
__attribute__((
tls_model
("initial-exec")))
/external/dynamic_depth/internal/base/
port.h
453
#define ATTRIBUTE_INITIAL_EXEC __attribute__((
tls_model
("initial-exec")))
[
all
...]
/external/jemalloc_new/
configure
[
all
...]
Completed in 1042 milliseconds