HomeSort by relevance Sort by last modified time
    Searched full:tls_model (Results 1 - 25 of 35) sorted by null

1 2

  /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...]
  /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;
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-plugin/
run-ie.c 5 __thread int tls_ie __attribute__((tls_model("initial-exec"))) = 4;
  /external/mesa3d/src/mapi/mapi/
u_current.h 34 __attribute__((tls_model("initial-exec")));
37 __attribute__((tls_model("initial-exec")));
u_current.c 103 __attribute__((tls_model("initial-exec")))
107 __attribute__((tls_model("initial-exec")));
  /external/mesa3d/src/mesa/drivers/dri/common/
dri_test.c 15 __attribute__((tls_model("initial-exec")));
18 __attribute__((tls_model("initial-exec")));
  /external/clang/test/SemaCXX/
cxx11-gnu-attrs.cpp 40 __thread int tls_model [[gnu::tls_model("local-exec")]]; variable
  /external/mesa3d/src/mapi/glapi/
glapi.h 89 __attribute__((tls_model("initial-exec")));
92 __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/tsan/dd/
dd_interceptors.cc 21 __attribute__((tls_model("initial-exec")))
23 __attribute__((tls_model("initial-exec")))
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_tls_get_addr.cc 37 __attribute__((tls_model("initial-exec")))
  /external/jemalloc/include/jemalloc/internal/
jemalloc_internal_defs.h.in 102 /* Non-empty if the tls_model attribute is supported. */
jemalloc_internal_defs.h 107 /* Non-empty if the tls_model attribute is supported. */
  /external/mesa3d/src/egl/main/
eglcurrent.c 55 __attribute__ ((tls_model("initial-exec")));
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
coretypes.h 103 enum tls_model { enum
output.h 531 enum tls_model);
rtl.h     [all...]
  /external/mesa3d/src/glx/
glxcurrent.c 89 __thread void *__glX_tls_Context __attribute__ ((tls_model("initial-exec")))
glxclient.h 633 __attribute__ ((tls_model("initial-exec")));
  /external/jemalloc/
configure.ac 441 dnl Check for tls_model attribute support (clang 3.0 still lacks support).
444 JE_COMPILABLE([tls_model attribute], [],
446 __attribute__((tls_model("initial-exec"), unused)) foo;
452 [__attribute__((tls_model("initial-exec")))])
    [all...]
  /external/mesa3d/docs/
dispatch.html 153 __attribute__((tls_model("initial-exec")));
  /external/clang/docs/CommandGuide/
clang.rst 308 model can be overridden with the tls_model attribute. The compiler will try
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl.h 418 __attribute__((tls_model("initial-exec")))
  /external/mesa3d/src/mesa/drivers/x11/
glxapi.c 163 __attribute__((tls_model("initial-exec")));
    [all...]

Completed in 1859 milliseconds

1 2