HomeSort by relevance Sort by last modified time
    Searched defs:dtv (Results 1 - 4 of 4) sorted by null

  /external/compiler-rt/lib/sanitizer_common/
sanitizer_tls_get_addr.h 39 struct DTV {
44 DTV *dtv; // dtv_size elements, allocated by MmapOrDie. member in struct:__sanitizer::DTLS
53 DTLS::DTV *DTLS_on_tls_get_addr(void *arg, void *res, uptr static_tls_begin,
  /external/strace/
count.c 159 struct timeval tv_cum, dtv; local
182 tv_mul(&dtv, &overhead, counts[i].calls);
183 tv_sub(&counts[i].time, &counts[i].time, &dtv);
198 tv_div(&dtv, &cc->time, cc->calls);
209 (long) (1000000 * dtv.tv_sec + dtv.tv_usec),
strace.c 688 struct timeval tv, dtv; local
695 tv_sub(&dtv, &tv, &otv);
697 (long) dtv.tv_sec, (long) dtv.tv_usec);
    [all...]
  /external/valgrind/coregrind/m_gdbserver/
target.c 674 CORE_ADDR *dtv; local
688 dlog(1, "low level dtv support not available\n");
701 dlog(0, "low level dtv support returned NULL\n");
706 dtv = *dtv_loc;
708 // Check we can read at least 2 address at the beginning of dtv.
709 CHECK_DEREF(dtv, 2*sizeof(CORE_ADDR), "dtv 2 first entries");
710 dlog (2, "tid %u dtv %p\n", tst->tid, (void*)dtv);
716 // Check we can access the dtv entry for modi
    [all...]

Completed in 182 milliseconds