Searched refs:thread_local_end (Results 1 – 5 of 5) sorted by relevance
/art/runtime/ |
D | thread.h | 787 thread_local_end)); in ThreadLocalEndOffset() 1124 return tlsPtr_.thread_local_end - tlsPtr_.thread_local_pos; in TlabSize() 1134 tlsPtr_.thread_local_end += bytes; in ExpandTlab() 1135 DCHECK_LE(tlsPtr_.thread_local_end, tlsPtr_.thread_local_limit); in ExpandTlab() 1176 return tlsPtr_.thread_local_end - tlsPtr_.thread_local_start; in GetThreadLocalBytesAllocated() 1568 thread_local_start(nullptr), thread_local_pos(nullptr), thread_local_end(nullptr), in PACKED() 1695 uint8_t* thread_local_end; in PACKED() local
|
D | entrypoints_order_test.cc | 124 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, thread_local_pos, thread_local_end, sizeof(void*)); in CheckThreadOffsets() 125 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, thread_local_end, thread_local_limit, sizeof(void*)); in CheckThreadOffsets()
|
D | thread.cc | 3863 tlsPtr_.thread_local_end = end; in SetTlab() 3871 DCHECK(tlsPtr_.thread_local_start != nullptr && tlsPtr_.thread_local_end != nullptr); in HasTlab() 3873 DCHECK(tlsPtr_.thread_local_start == nullptr && tlsPtr_.thread_local_end == nullptr); in HasTlab()
|
/art/runtime/arch/mips64/ |
D | quick_entrypoints_mips64.S | 1765 ld $a2, THREAD_LOCAL_END_OFFSET(rSELF) # Load thread_local_end.
|
/art/runtime/arch/mips/ |
D | quick_entrypoints_mips.S | 1844 lw $a2, THREAD_LOCAL_END_OFFSET(rSELF) # Load thread_local_end.
|