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 12 int __thread __attribute__((tls_model("initial-exec"))) z;
  /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 27 __thread int tls_model [[gnu::tls_model("local-exec")]]; variable
  /external/llvm/include/llvm/Transforms/
Instrumentation.h 22 extern __thread __attribute__((tls_model("initial-exec")))
28 extern __thread __attribute__((tls_model("initial-exec")))
  /external/mesa3d/src/mapi/glapi/
glapi.h 89 __attribute__((tls_model("initial-exec")));
92 __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 108 /* Non-empty if the tls_model attribute is supported. */
jemalloc_internal_defs.h.in 102 /* 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);
  /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 409 dnl Check for tls_model attribute support (clang 3.0 still lacks support).
412 JE_COMPILABLE([tls_model attribute], [],
414 __attribute__((tls_model("initial-exec"), unused)) foo;
420 [__attribute__((tls_model("initial-exec")))])
    [all...]
ChangeLog 160 - Fix tls_model configuration to enable the initial-exec model when possible.
    [all...]
  /external/mesa3d/docs/
dispatch.html 153 __attribute__((tls_model("initial-exec")));
  /external/clang/docs/
AttributeReference.rst 732 tls_model (gnu::tls_model)
739 The ``tls_model`` attribute allows you to specify which thread-local storage
    [all...]
  /external/clang/docs/tools/
clang.pod 357 overridden with the tls_model attribute. The compiler will try to choose a more
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl.h 413 __attribute__((tls_model("initial-exec")))
  /external/mesa3d/src/mesa/drivers/x11/
glxapi.c 163 __attribute__((tls_model("initial-exec")));
    [all...]

Completed in 1411 milliseconds

1 2