HomeSort by relevance Sort by last modified time
    Searched refs:ts (Results 126 - 150 of 549) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/ndk/7/platforms/android-8/arch-x86/usr/include/linux/
ktime.h 50 #define ktime_get_real_ts(ts) getnstimeofday(ts)
  /prebuilts/ndk/7/platforms/android-9/arch-arm/usr/include/linux/
ktime.h 50 #define ktime_get_real_ts(ts) getnstimeofday(ts)
  /prebuilts/ndk/7/platforms/android-9/arch-x86/usr/include/linux/
ktime.h 50 #define ktime_get_real_ts(ts) getnstimeofday(ts)
  /prebuilts/ndk/8/platforms/android-14/arch-arm/usr/include/linux/
ktime.h 50 #define ktime_get_real_ts(ts) getnstimeofday(ts)
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/linux/
ktime.h 50 #define ktime_get_real_ts(ts) getnstimeofday(ts)
  /prebuilts/ndk/8/platforms/android-14/arch-x86/usr/include/linux/
ktime.h 50 #define ktime_get_real_ts(ts) getnstimeofday(ts)
  /prebuilts/ndk/8/platforms/android-3/arch-arm/usr/include/linux/
ktime.h 50 #define ktime_get_real_ts(ts) getnstimeofday(ts)
  /prebuilts/ndk/8/platforms/android-4/arch-arm/usr/include/linux/
ktime.h 50 #define ktime_get_real_ts(ts) getnstimeofday(ts)
  /prebuilts/ndk/8/platforms/android-5/arch-arm/usr/include/linux/
ktime.h 50 #define ktime_get_real_ts(ts) getnstimeofday(ts)
  /prebuilts/ndk/8/platforms/android-8/arch-arm/usr/include/linux/
ktime.h 50 #define ktime_get_real_ts(ts) getnstimeofday(ts)
  /prebuilts/ndk/8/platforms/android-9/arch-arm/usr/include/linux/
ktime.h 50 #define ktime_get_real_ts(ts) getnstimeofday(ts)
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/linux/
ktime.h 50 #define ktime_get_real_ts(ts) getnstimeofday(ts)
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/linux/
ktime.h 50 #define ktime_get_real_ts(ts) getnstimeofday(ts)
  /external/clang/test/Sema/
struct-decl.c 16 } *ts; member in struct:s
  /external/linux-tools-perf/
perf.h 169 struct timespec ts; local
171 clock_gettime(CLOCK_MONOTONIC, &ts);
172 return ts.tv_sec * 1000000000ULL + ts.tv_nsec;
  /external/webkit/Source/WebCore/platform/graphics/chromium/cc/
CCPluginLayerImpl.cpp 74 void CCPluginLayerImpl::dumpLayerProperties(TextStream& ts, int indent) const
76 writeIndent(ts, indent);
77 ts << "plugin layer texture id: " << m_textureId << "\n";
78 CCLayerImpl::dumpLayerProperties(ts, indent);
  /frameworks/base/services/jni/
com_android_server_AlarmManagerService.cpp 70 struct timespec ts; local
71 ts.tv_sec = seconds;
72 ts.tv_nsec = nanoseconds;
74 int result = ioctl(fd, ANDROID_ALARM_SET(type), &ts);
  /system/extras/tests/bionic/libc/common/
bench_stdio.c 48 struct timespec ts; local
49 clock_gettime(CLOCK_MONOTONIC, &ts);
50 return ts.tv_sec*1000. + ts.tv_nsec*1e-6;
  /bionic/libc/bionic/
semaphore.c 299 struct timespec ts; local
303 clock_gettime( CLOCK_REALTIME, &ts );
304 ts.tv_sec = abs_timeout->tv_sec - ts.tv_sec;
305 ts.tv_nsec = abs_timeout->tv_nsec - ts.tv_nsec;
306 if (ts.tv_nsec < 0) {
307 ts.tv_nsec += 1000000000;
308 ts.tv_sec -= 1;
311 if (ts.tv_sec < 0 || ts.tv_nsec < 0)
    [all...]
  /external/linux-tools-perf/scripts/perl/
wakeup-latency.pl 35 my $wakeup_ts = $last_wakeup{$common_cpu}{ts};
48 $last_wakeup{$common_cpu}{ts} = 0;
57 $last_wakeup{$target_cpu}{ts} = nsecs($common_secs, $common_nsecs);
  /external/openssl/crypto/asn1/
a_utctm.c 196 struct tm *ts; local
205 ts=OPENSSL_gmtime(&t, &data);
206 if (ts == NULL)
211 if (!OPENSSL_gmtime_adj(ts, offset_day, offset_sec))
215 if((ts->tm_year < 50) || (ts->tm_year >= 150))
232 BIO_snprintf(p,len,"%02d%02d%02d%02d%02d%02dZ",ts->tm_year%100,
233 ts->tm_mon+1,ts->tm_mday,ts->tm_hour,ts->tm_min,ts->tm_sec)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/filters/
FEMorphology.cpp 181 static TextStream& operator<<(TextStream& ts, const MorphologyOperatorType& type)
185 ts << "UNKNOWN";
188 ts << "ERODE";
191 ts << "DILATE";
194 return ts;
197 TextStream& FEMorphology::externalRepresentation(TextStream& ts, int indent) const
199 writeIndent(ts, indent);
200 ts << "[feMorphology";
201 FilterEffect::externalRepresentation(ts);
202 ts << " operator=\"" << morphologyOperator() << "\"
    [all...]
  /system/core/toolbox/
uptime.c 59 struct timespec ts; local
66 result = ioctl(fd, ANDROID_ALARM_GET_TIME(ANDROID_ALARM_ELAPSED_REALTIME), &ts);
70 return ts.tv_sec;
  /frameworks/av/libvideoeditor/osal/src/
M4OSA_Mutex.c 134 struct timespec ts; local
167 ts.tv_sec = 0;
170 ts.tv_nsec = 1000000;
175 ts.tv_nsec = timeout * 1000000;
178 nanosleep(&ts, &left);
M4OSA_Semaphore.c 132 struct timespec ts; local
160 ts.tv_sec = 0;
163 ts.tv_nsec = 1000000;
168 ts.tv_nsec = timeout * 1000000;
171 nanosleep(&ts, &left);

Completed in 1462 milliseconds

1 2 3 4 56 7 8 91011>>