OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MIN_TLS_SLOT
(Results
1 - 4
of
4
) sorted by null
/bionic/libc/private/
bionic_asm_tls.h
83
#define
MIN_TLS_SLOT
-1 // update this value when reserving a slot
103
#define
MIN_TLS_SLOT
0
119
#define BIONIC_TLS_SLOTS (MAX_TLS_SLOT -
MIN_TLS_SLOT
+ 1)
bionic_tls.h
65
return raw_slots_storage[tpindex -
MIN_TLS_SLOT
];
/bionic/libc/bionic/
bionic_elf_tls.cpp
88
return offset_bionic_tcb_ + (-
MIN_TLS_SLOT
* sizeof(void*));
125
offset_bionic_tcb_ = result - exe_tpoff - (-
MIN_TLS_SLOT
* sizeof(void*));
132
static_assert(
MIN_TLS_SLOT
== 0, "First slot of bionic_tcb must be slot #0 on x86");
pthread_internal.h
173
return reinterpret_cast<bionic_tcb*>(&__get_tls()[
MIN_TLS_SLOT
]);
Completed in 231 milliseconds