Searched refs:end_time (Results 1 – 17 of 17) sorted by relevance
/external/dbus/dbus/ |
D | dbus-sysdeps-pthread.c | 241 struct timespec end_time; in _dbus_pthread_condvar_wait_timeout() local 250 end_time.tv_sec = time_now.tv_sec + timeout_milliseconds / 1000; in _dbus_pthread_condvar_wait_timeout() 251 end_time.tv_nsec = (time_now.tv_usec + (timeout_milliseconds % 1000) * 1000) * 1000; in _dbus_pthread_condvar_wait_timeout() 252 if (end_time.tv_nsec > 1000*1000*1000) in _dbus_pthread_condvar_wait_timeout() 254 end_time.tv_sec += 1; in _dbus_pthread_condvar_wait_timeout() 255 end_time.tv_nsec -= 1000*1000*1000; in _dbus_pthread_condvar_wait_timeout() 260 result = pthread_cond_timedwait (&pcond->cond, &pmutex->lock, &end_time); in _dbus_pthread_condvar_wait_timeout()
|
/external/srec/srec/crec/ |
D | astar.c | 307 if (wtoken->end_time > word_token_array[parp->token_index].end_time) in extend_path() 322 ASSERT(word_token_array[best_extend_token].end_time == in extend_path() 323 word_token_array[extend_token_index].end_time); in extend_path() 369 join_frame_diff = alt_wtoken->end_time - wtoken->end_time; in extend_path() 503 ASSERT(rec->accumulated_cost_offset[ wtoken->end_time] != 0); in make_partial_path() 504 parp->costsofar = rec->accumulated_cost_offset[ wtoken->end_time]; in make_partial_path() 713 if (wtoken->end_time != MAXframeID) in astar_stack_do_backwards_search() 718 sort_word_lattice_at_frame(rec, (frameID)(wtoken->end_time + 1)); in astar_stack_do_backwards_search() 723 btoken_index = lattice->words_for_frame[ wtoken->end_time+1]; in astar_stack_do_backwards_search() 732 printf("Frame %d\n", wtoken->end_time + 1); in astar_stack_do_backwards_search() [all …]
|
D | word_lattice.c | 49 WT.end_time = MAXframeID; \ 127 ASSERT(!last_wtoken || last_wtoken->end_time > wtoken->end_time); in print_word_token_backtrace() 128 ASSERT(rec->accumulated_cost_offset[ wtoken->end_time] != 0); in print_word_token_backtrace() 129 cost = wtoken->cost + rec->accumulated_cost_offset[ wtoken->end_time]; in print_word_token_backtrace() 134 … cost_for_word = cost - next_wtoken->cost - rec->accumulated_cost_offset[ next_wtoken->end_time]; in print_word_token_backtrace() 141 …oken_index, wtoken->word, p, wtoken->cost, cost, cost_for_word, wtoken->end_time, iwttime, wtoken-… in print_word_token_backtrace() 270 sprintf(buf, "%s@%d", w, wtoken->end_time); in sprint_word_token_backtrace() 317 ASSERT(rec->accumulated_cost_offset[ wtoken->end_time] != 0); in print_word_token() 318 cost = wtoken->cost + rec->accumulated_cost_offset[wtoken->end_time]; in print_word_token() 322 cost_for_word = cost - next_wtoken->cost - rec->accumulated_cost_offset[next_wtoken->end_time]; in print_word_token() [all …]
|
D | srec_results.c | 333 lenp = sprintf(et, "@%d", wtoken->end_time); in srec_nbest_get_result() 379 start_frame = wtoken->end_time; in srec_nbest_get_choice_info() 387 end_frame = wtoken->end_time; in srec_nbest_get_choice_info()
|
D | priority_q.c | 134 history_for_token1 += word_token_array[token1->backtrace].end_time; in compare_histories() 141 history_for_token2 += word_token_array[token2->backtrace].end_time; in compare_histories()
|
D | srec.c | 733 if (btoken->end_time >= rec->current_search_frame) in srec_process_word_boundary_nbest() 754 wtoken->end_time = rec->current_search_frame; in srec_process_word_boundary_nbest() 943 rec->word_token_array[wtoken_index].end_time - current_ftoken->silence_duration); in do_epsilon_updates() 1382 … ct_end_time = rec->word_token_array[current_token->word_backtrace[end_state]].end_time; in update_from_hmms_to_fsmnodes() 1384 et_end_time = rec->word_token_array[ftoken->word_backtrace].end_time; in update_from_hmms_to_fsmnodes() 1804 wtoken->end_time = frame; in srec_force_the_end() 1878 rec->word_token_array[word_token_index].end_time - ftoken->silence_duration); in srec_no_more_frames() 2377 if (*start_frame == 0) *start_frame = wtoken->end_time; in multi_srec_get_speech_bounds() 2385 *start_frame = wtoken->end_time; in multi_srec_get_speech_bounds() 2391 *end_frame = wtoken->end_time; in multi_srec_get_speech_bounds()
|
D | srec_eosd.c | 157 nframes_since_eos = rec->current_search_frame - last_wtoken->end_time; in srec_check_end_of_speech()
|
/external/oprofile/daemon/ |
D | init.c | 156 unsigned long long end_time = 0ULL; in opd_do_jitdumps() local 173 end_time = tv.tv_sec; in opd_do_jitdumps() 174 sprintf(end_time_str, "%llu", end_time); in opd_do_jitdumps()
|
/external/gtest/samples/ |
D | sample5_unittest.cc | 75 const time_t end_time = time(NULL); in TearDown() local 80 EXPECT_TRUE(end_time - start_time_ <= 5) << "The test took too long."; in TearDown()
|
/external/webkit/JavaScriptCore/tests/mozilla/ |
D | runtests.pl | 399 $end_time = time; 401 $test_seconds = ( $end_time - $start_time );
|
/external/qemu/ |
D | trace.h | 19 extern uint64_t start_time, end_time;
|
D | trace.c | 50 uint64_t start_time, end_time; variable 527 end_time = Now(); in trace_cleanup() 528 elapsed_usecs += end_time - start_time; in trace_cleanup()
|
D | vl.c | 1850 end_time = Now(); in stop_tracing() 1851 elapsed_usecs += end_time - start_time; in stop_tracing()
|
/external/srec/srec/include/ |
D | srec.h | 105 frameID end_time; /* end time of the word just observed, includes trailing silence */ member
|
/external/blktrace/btt/ |
D | devs.c | 171 dip->end_time = BIT_TIME(iop->t.time); in dip_alloc()
|
D | globals.h | 148 double start_time, last_plug, plugged_time, end_time; member
|
D | output.c | 527 dip_unplug(dip->device, dip->end_time, 0); in __dip_output_plug() 529 delta = dip->end_time - dip->start_time; in __dip_output_plug()
|