HomeSort by relevance Sort by last modified time
    Searched refs:end_time (Results 1 - 25 of 32) sorted by null

1 2

  /external/bluetooth/glib/glib/
gasyncqueue.h 91 /* Wait for data until at maximum until end_time is reached. NULL is returned
95 GTimeVal *end_time);
97 GTimeVal *end_time);
gtimer.c 185 GTimeVal end_time;
187 g_get_current_time (&end_time);
191 g_time_val_add (&end_time, G_MAXLONG);
193 g_time_val_add (&end_time, microseconds);
201 &end_time))
gthread.h 92 GTimeVal *end_time);
  /external/gtest/samples/
sample5_unittest.cc 75 const time_t end_time = time(NULL); local
80 EXPECT_TRUE(end_time - start_time_ <= 5) << "The test took too long.";
  /external/dbus/dbus/
dbus-sysdeps-pthread.c 241 struct timespec end_time; local
250 end_time.tv_sec = time_now.tv_sec + timeout_milliseconds / 1000;
251 end_time.tv_nsec = (time_now.tv_usec + (timeout_milliseconds % 1000) * 1000) * 1000;
252 if (end_time.tv_nsec > 1000*1000*1000)
254 end_time.tv_sec += 1;
255 end_time.tv_nsec -= 1000*1000*1000;
260 result = pthread_cond_timedwait (&pcond->cond, &pmutex->lock, &end_time);
  /external/srec/srec/crec/
word_lattice.c 49 WT.end_time = MAXframeID; \
127 ASSERT(!last_wtoken || last_wtoken->end_time > wtoken->end_time);
128 ASSERT(rec->accumulated_cost_offset[ wtoken->end_time] != 0);
129 cost = wtoken->cost + rec->accumulated_cost_offset[ wtoken->end_time];
134 cost_for_word = cost - next_wtoken->cost - rec->accumulated_cost_offset[ next_wtoken->end_time];
141 PLogMessage (" (%d W%d %s cost=%d/%d/%d time=%d%s node=%d)", wtoken_index, wtoken->word, p, wtoken->cost, cost, cost_for_word, wtoken->end_time, iwttime, wtoken->end_node);
262 /* sprintf(buf,"%s@%d.%d",w, WORD_TOKEN_GET_WD_ETIME(wtoken), wtoken->end_time); */
270 sprintf(buf, "%s@%d", w, wtoken->end_time);
317 ASSERT(rec->accumulated_cost_offset[ wtoken->end_time] != 0)
    [all...]
astar.c 307 if (wtoken->end_time > word_token_array[parp->token_index].end_time)
322 ASSERT(word_token_array[best_extend_token].end_time ==
323 word_token_array[extend_token_index].end_time);
369 join_frame_diff = alt_wtoken->end_time - wtoken->end_time;
502 /* wtoken->end_time should be equal to rec->current_search_frame */
503 ASSERT(rec->accumulated_cost_offset[ wtoken->end_time] != 0);
504 parp->costsofar = rec->accumulated_cost_offset[ wtoken->end_time];
713 if (wtoken->end_time != MAXframeID
935 frameID end_time; local
    [all...]
priority_q.c 134 history_for_token1 += word_token_array[token1->backtrace].end_time;
141 history_for_token2 += word_token_array[token2->backtrace].end_time;
srec_results.c 333 lenp = sprintf(et, "@%d", wtoken->end_time);
379 start_frame = wtoken->end_time;
387 end_frame = wtoken->end_time;
srec_eosd.c 157 nframes_since_eos = rec->current_search_frame - last_wtoken->end_time;
srec.c 733 if (btoken->end_time >= rec->current_search_frame)
754 wtoken->end_time = rec->current_search_frame;
    [all...]
  /external/oprofile/daemon/
init.c 156 unsigned long long end_time = 0ULL; local
173 end_time = tv.tv_sec;
174 sprintf(end_time_str, "%llu", end_time);
  /external/bluetooth/glib/gthread/
gthread-posix.c 223 struct timespec end_time; local
237 end_time.tv_sec = abs_time->tv_sec;
238 end_time.tv_nsec = abs_time->tv_usec * (G_NSEC_PER_SEC / G_USEC_PER_SEC);
240 g_return_val_if_fail (end_time.tv_nsec < G_NSEC_PER_SEC, TRUE);
244 &end_time);
gthread-impl.c 216 GTimeVal *end_time,
240 end_time);
  /build/tools/dexpreopt/
dexpreopt.py 201 def ShowTimeout(timeout, end_time):
206 end_time: a time.time()-based value indicating when the timeout should
211 remaining = end_time - time.time()
244 end_time = time.time() + timeout
246 end_time = 0
254 if end_time:
255 remaining = end_time - time.time()
264 end_time = time.time() + timeout
281 ShowTimeout(timeout, end_time)
287 ShowTimeout(timeout, end_time)
    [all...]
  /external/qemu/
trace.h 19 extern uint64_t start_time, end_time;
  /external/webkit/JavaScriptCore/tests/mozilla/
runtests.pl 399 $end_time = time;
401 $test_seconds = ( $end_time - $start_time );
  /external/v8/src/
platform-openbsd.cc 514 struct timeval end_time; local
515 timeradd(&current_time, &delta, &end_time);
518 TIMEVAL_TO_TIMESPEC(&end_time, &ts);
platform-solaris.cc 501 struct timeval end_time; local
502 timeradd(&current_time, &delta, &end_time);
505 TIMEVAL_TO_TIMESPEC(&end_time, &ts);
platform-freebsd.cc 541 struct timeval end_time; local
542 timeradd(&current_time, &delta, &end_time);
545 TIMEVAL_TO_TIMESPEC(&end_time, &ts);
platform-linux.cc 643 struct timeval end_time; local
644 timeradd(&current_time, &delta, &end_time);
647 TIMEVAL_TO_TIMESPEC(&end_time, &ts);
  /external/srec/srec/include/
srec.h 105 frameID end_time; /* end time of the word just observed, includes trailing silence */ member in struct:word_token_t
  /external/blktrace/btt/
devs.c 171 dip->end_time = BIT_TIME(iop->t.time);
globals.h 148 double start_time, last_plug, plugged_time, end_time; member in struct:d_info
  /external/v8/tools/
test.py 464 if timeout is None: end_time = None
465 else: end_time = time.time() + timeout
472 if (not end_time is None) and (time.time() >= end_time):
    [all...]

Completed in 1290 milliseconds

1 2