HomeSort by relevance Sort by last modified time
    Searched refs:tls (Results 201 - 225 of 328) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/deqp/framework/delibs/dethread/
deThreadTest.c 67 deThreadLocal tls = *(deThreadLocal*)arg; local
68 deThreadLocal_set(tls, DE_NULL);
138 /* Test tls. */
140 deThreadLocal tls; local
143 tls = deThreadLocal_create();
144 DE_TEST_ASSERT(tls);
146 deThreadLocal_set(tls, (void*)(deUintptr)0xff);
148 thread = deThread_create(threadTestThr4, &tls, DE_NULL);
152 DE_TEST_ASSERT((deUintptr)deThreadLocal_get(tls) == 0xff);
153 deThreadLocal_destroy(tls);
    [all...]
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-frv/
tls-relax-shared-1.d 1 #name: FRV TLS relocs, shared linking with relaxation
2 #source: tls-1.s
4 #ld: -shared tmpdir/tls-1-dep.so --version-script tls-1-shared.lds --relax
tls-shared-1.d 1 #name: FRV TLS relocs, shared linking with local binding
2 #source: tls-1.s
4 #ld: -shared tmpdir/tls-1-dep.so --version-script tls-1-shared.lds
tls-relax-dynamic-1.d 1 #name: FRV TLS relocs, dynamic linking with relaxation
2 #source: tls-1.s
4 #ld: tmpdir/tls-1-dep.so --relax
tls-relax-pie-1.d 1 #name: FRV TLS relocs, pie linking with relaxation
2 #source: tls-1.s
4 #ld: -pie tmpdir/tls-1-dep.so --relax
tls-relax-static-1.d 1 #name: FRV TLS relocs, static linking with relaxation
2 #source: tls-1.s
4 #ld: -static tmpdir/tls-1-dep.o --relax
  /external/valgrind/drd/scripts/
download-and-build-gcc 67 --enable-tls \
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/lib/ldscripts/
i386pe.xr 64 /* ___crt_xl_end__ is defined in the TLS Directory support code */
66 /* Windows TLS expects .tls$AAA to be at the start and .tls$ZZZ to be
68 be at the beginning of the section to enable SECREL32 relocations with TLS
70 .tls :
i386pe.xu 68 /* ___crt_xl_end__ is defined in the TLS Directory support code */
70 /* Windows TLS expects .tls$AAA to be at the start and .tls$ZZZ to be
72 be at the beginning of the section to enable SECREL32 relocations with TLS
74 .tls :
i386pep.xr 68 /* ___crt_xl_end__ is defined in the TLS Directory support code */
70 /* Windows TLS expects .tls$AAA to be at the start and .tls$ZZZ to be
71 at the end of the .tls section. This is important because _tls_start MUST
72 be at the beginning of the section to enable SECREL32 relocations with TLS
74 .tls :
i386pep.xu 73 /* ___crt_xl_end__ is defined in the TLS Directory support code */
75 /* Windows TLS expects .tls$AAA to be at the start and .tls$ZZZ to be
76 at the end of the .tls section. This is important because _tls_start MUST
77 be at the beginning of the section to enable SECREL32 relocations with TLS
79 .tls :
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/
tlsd.d 2 #name: i386 dynamic tls
tlsnopic.d 2 #name: i386 non-pic tls
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/m68k/
all.exp 114 run_dump_test tls-gd-3
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-aarch64/
gc-tls-relocs.d 9 # Executable with tls related relocs against global and local symbol gced.
tls-desc-ie.d 1 #source: tls-desc-ie.s
tls-relax-all.d 1 #source: tls-relax-all.s
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-cris/
tls-dso-tpoffgotcomm1.d 2 #source: tls-dso-tpoffgotcomm1.s
19 TLS off .* vaddr .* paddr .* align 2\*\*2
tls-e-tpoffcomm1.d 2 #source: tls-e-tpoffcomm1.s
15 TLS off 0x0+84 vaddr 0x0+82084 paddr 0x0+82084 align 2\*\*2
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-powerpc/
tls.s 61 lhzx 10,9,ie0@tls #R_PPC64_TLS ie0
90 sthx 10,9,ie0@tls #R_PPC64_TLS ie4
  /bionic/libc/arch-x86/bionic/
__bionic_clone.S 3 // pid_t __bionic_clone(int flags, void* child_stack, pid_t* parent_tid, void* tls, pid_t* child_tid, int (*fn)(void*), void* arg);
19 movl 28(%esp), %esi # tls
  /external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
OkHttp.java 40 if (benchmark.tls) {
UrlConnection.java 36 if (benchmark.tls) {
  /external/libchrome/sandbox/linux/services/
credentials.cc 60 // Disable sanitizers that rely on TLS and may write to non-stack memory.
67 // any memory other than the stack or errno. Reads from TLS may be different
107 void* tls = nullptr; local
110 // Since clone writes to the new child's TLS before returning, we must set a
111 // new TLS to avoid corrupting the current process's TLS. On ARCH_CPU_X86,
112 // glibc performs syscalls by calling a function pointer in TLS, so we do not
117 tls = tls_buf;
120 pid = clone(ChrootToSelfFdinfo, stack, clone_flags, nullptr, nullptr, tls,
syscall_wrappers.cc 39 std::nullptr_t tls) {
56 return syscall(__NR_clone, flags, child_stack, ptid, ctid, tls);
60 return syscall(__NR_clone, flags, child_stack, ptid, tls, ctid);

Completed in 423 milliseconds

1 2 3 4 5 6 7 891011>>