Home
last modified time | relevance | path

Searched refs:threadID (Results 1 – 2 of 2) sorted by relevance

/freebsd-12.1/contrib/sqlite3/tea/win/
H A Dnmakehlp.c187 DWORD threadID; in CheckForCompilerFeature() local
283 pipeThreads[0] = CreateThread(NULL, 0, ReadFromPipe, &Out, 0, &threadID); in CheckForCompilerFeature()
284 pipeThreads[1] = CreateThread(NULL, 0, ReadFromPipe, &Err, 0, &threadID); in CheckForCompilerFeature()
321 DWORD threadID; in CheckForLinkerFeature() local
411 pipeThreads[0] = CreateThread(NULL, 0, ReadFromPipe, &Out, 0, &threadID); in CheckForLinkerFeature()
412 pipeThreads[1] = CreateThread(NULL, 0, ReadFromPipe, &Err, 0, &threadID); in CheckForLinkerFeature()
/freebsd-12.1/contrib/openmp/runtime/src/
H A Dkmp_affinity.cpp5125 int threadID; in __kmp_balanced_affinity() local
5142 threadID = (tid % (chunk + 1)) % __kmp_nth_per_core; in __kmp_balanced_affinity()
5145 threadID = ((tid - big_cores) % chunk) % __kmp_nth_per_core; in __kmp_balanced_affinity()
5155 int osID = address2os[coreID * __kmp_nth_per_core + threadID].second; in __kmp_balanced_affinity()