HomeSort by relevance Sort by last modified time
    Searched refs:newTs (Results 1 - 4 of 4) sorted by null

  /frameworks/av/services/audioflinger/
AudioWatchdog.cpp 56 struct timespec newTs;
57 int rc = clock_gettime(CLOCK_MONOTONIC, &newTs);
63 mOldTs = newTs;
67 time_t sec = newTs.tv_sec - mOldTs.tv_sec;
68 long nsec = newTs.tv_nsec - mOldTs.tv_nsec;
73 mOldTs = newTs;
FastThread.cpp 223 struct timespec newTs;
224 int rc = clock_gettime(CLOCK_MONOTONIC, &newTs);
227 time_t sec = newTs.tv_sec - mOldTs.tv_sec;
228 long nsec = newTs.tv_nsec - mOldTs.tv_nsec;
231 mOldTs.tv_sec, mOldTs.tv_nsec, newTs.tv_sec, newTs.tv_nsec);
359 mOldTs = newTs;
  /external/skia/include/private/
SkTArray.h 214 void* newTs = this->push_back_raw(n);
216 new (static_cast<char*>(newTs) + i * sizeof(T)) T;
218 return static_cast<T*>(newTs);
227 void* newTs = this->push_back_raw(n);
229 new (static_cast<char*>(newTs) + i * sizeof(T)) T(t);
231 return static_cast<T*>(newTs);
  /external/skqp/include/private/
SkTArray.h 214 void* newTs = this->push_back_raw(n);
216 new (static_cast<char*>(newTs) + i * sizeof(T)) T;
218 return static_cast<T*>(newTs);
227 void* newTs = this->push_back_raw(n);
229 new (static_cast<char*>(newTs) + i * sizeof(T)) T(t);
231 return static_cast<T*>(newTs);

Completed in 196 milliseconds