HomeSort by relevance Sort by last modified time
    Searched full:thread_local_pos (Results 1 - 5 of 5) sorted by null

  /art/runtime/
thread-inl.h 166 return tlsPtr_.thread_local_end - tlsPtr_.thread_local_pos;
172 mirror::Object* ret = reinterpret_cast<mirror::Object*>(tlsPtr_.thread_local_pos);
173 tlsPtr_.thread_local_pos += bytes;
entrypoints_order_test.cc 124 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, thread_local_start, thread_local_pos, kPointerSize);
125 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, thread_local_pos, thread_local_end, kPointerSize);
thread.h 1131 byte* thread_local_pos; variable
    [all...]
thread.cc     [all...]
  /external/chromium_org/testing/gtest/src/
gtest-port.cc 364 ThreadIdToThreadLocals::iterator thread_local_pos = local
366 if (thread_local_pos == thread_to_thread_locals->end()) {
367 thread_local_pos = thread_to_thread_locals->insert(
371 ThreadLocalValues& thread_local_values = thread_local_pos->second;
423 ThreadIdToThreadLocals::iterator thread_local_pos = local
425 if (thread_local_pos != thread_to_thread_locals->end()) {
426 ThreadLocalValues& thread_local_values = thread_local_pos->second;
433 thread_to_thread_locals->erase(thread_local_pos);
    [all...]

Completed in 568 milliseconds