Home | History | Annotate | Download | only in audioflinger

Lines Matching refs:newLoad

524                 struct timespec newLoad;
525 rc = clock_gettime(CLOCK_THREAD_CPUTIME_ID, &newLoad);
528 sec = newLoad.tv_sec - oldLoad.tv_sec;
529 nsec = newLoad.tv_nsec - oldLoad.tv_nsec;
542 oldLoad = newLoad;