| /netbsd-src/external/bsd/jemalloc/include/jemalloc/internal/ |
| H A D | prof_inlines_b.h | 17 prof_tdata_get(tsd_t *tsd, bool create) { in prof_tdata_get() argument 22 tdata = tsd_prof_tdata_get(tsd); in prof_tdata_get() 25 if (tsd_nominal(tsd)) { in prof_tdata_get() 26 tdata = prof_tdata_init(tsd); in prof_tdata_get() 27 tsd_prof_tdata_set(tsd, tdata); in prof_tdata_get() 30 tdata = prof_tdata_reinit(tsd, tdata); in prof_tdata_get() 31 tsd_prof_tdata_set(tsd, tdata); in prof_tdata_get() 65 prof_sample_accum_update(tsd_t *tsd, size_t usize, bool update, in prof_sample_accum_update() argument 71 tdata = prof_tdata_get(tsd, true); in prof_sample_accum_update() 90 if (tsd_reentrancy_level_get(tsd) > 0) { in prof_sample_accum_update() [all …]
|
| H A D | ckh.h | 70 bool ckh_new(tsd_t *tsd, ckh_t *ckh, size_t minitems, ckh_hash_t *hash, 72 void ckh_delete(tsd_t *tsd, ckh_t *ckh); 90 bool ckh_insert(tsd_t *tsd, ckh_t *ckh, const void *key, const void *data); 91 bool ckh_remove(tsd_t *tsd, ckh_t *ckh, const void *searchkey, void **key,
|
| /netbsd-src/sys/external/bsd/compiler_rt/dist/lib/asan/ |
| H A D | asan_posix.cc | 48 static void (*tsd_destructor)(void *tsd) = nullptr; 62 void AsanTSDInit(void (*destructor)(void *tsd)) { in AsanTSDInit() argument 72 void AsanTSDSet(void *tsd) { in AsanTSDSet() argument 74 CHECK(tsd); in AsanTSDSet() 76 key.key = tsd; in AsanTSDSet() 79 void PlatformTSDDtor(void *tsd) { in PlatformTSDDtor() argument 81 CHECK_EQ(key.key, tsd); in PlatformTSDDtor() 85 AsanThread::TSDDtor(tsd); in PlatformTSDDtor() 90 void AsanTSDInit(void (*destructor)(void *tsd)) { in AsanTSDInit() argument 101 void AsanTSDSet(void *tsd) { in AsanTSDSet() argument [all …]
|
| H A D | asan_win.cc | 200 void AsanTSDInit(void (*destructor)(void *tsd)) { in AsanTSDInit() argument 210 void AsanTSDSet(void *tsd) { in AsanTSDSet() argument 212 fake_tsd = tsd; in AsanTSDSet() 215 void PlatformTSDDtor(void *tsd) { in PlatformTSDDtor() argument 216 AsanThread::TSDDtor(tsd); in PlatformTSDDtor()
|
| H A D | asan_internal.h | 103 void AsanTSDInit(void (*destructor)(void *tsd)); 105 void AsanTSDSet(void *tsd); 106 void PlatformTSDDtor(void *tsd);
|
| H A D | asan_rtems.cc | 80 void AsanTSDSet(void *tsd) { per_thread = tsd; } in AsanTSDSet() argument 85 void AsanTSDInit(void (*destructor)(void *tsd)) { in AsanTSDInit() argument 89 void PlatformTSDDtor(void *tsd) { UNREACHABLE(__func__); } in PlatformTSDDtor() argument
|
| H A D | asan_fuchsia.cc | 71 void AsanTSDSet(void *tsd) { per_thread = tsd; } in AsanTSDSet() argument 76 void AsanTSDInit(void (*destructor)(void *tsd)) { in AsanTSDInit() argument 80 void PlatformTSDDtor(void *tsd) { UNREACHABLE(__func__); } in PlatformTSDDtor() argument
|
| /netbsd-src/external/gpl3/gcc/dist/libsanitizer/asan/ |
| H A D | asan_posix.cpp | 75 static void (*tsd_destructor)(void *tsd) = nullptr; 89 void AsanTSDInit(void (*destructor)(void *tsd)) { in AsanTSDInit() argument 99 void AsanTSDSet(void *tsd) { in AsanTSDSet() argument 101 CHECK(tsd); in AsanTSDSet() 103 key.key = tsd; in AsanTSDSet() 106 void PlatformTSDDtor(void *tsd) { in PlatformTSDDtor() argument 108 CHECK_EQ(key.key, tsd); in PlatformTSDDtor() 112 AsanThread::TSDDtor(tsd); in PlatformTSDDtor() 117 void AsanTSDInit(void (*destructor)(void *tsd)) { in AsanTSDInit() argument 128 void AsanTSDSet(void *tsd) { in AsanTSDSet() argument [all …]
|
| H A D | asan_internal.h | 112 void AsanTSDInit(void (*destructor)(void *tsd)); 114 void AsanTSDSet(void *tsd); 115 void PlatformTSDDtor(void *tsd);
|
| H A D | asan_win.cpp | 229 void AsanTSDInit(void (*destructor)(void *tsd)) { in AsanTSDInit() argument 239 void AsanTSDSet(void *tsd) { in AsanTSDSet() argument 241 fake_tsd = tsd; in AsanTSDSet() 244 void PlatformTSDDtor(void *tsd) { AsanThread::TSDDtor(tsd); } in PlatformTSDDtor() argument
|
| H A D | asan_fuchsia.cpp | 100 void AsanTSDSet(void *tsd) { per_thread = tsd; } in AsanTSDSet() argument 105 void AsanTSDInit(void (*destructor)(void *tsd)) { in AsanTSDInit() argument 109 void PlatformTSDDtor(void *tsd) { UNREACHABLE(__func__); } in PlatformTSDDtor() argument
|
| /netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/asan/ |
| H A D | asan_posix.cc | 43 void AsanTSDInit(void (*destructor)(void *tsd)) { in AsanTSDInit() argument 54 void AsanTSDSet(void *tsd) { in AsanTSDSet() argument 56 pthread_setspecific(tsd_key, tsd); in AsanTSDSet() 59 void PlatformTSDDtor(void *tsd) { in PlatformTSDDtor() argument 60 AsanThreadContext *context = (AsanThreadContext*)tsd; in PlatformTSDDtor() 63 CHECK_EQ(0, pthread_setspecific(tsd_key, tsd)); in PlatformTSDDtor() 66 AsanThread::TSDDtor(tsd); in PlatformTSDDtor()
|
| H A D | asan_win.cc | 198 void AsanTSDInit(void (*destructor)(void *tsd)) { in AsanTSDInit() argument 208 void AsanTSDSet(void *tsd) { in AsanTSDSet() argument 210 fake_tsd = tsd; in AsanTSDSet() 213 void PlatformTSDDtor(void *tsd) { in PlatformTSDDtor() argument 214 AsanThread::TSDDtor(tsd); in PlatformTSDDtor()
|
| H A D | asan_internal.h | 101 void AsanTSDInit(void (*destructor)(void *tsd)); 103 void AsanTSDSet(void *tsd); 104 void PlatformTSDDtor(void *tsd);
|
| H A D | asan_rtems.cc | 78 void AsanTSDSet(void *tsd) { per_thread = tsd; } in AsanTSDSet() argument 83 void AsanTSDInit(void (*destructor)(void *tsd)) { in AsanTSDInit() argument 87 void PlatformTSDDtor(void *tsd) { UNREACHABLE(__func__); } in PlatformTSDDtor() argument
|
| H A D | asan_fuchsia.cc | 69 void AsanTSDSet(void *tsd) { per_thread = tsd; } in AsanTSDSet() argument 74 void AsanTSDInit(void (*destructor)(void *tsd)) { in AsanTSDInit() argument 78 void PlatformTSDDtor(void *tsd) { UNREACHABLE(__func__); } in PlatformTSDDtor() argument
|
| /netbsd-src/sys/external/bsd/compiler_rt/dist/lib/msan/ |
| H A D | msan_linux.cc | 183 static void (*tsd_destructor)(void *tsd) = nullptr; 197 void MsanTSDInit(void (*destructor)(void *tsd)) { in MsanTSDInit() argument 207 void SetCurrentThread(MsanThread *tsd) { in SetCurrentThread() argument 209 CHECK(tsd); in SetCurrentThread() 211 key.key = tsd; in SetCurrentThread() 214 void MsanTSDDtor(void *tsd) { in MsanTSDDtor() argument 216 CHECK_EQ(key.key, tsd); in MsanTSDDtor() 220 MsanThread::TSDDtor(tsd); in MsanTSDDtor() 226 void MsanTSDInit(void (*destructor)(void *tsd)) { in MsanTSDInit() argument 247 void MsanTSDDtor(void *tsd) { in MsanTSDDtor() argument [all …]
|
| H A D | msan_thread.cc | 51 void MsanThread::TSDDtor(void *tsd) { in TSDDtor() argument 52 MsanThread *t = (MsanThread*)tsd; in TSDDtor()
|
| H A D | msan.h | 379 void MsanTSDInit(void (*destructor)(void *tsd)); 381 void MsanTSDSet(void *tsd); 382 void MsanTSDDtor(void *tsd);
|
| /netbsd-src/external/gpl3/binutils/dist/gprofng/libcollector/ |
| H A D | jprofile.c | 634 TSD_Entry *tsd = collector_interface->getKey (tsd_key); in jvmti_ThreadStart() local 635 if (tsd) in jvmti_ThreadStart() 636 tsd->env = jni_env; in jvmti_ThreadStart() 654 TSD_Entry *tsd = collector_interface->getKey (tsd_key); in jvmti_ThreadEnd() local 655 if (tsd) in jvmti_ThreadEnd() 656 tsd->env = NULL; in jvmti_ThreadEnd() 1063 TSD_Entry *tsd = collector_interface->getKey (tsd_key); in jvmti_MonitorEnter() local 1064 if (tsd == NULL) in jvmti_MonitorEnter() 1066 tsd->tstamp = gethrtime (); in jvmti_MonitorEnter() 1073 TSD_Entry *tsd = collector_interface->getKey (tsd_key); in jvmti_MonitorEntered() local [all …]
|
| H A D | Makefile.in | 165 libgp_collector_la-tsd.lo libgp_collector_la-profile.lo \ 430 tsd.c \ 605 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgp_collector_la-tsd.Plo@am__quote@ 665 libgp_collector_la-tsd.lo: tsd.c 666 …ollector_la-tsd.lo -MD -MP -MF $(DEPDIR)/libgp_collector_la-tsd.Tpo -c -o libgp_collector_la-tsd.l… 667 …_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgp_collector_la-tsd.Tpo $(DEPDIR)/libgp_collector_la-tsd.P… 670 …GS) $(AM_CFLAGS) $(CFLAGS) -c -o libgp_collector_la-tsd.lo `test -f 'tsd.c' || echo '$(srcdir)/'`t…
|
| /netbsd-src/external/gpl3/binutils.old/dist/gprofng/libcollector/ |
| H A D | jprofile.c | 640 TSD_Entry *tsd = collector_interface->getKey (tsd_key); in jvmti_ThreadStart() local 641 if (tsd) in jvmti_ThreadStart() 642 tsd->env = jni_env; in jvmti_ThreadStart() 660 TSD_Entry *tsd = collector_interface->getKey (tsd_key); in jvmti_ThreadEnd() local 661 if (tsd) in jvmti_ThreadEnd() 662 tsd->env = NULL; in jvmti_ThreadEnd() 1069 TSD_Entry *tsd = collector_interface->getKey (tsd_key); in jvmti_MonitorEnter() local 1070 if (tsd == NULL) in jvmti_MonitorEnter() 1072 tsd->tstamp = gethrtime (); in jvmti_MonitorEnter() 1079 TSD_Entry *tsd = collector_interface->getKey (tsd_key); in jvmti_MonitorEntered() local [all …]
|
| H A D | Makefile.in | 165 libgp_collector_la-tsd.lo libgp_collector_la-profile.lo \ 431 tsd.c \ 606 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgp_collector_la-tsd.Plo@am__quote@ 666 libgp_collector_la-tsd.lo: tsd.c 667 …ollector_la-tsd.lo -MD -MP -MF $(DEPDIR)/libgp_collector_la-tsd.Tpo -c -o libgp_collector_la-tsd.l… 668 …_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgp_collector_la-tsd.Tpo $(DEPDIR)/libgp_collector_la-tsd.P… 671 …GS) $(AM_CFLAGS) $(CFLAGS) -c -o libgp_collector_la-tsd.lo `test -f 'tsd.c' || echo '$(srcdir)/'`t…
|
| /netbsd-src/external/bsd/jemalloc/dist/include/jemalloc/internal/ |
| H A D | ckh.h | 70 bool ckh_new(tsd_t *tsd, ckh_t *ckh, size_t minitems, ckh_hash_t *hash, 72 void ckh_delete(tsd_t *tsd, ckh_t *ckh); 90 bool ckh_insert(tsd_t *tsd, ckh_t *ckh, const void *key, const void *data); 91 bool ckh_remove(tsd_t *tsd, ckh_t *ckh, const void *searchkey, void **key,
|
| /netbsd-src/sys/kern/ |
| H A D | subr_time.c | 223 struct timespec tsd; in gettimeleft() 229 error = clock_gettime1(clock_id, &tsd); in gettimeleft() 233 *start = tsd; 237 if (!timespecsubok(ts, &tsd)) in clock_timeleft() 239 timespecsub(ts, &tsd, &tsd); in clock_timeleft() 240 ts = &tsd; in clock_timeleft() 318 struct timespec tsd; ts2timo() local
|