Searched refs:time_begin (Results 1 – 4 of 4) sorted by relevance
/external/marisa-trie/bindings/ruby/ |
D | benchmark.rb | 3 time_begin = Time.now 6 print "input: ", time_end - time_begin, "\n" 8 time_begin = Time.now 14 print "hash_build: ", time_end - time_begin, "\n" 16 time_begin = Time.now 22 print "hash_lookup: ", time_end - time_begin, "\n" 24 time_begin = Time.now 30 print "keyset_build: ", time_end - time_begin, "\n" 32 time_begin = Time.now 36 print "trie_build: ", time_end - time_begin, "\n" [all …]
|
/external/marisa-trie/bindings/perl/ |
D | benchmark.pl | 4 my $time_begin = Time::HiRes::gettimeofday(); 10 print "input: ", $time_end - $time_begin, "\n"; 12 $time_begin = Time::HiRes::gettimeofday(); 18 print "hash_build: ", $time_end - $time_begin, "\n"; 20 $time_begin = Time::HiRes::gettimeofday(); 25 print "hash_lookup: ", $time_end - $time_begin, "\n"; 27 $time_begin = Time::HiRes::gettimeofday(); 33 print "keyset_build: ", $time_end - $time_begin, "\n"; 35 $time_begin = Time::HiRes::gettimeofday(); 39 print "trie_build: ", $time_end - $time_begin, "\n"; [all …]
|
/external/marisa-trie/bindings/python/ |
D | benchmark.py | 5 time_begin = datetime.datetime.now() variable 10 print "input:", time_end - time_begin 12 time_begin = datetime.datetime.now() variable 17 print "dict_build:", time_end - time_begin 19 time_begin = datetime.datetime.now() variable 23 print "dict_lookup:", time_end - time_begin 25 time_begin = datetime.datetime.now() variable 30 print "keyset_build:", time_end - time_begin 32 time_begin = datetime.datetime.now() variable 36 print "trie_build:", time_end - time_begin [all …]
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
D | lp_bld_init.c | 572 int64_t time_begin = 0; in gallivm_compile_module() local 602 time_begin = os_time_get(); in gallivm_compile_module() 629 int time_msec = (int)((time_end - time_begin) / 1000); in gallivm_compile_module() 705 int64_t time_begin = 0; in gallivm_jit_function() local 711 time_begin = os_time_get(); in gallivm_jit_function() 719 int time_msec = (int)(time_end - time_begin) / 1000; in gallivm_jit_function()
|