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

<<11121314151617181920>>

  /external/opencv/cv/src/
cvmotempl.cpp 53 int ts, delbound; local
57 ts = v.i;
89 /* val = silIm[x] ? ts : val < delbound ? 0 : val; */
91 val ^= (ts ^ val) & ((silIm[x] == 0) - 1);
100 /* val = silIm[x] ? ts : val < delbound ? 0 : val; */
102 val ^= (ts ^ val) & ((silIm[x] == 0) - 1);
427 int stub_val, ts; local
448 v.f = (float)timestamp; ts = v.i;
469 if( mhi_row[x] == ts && mask8u_row[x] == 0 )
cvstereogc.cpp 59 int ts; member in struct:GCVtx
149 v->ts = 0;
188 u->ts = v->ts;
204 if( u->dist > v->dist+1 && u->ts <= v->ts )
208 u->ts = v->ts;
293 if( u->ts == curr_ts )
306 u->ts = curr_ts
    [all...]
  /external/chromium/chrome/browser/history/
history.cc 801 history::TopSites* ts = profile_->GetTopSitesWithoutCreating(); local
802 if (ts)
803 ts->HistoryLoaded();
811 history::TopSites* ts = profile_->GetTopSitesWithoutCreating(); local
812 if (ts)
813 ts->MigrateFromHistory();
  /external/qemu/
posix-aio-compat.c 101 struct timespec *ts)
103 int ret = pthread_cond_timedwait(cond, mutex, ts);
314 struct timespec ts; local
317 ts.tv_sec = tv.tv_sec + 10;
318 ts.tv_nsec = 0;
324 ret = cond_timedwait(&cond, &lock, &ts);
  /external/v8/src/
platform-cygwin.cc 555 #define TIMEVAL_TO_TIMESPEC(tv, ts) do { \
556 (ts)->tv_sec = (tv)->tv_sec; \
557 (ts)->tv_nsec = (tv)->tv_usec * 1000; \
580 struct timespec ts; local
581 TIMEVAL_TO_TIMESPEC(&end_time, &ts);
584 int result = sem_timedwait(&sem_, &ts);
platform-solaris.cc 611 #define TIMEVAL_TO_TIMESPEC(tv, ts) do { \
612 (ts)->tv_sec = (tv)->tv_sec; \
613 (ts)->tv_nsec = (tv)->tv_usec * 1000; \
649 struct timespec ts; local
650 TIMEVAL_TO_TIMESPEC(&end_time, &ts);
653 int result = sem_timedwait(&sem_, &ts);
  /external/blktrace/btt/
globals.h 198 void aqd_issue(void *info, double ts);
199 void aqd_complete(void *info, double ts);
281 void plat_x2c(void *info, __u64 ts, __u64 latency);
  /external/chromium/chrome/browser/ui/tab_contents/
tab_contents_wrapper.cc 316 history::TopSites* ts = profile()->GetTopSites();
317 if (ts)
318 ts->SetPageThumbnail(url, bitmap, score);
  /external/chromium/third_party/libevent/
kqueue.c 224 struct timespec ts, *ts_p = NULL; local
228 TIMEVAL_TO_TIMESPEC(tv, &ts);
229 ts_p = &ts;
  /external/chromium/third_party/libjingle/source/talk/session/phone/
rtpdump.cc 74 bool RtpDumpPacket::GetRtpTimestamp(uint32* ts) const {
75 if (!ts || !IsValidRtpPacket()) {
78 *ts = talk_base::GetBE32(&data[4]);
rtpdump.h 78 bool GetRtpTimestamp(uint32* ts) const;
  /external/libusb/libusb/
libusbi.h 106 #define TIMESPEC_IS_SET(ts) ((ts)->tv_sec != 0 || (ts)->tv_nsec != 0)
  /external/valgrind/main/helgrind/
libhb_core.c 1864 ScalarTS ts[0]; member in struct:__anon17079
    [all...]
  /external/valgrind/unittest/
thread_wrappers_pthread.h 123 /// Copy tv to ts adding offset in milliseconds.
125 timespec *ts,
133 ts->tv_sec = then_nsec / ten_9;
134 ts->tv_nsec = then_nsec % ten_9;
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
tokens.c 359 int ReadFromTokenStream(TokenStream *ts, int name, int (*final)(CPPStruct *))
367 in->tokens = ts;
369 RewindTokenStream(ts);
  /system/core/init/
util.c 262 struct timespec ts; local
265 ret = clock_gettime(CLOCK_MONOTONIC, &ts);
271 return ts.tv_sec;
  /device/generic/goldfish/sensors/
sensors_qemu.c 221 struct timespec ts; local
223 clock_gettime(CLOCK_MONOTONIC, &ts);
225 return (int64_t)ts.tv_sec * 1000000000 + ts.tv_nsec;
  /external/chromium/third_party/libjingle/source/talk/base/
thread.cc 196 struct timespec ts;
197 ts.tv_sec = milliseconds / 1000;
198 ts.tv_nsec = (milliseconds % 1000) * 1000000;
199 int ret = nanosleep(&ts, NULL);
  /external/icu4c/test/intltest/
cpdtrtst.cpp 216 UnicodeSet ts; local
218 retUS = &ct1->getTargetSet(ts);
219 if (retUS != &ts || ts.size() == 0) {
  /external/linux-tools-perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
Core.py 117 def ts(self): member in class:EventHeaders
  /external/openssl/crypto/ts/
ts_err.c 1 /* crypto/ts/ts_err.c */
63 #include <openssl/ts.h>
134 {ERR_REASON(TS_R_D2I_TS_RESP_INT_FAILED) ,"d2i ts resp int failed"},
147 {ERR_REASON(TS_R_PKCS7_TO_TS_TST_INFO_FAILED),"pkcs7 to ts tst info failed"},
159 {ERR_REASON(TS_R_TS_DATASIGN) ,"ts datasign"},
  /frameworks/av/media/libeffects/visualizer/
EffectVisualizer.cpp 475 struct timespec ts; local
476 if (clock_gettime(CLOCK_MONOTONIC, &ts) == 0) {
477 time_t secs = ts.tv_sec - pContext->mBufferUpdateTime.tv_sec;
478 long nsec = ts.tv_nsec - pContext->mBufferUpdateTime.tv_nsec;
  /hardware/ti/omap4xxx/
heaptracker.c 530 struct timespec ts; local
543 clock_gettime(CLOCK_REALTIME, &ts);
544 ts.tv_sec += SCANNER_SLEEP_S;
545 pthread_cond_timedwait(&scanner_cond, &scanner_lock, &ts);
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppProvider.java 272 Long ts = values.getAsLong(BluetoothShare.TIMESTAMP); local
273 if (ts == null) {
274 ts = System.currentTimeMillis();
276 filteredValues.put(BluetoothShare.TIMESTAMP, ts);
  /system/core/libnetutils/
dhcpclient.c 55 struct timespec ts; local
57 if (clock_gettime(CLOCK_MONOTONIC, &ts)) {
60 return (((msecs_t) ts.tv_sec) * ((msecs_t) 1000)) +
61 (((msecs_t) ts.tv_nsec) / ((msecs_t) 1000000));

Completed in 1452 milliseconds

<<11121314151617181920>>