OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:__thread
(Results
26 - 50
of
158
) sorted by null
1
2
3
4
5
6
7
/external/compiler-rt/lib/lsan/lit_tests/TestCases/
fork_threaded.cc
13
__thread
void *thread_local_var;
/external/compiler-rt/lib/tsan/lit_tests/
mutexset7.cc
7
__thread
int huge[1024*1024];
/external/chromium_org/third_party/mesa/src/src/mapi/glapi/
glapi.h
88
_GLAPI_EXPORT extern
__thread
struct _glapi_table * _glapi_tls_Dispatch
91
_GLAPI_EXPORT extern
__thread
void * _glapi_tls_Context
/external/mesa3d/src/mapi/glapi/
glapi.h
88
_GLAPI_EXPORT extern
__thread
struct _glapi_table * _glapi_tls_Dispatch
91
_GLAPI_EXPORT extern
__thread
void * _glapi_tls_Context
/external/chromium_org/ppapi/lib/gl/gles2/
gl2ext_ppapi.c
18
#define PP_TLS
__thread
/external/chromium_org/third_party/tcmalloc/chromium/src/
linux_shadow_stacks.cc
16
__thread
18
__thread
20
__thread
thread_cache.h
249
// in a
__thread
variable since
__thread
variables are faster to read
251
// because
__thread
variables provide no way to run cleanup code when
261
static
__thread
ThreadCache* threadlocal_heap_
401
//
__thread
is faster, but only when the kernel supports it
stacktrace_libunwind-inl.h
58
static
__thread
int recursive;
/external/clang/test/SemaCXX/
cxx11-gnu-attrs.cpp
25
__thread
int tls_model [[gnu::tls_model("local-exec")]];
/sdk/emulator/opengl/tests/ut_renderer/
RenderingThread.h
67
static
__thread
RenderingThread *m_tls;
/external/chromium_org/third_party/tcmalloc/vendor/src/
thread_cache.h
243
// in a
__thread
variable since
__thread
variables are faster to read
245
// because
__thread
variables provide no way to run cleanup code when
255
static
__thread
ThreadCache* threadlocal_heap_
374
//
__thread
is faster, but only when the kernel supports it
stacktrace_libunwind-inl.h
58
static
__thread
int recursive;
thread_cache.cc
66
__thread
ThreadCache* ThreadCache::threadlocal_heap_
381
// Also keep a copy in
__thread
for faster retrieval
416
// Also update the copy in
__thread
/external/clang/test/SemaObjC/
arc.m
433
static
__thread
id test20_implicit; // expected-error {{thread-local variable has non-trivial ownership: type is '__strong id'}}
434
static
__thread
__strong id test20_strong; // expected-error {{thread-local variable has non-trivial ownership: type is '__strong id'}}
435
static
__thread
__weak id test20_weak; // expected-error {{thread-local variable has non-trivial ownership: type is '__weak id'}}
436
static
__thread
__autoreleasing id test20_autoreleasing; // expected-error {{thread-local variable has non-trivial ownership: type is '__autoreleasing id'}} expected-error {{global variables cannot have __autoreleasing ownership}}
437
static
__thread
__unsafe_unretained id test20_unsafe;
439
static
__thread
id test20_implicit; // expected-error {{thread-local variable has non-trivial ownership: type is '__strong id'}}
440
static
__thread
__strong id test20_strong; // expected-error {{thread-local variable has non-trivial ownership: type is '__strong id'}}
441
static
__thread
__weak id test20_weak; // expected-error {{thread-local variable has non-trivial ownership: type is '__weak id'}}
442
static
__thread
__autoreleasing id test20_autoreleasing; // expected-error {{thread-local variable has non-trivial ownership: type is '__autoreleasing id'}} expected-error {{global variables cannot have __autoreleasing ownership}}
443
static
__thread
__unsafe_unretained id test20_unsafe
[
all
...]
/external/clang/test/Misc/
ast-dump-decl.c
141
__thread
int TestVarDeclThread;
/external/chromium_org/third_party/mesa/src/src/mapi/mapi/
u_current.c
102
__thread
struct mapi_table *u_current_table
106
__thread
void *u_current_user
/external/mesa3d/src/mapi/mapi/
u_current.c
102
__thread
struct mapi_table *u_current_table
106
__thread
void *u_current_user
/external/chromium_org/third_party/tcmalloc/vendor/
configure.ac
294
# If we support
__thread
, that can speed up tcmalloc a bit.
298
AC_MSG_CHECKING([for
__thread
])
301
#endif], [static
__thread
int p = 0])],
303
Define to 1 if compiler supports
__thread
)
334
# We also need to check if the kernel supports
__thread
, which requires uname()
/external/compiler-rt/lib/tsan/tests/rtl/
tsan_test_util_linux.cc
33
static
__thread
bool expect_report;
34
static
__thread
bool expect_report_reported;
35
static
__thread
ReportType expect_report_type;
tsan_posix.cc
74
static
__thread
int local_var;
/external/chromium_org/third_party/mesa/src/src/egl/main/
eglcurrent.c
54
static
__thread
const _EGLThreadInfo *_egl_TLS
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/
p2-0x.cpp
19
using G =
__thread
void(int n); // expected-error {{type name does not allow storage class to be specified}}
/external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
p1.cpp
40
__thread
int ti = 100; // expected-note 2{{here}}
/external/clang/test/OpenMP/
threadprivate_messages.cpp
87
static
__thread
int t; // expected-note {{'t' defined here}}
/external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_common_test.cc
130
static
__thread
int thread_var;
Completed in 1141 milliseconds
1
2
3
4
5
6
7