Home
last modified time | relevance | path

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

/external/toybox/toys/pending/
Dbootchartd.c165 long tcnt = 60 * 1000 * 1000 / TT.smpl_period_usec; in start_logging() local
167 if (tcnt <= 0) tcnt = 1; in start_logging()
175 while (--tcnt && !toys.signal) { in start_logging()
196 if (tcnt > 2 * 1000 * 1000 / TT.smpl_period_usec) in start_logging()
197 tcnt = 2 * 1000 * 1000 / TT.smpl_period_usec; in start_logging()
/external/lldb/tools/debugserver/source/MacOSX/
DMachTask.cpp240 mach_msg_type_number_t tcnt; in get_threads_profile_data() local
242 kr = task_threads(task, &threads, &tcnt); in get_threads_profile_data()
246 for (int i = 0; i < tcnt; i++) in get_threads_profile_data()
291 …kr = mach_vm_deallocate(mach_task_self(), (mach_vm_address_t)(uintptr_t)threads, tcnt * sizeof(*th… in get_threads_profile_data()