OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:__thread
(Results
51 - 75
of
171
) sorted by null
1
2
3
4
5
6
7
/external/clang/test/SemaObjC/
arc.m
435
static
__thread
id test20_implicit; // expected-error {{thread-local variable has non-trivial ownership: type is '__strong id'}}
436
static
__thread
__strong id test20_strong; // expected-error {{thread-local variable has non-trivial ownership: type is '__strong id'}}
437
static
__thread
__weak id test20_weak; // expected-error {{thread-local variable has non-trivial ownership: type is '__weak id'}}
438
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}}
439
static
__thread
__unsafe_unretained id test20_unsafe;
441
static
__thread
id test20_implicit; // expected-error {{thread-local variable has non-trivial ownership: type is '__strong id'}}
442
static
__thread
__strong id test20_strong; // expected-error {{thread-local variable has non-trivial ownership: type is '__strong id'}}
443
static
__thread
__weak id test20_weak; // expected-error {{thread-local variable has non-trivial ownership: type is '__weak id'}}
444
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}}
445
static
__thread
__unsafe_unretained id test20_unsafe
[
all
...]
/external/chromium_org/third_party/tcmalloc/chromium/src/
stacktrace_libunwind-inl.h
58
static
__thread
int recursive;
/external/chromium_org/third_party/tcmalloc/vendor/src/
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/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/compiler-rt/lib/tsan/dd/
dd_interceptors.cc
22
static
__thread
Thread *thr;
24
static
__thread
volatile int initing;
/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/compiler-rt/lib/sanitizer_common/
sanitizer_tls_get_addr.cc
38
static
__thread
DTLS dtls;
/external/elfutils/0.153/libasm/
ChangeLog
12
* asm_error.c: Always use
__thread
. Remove all !USE_TLS code.
/external/elfutils/0.153/libdw/
dwarf_error.c
65
static
__thread
int global_error;
/external/elfutils/0.153/libdwfl/
dwfl_error.c
68
static
__thread
int global_error;
/external/llvm/test/DebugInfo/X86/
tls.ll
58
;
__thread
int tls;
/external/mesa3d/src/egl/main/
eglcurrent.c
54
static
__thread
const _EGLThreadInfo *_egl_TLS
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/
mutex
773
extern
__thread
void* __once_callable;
774
extern
__thread
void (*__once_call)();
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/
mutex
747
extern
__thread
void* __once_callable;
748
extern
__thread
void (*__once_call)();
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/
mutex
747
extern
__thread
void* __once_callable;
748
extern
__thread
void (*__once_call)();
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/
mutex
720
extern
__thread
void* __once_callable;
721
extern
__thread
void (*__once_call)();
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/
mutex
720
extern
__thread
void* __once_callable;
721
extern
__thread
void (*__once_call)();
Completed in 2152 milliseconds
1
2
3
4
5
6
7