HomeSort by: relevance | last modified time | path
    Searched defs:tids (Results 1 - 8 of 8) sorted by relevancy

  /src/external/mit/libuv/dist/test/
benchmark-async-pummel.c 65 uv_thread_t* tids; local
70 tids = calloc(nthreads, sizeof(tids[0]));
71 ASSERT_NOT_NULL(tids);
77 ASSERT(0 == uv_thread_create(tids + i, pummel, &handle));
87 ASSERT(0 == uv_thread_join(tids + i));
95 free(tids);
  /src/external/bsd/openldap/dist/libraries/libldap/
thr_nt.c 43 static ldap_int_thread_s tids[NT_MAX_THREADS]; variable
88 tids[ntids].tid = tid;
89 tids[ntids].thd = thd;
109 if ( tids[i].tid == thread )
114 status = WaitForSingleObject( tids[i].thd, INFINITE );
116 tids[i] = tids[i+1];
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_thread_registry_test.cc 187 std::vector<int> tids; local
189 tids.push_back(
192 args->registry->StartThread(tids[i], 0, false, (void*)args->shard);
194 args->registry->FinishThread(tids[i]);
196 args->registry->JoinThread(tids[i], (void*)args->shard);
  /src/external/gpl3/gcc/dist/libsanitizer/tsan/
tsan_rtl_report.cpp 754 Tid tids[kMop] = {thr->tid, kInvalidTid}; local
772 size1, typ1, &tids[1], &traces[1], mset[1], &tags[1])) {
795 rep.AddMemoryAccess(addr, tags[i], s[i], tids[i], traces[i], mset[i]);
799 ctx->thread_registry.GetThreadLocked(tids[i]));
  /src/crypto/external/apache2/openssl/dist/test/
threadstest.c 1175 char tids[12], oid[40], sn[30], ln[30]; local
1178 BIO_snprintf(tids, sizeof(tids), "%d", id);
1179 BIO_snprintf(oid, sizeof(oid), "1.3.6.1.4.1.16604.%s", tids);
1180 BIO_snprintf(sn, sizeof(sn), "short-name-%s", tids);
1181 BIO_snprintf(ln, sizeof(ln), "long-name-%s", tids);
  /src/external/bsd/wpa/dist/src/drivers/
driver_nl80211_event.c 792 struct nlattr *tids; local
839 nla_for_each_nested(tids,
847 tids, NULL)) {
  /src/sys/dev/pci/cxgb/
cxgb_t3_hw.c 2469 unsigned int m, pstructs, tids = t3_mc5_size(&adap->mc5); local
2473 if (tids <= 16 * 1024) {
2476 } else if (tids <= 64 * 1024) {
2479 } else if (tids <= 256 * 1024) {
2504 m = tids * TCB_SIZE;
2518 tids = (p->cm_size - m - (3 << 20)) / 3072 - 32;
2521 if (tids < m)
2522 adap->params.mc5.nservers += m - tids;
  /src/external/bsd/openldap/dist/servers/slapd/
daemon.c 3190 ldap_pvt_thread_t tids[0]; member in struct:slap_tid_waiter
3198 slap_tid_waiter *tids = ptr; local
3201 for ( i=0; i<tids->num_tids; i++ )
3202 ldap_pvt_thread_join( tids->tids[i], (void *)NULL );
3259 slap_tid_waiter *tids = ch_malloc( sizeof(slap_tid_waiter) + local
3262 tids->num_tids = slapd_daemon_threads - newnum;
3264 tids->tids[j] = slap_daemon[i].sd_tid;
3283 slapd_daemon_tid_cleanup, (void *) tids );
    [all...]

Completed in 28 milliseconds