/external/testng/doc/ |
D | book-toc.html | 11 …</a></font></td></tr></table><font size="3" face="Times"><span style="font-size:16px;font-family:T… 14 <font size="6" face="Times"><span style="font-size:48px;font-family:Times"> 18 <font size="8" face="Times"><span style="font-size:12px;font-family:Times"> 29 <font size="8" face="Times"><span style="font-size:16px;font-family:Times"> 34 <font size="8" face="Times"><span style="font-size:12px;font-family:Times"> 39 <font size="8" face="Times"><span style="font-size:11px;font-family:Times"> 42 <font size="8" face="Times"><span style="font-size:12px;font-family:Times"> 45 <font size="8" face="Times"><span style="font-size:11px;font-family:Times"> 48 <font size="8" face="Times"><span style="font-size:12px;font-family:Times"> 51 <font size="8" face="Times"><span style="font-size:11px;font-family:Times"> [all …]
|
/external/libvpx/vp8/common/x86/ |
D | subpixel_mmx.asm | 209 times 4 dw 0x40 214 times 8 dw 0 215 times 8 dw 0 216 times 8 dw 128 217 times 8 dw 0 218 times 8 dw 0 219 times 8 dw 0 221 times 8 dw 0 222 times 8 dw -6 223 times 8 dw 123 [all …]
|
/external/sdv/vsomeip/third_party/boost/numeric/odeint/test/ |
D | integrate_times.cpp | 67 push_back_time( std::vector< double > × ) in push_back_time() 68 : m_times( times ) { } in push_back_time() 86 std::vector< double > times; in BOOST_AUTO_TEST_CASE() local 92 dt , push_back_time( times ) ); in BOOST_AUTO_TEST_CASE() 95 // check if observer was called at times 0,1,2,... in BOOST_AUTO_TEST_CASE() 96 BOOST_CHECK_EQUAL( times[i] , static_cast<double>(i) ); in BOOST_AUTO_TEST_CASE() 97 times.clear(); in BOOST_AUTO_TEST_CASE() 104 dt , push_back_time( times ) ); in BOOST_AUTO_TEST_CASE() 107 // check if observer was called at times 0,1,2,... in BOOST_AUTO_TEST_CASE() 108 BOOST_CHECK_EQUAL( times[i] , static_cast<double>(i) ); in BOOST_AUTO_TEST_CASE() [all …]
|
D | integrate_implicit.cpp | 86 push_back_time( std::vector< double > × ) in push_back_time() 87 : m_times( times ) { } in push_back_time() 104 std::vector< value_type > times; in operator ()() local 107 dt , push_back_time( times ) ); in operator ()() 109 … BOOST_CHECK_EQUAL( static_cast<int>(times.size()) , static_cast<int>(std::floor(t_end/dt))+1 ); in operator ()() 111 for( size_t i=0 ; i<times.size() ; ++i ) in operator ()() 114 // check if observer was called at times 0,1,2,... in operator ()() 115 BOOST_CHECK_SMALL( times[i] - static_cast< value_type >(i)*dt , (i+1) * 2.0e-16 ); in operator ()() 129 std::vector< value_type > times; in operator ()() local 132 dt , push_back_time( times ) ); in operator ()() [all …]
|
D | integrate.cpp | 90 push_back_time( std::vector< double > × , state_type &x ) in push_back_time() 91 : m_times( times ) , m_x( x ) { } in push_back_time() 109 std::vector< value_type > times; in operator ()() local 112 dt , push_back_time( times , x_end ) ); in operator ()() 115 …std::cout << t_end << " (" << dt << "), " << steps << " , " << times.size() << " , " << 10.0+dt*st… in operator ()() 119 BOOST_CHECK_EQUAL( static_cast<int>(times.size()) , static_cast<int>(floor(t_end/dt))+1 ); in operator ()() 121 for( size_t i=0 ; i<times.size() ; ++i ) in operator ()() 123 … //std::cout << i << " , " << times[i] << " , " << static_cast< value_type >(i)*dt << std::endl; in operator ()() 124 // check if observer was called at times 0,1,2,... in operator ()() 125 BOOST_CHECK_SMALL( times[i] - static_cast< value_type >(i)*dt , (i+1) * 2E-16 ); in operator ()() [all …]
|
D | step_size_limitation.cpp | 50 push_back_time( std::vector< double > × ) in push_back_time() 51 : m_times( times ) { } in push_back_time() 114 std::vector<double> times; in test_explicit_stepper() local 116 integrate_adaptive(stepper, damped_osc, x, 0.0, steps*max_dt, max_dt, push_back_time(times)); in test_explicit_stepper() 118 BOOST_CHECK_EQUAL(times.size(), steps+1); in test_explicit_stepper() 120 for( size_t i=0 ; i<times.size() ; ++i ) in test_explicit_stepper() 121 // check if observer was called at times 0,1,2,... in test_explicit_stepper() 122 BOOST_CHECK_SMALL( times[i] - static_cast<double>(i)*max_dt , 1E-15); in test_explicit_stepper() 123 times.clear(); in test_explicit_stepper() 126 integrate_adaptive(stepper, damped_osc, x, 0.0, steps*max_dt, 10*max_dt, push_back_time(times)); in test_explicit_stepper() [all …]
|
/external/icu/icu4c/source/test/perf/howExpensiveIs/ |
D | sieve.cpp | 85 double midpoint(double *times, double i, int n) { in midpoint() argument 90 return times[static_cast<int>(fl)]; in midpoint() 92 return (times[static_cast<int>(fl)] + times[static_cast<int>(ce)]) / 2; in midpoint() 96 double medianof(double *times, int n, int type) { in medianof() argument 99 return midpoint(times,n/4,n); in medianof() 101 return midpoint(times,n/2,n); in medianof() 103 return midpoint(times,(n/2)+(n/4),n); in medianof() 108 double qs(double *times, int n, double *q1, double *q2, double *q3) { in qs() argument 109 *q1 = medianof(times,n,1); in qs() 110 *q2 = medianof(times,n,2); in qs() [all …]
|
/external/cronet/stable/third_party/icu/source/test/perf/howExpensiveIs/ |
D | sieve.cpp | 85 double midpoint(double *times, double i, int n) { in midpoint() argument 90 return times[(int)fl]; in midpoint() 92 return (times[(int)fl]+times[(int)ce])/2; in midpoint() 96 double medianof(double *times, int n, int type) { in medianof() argument 99 return midpoint(times,n/4,n); in medianof() 101 return midpoint(times,n/2,n); in medianof() 103 return midpoint(times,(n/2)+(n/4),n); in medianof() 108 double qs(double *times, int n, double *q1, double *q2, double *q3) { in qs() argument 109 *q1 = medianof(times,n,1); in qs() 110 *q2 = medianof(times,n,2); in qs() [all …]
|
/external/cronet/tot/third_party/icu/source/test/perf/howExpensiveIs/ |
D | sieve.cpp | 85 double midpoint(double *times, double i, int n) { in midpoint() argument 90 return times[(int)fl]; in midpoint() 92 return (times[(int)fl]+times[(int)ce])/2; in midpoint() 96 double medianof(double *times, int n, int type) { in medianof() argument 99 return midpoint(times,n/4,n); in medianof() 101 return midpoint(times,n/2,n); in medianof() 103 return midpoint(times,(n/2)+(n/4),n); in medianof() 108 double qs(double *times, int n, double *q1, double *q2, double *q3) { in qs() argument 109 *q1 = medianof(times,n,1); in qs() 110 *q2 = medianof(times,n,2); in qs() [all …]
|
/external/webrtc/net/dcsctp/timer/ |
D | timer_test.cc | 67 EXPECT_CALL(on_expired_, Call).Times(0); in TEST_F() 73 EXPECT_CALL(on_expired_, Call).Times(1); in TEST_F() 82 EXPECT_CALL(on_expired_, Call).Times(0); in TEST_F() 89 EXPECT_CALL(on_expired_, Call).Times(1); in TEST_F() 94 EXPECT_CALL(on_expired_, Call).Times(0); in TEST_F() 98 EXPECT_CALL(on_expired_, Call).Times(1); in TEST_F() 103 EXPECT_CALL(on_expired_, Call).Times(0); in TEST_F() 107 EXPECT_CALL(on_expired_, Call).Times(1); in TEST_F() 119 EXPECT_CALL(on_expired_, Call).Times(0); in TEST_F() 124 EXPECT_CALL(on_expired_, Call).Times(1); in TEST_F() [all …]
|
/external/libpng/contrib/pngsuite/ |
D | README | 64 Filter 0 was used 32 times 66 Filter 0 was used 32 times 68 Filter 0 was used 32 times 70 Filter 1 was used 9 times 71 Filter 4 was used 23 times 73 Filter 1 was used 1 times 74 Filter 2 was used 31 times 76 Filter 1 was used 5 times 77 Filter 4 was used 27 times 79 Filter 1 was used 1 times [all …]
|
/external/musl/src/stat/ |
D | utimensat.c | 10 int utimensat(int fd, const char *path, const struct timespec times[2], int flags) in utimensat() 13 if (times && times[0].tv_nsec==UTIME_NOW && times[1].tv_nsec==UTIME_NOW) in utimensat() 14 times = 0; in utimensat() 19 if (times) { in utimensat() 20 ns0 = times[0].tv_nsec; in utimensat() 21 ns1 = times[1].tv_nsec; in utimensat() 22 if (!NS_SPECIAL(ns0)) s0 = times[0].tv_sec; in utimensat() 23 if (!NS_SPECIAL(ns1)) s1 = times[1].tv_sec; in utimensat() 26 r = __syscall(SYS_utimensat_time64, fd, path, times ? in utimensat() 33 times ? ((long[]){s0, ns0, s1, ns1}) : 0, flags); in utimensat() [all …]
|
/external/perfetto/test/trace_processor/diff_tests/tables/ |
D | tests_counters.py | 287 0,"cpu.times.user_ns","[NULL]",0 288 1,"cpu.times.user_nice_ns","[NULL]",0 289 2,"cpu.times.system_mode_ns","[NULL]",0 290 3,"cpu.times.idle_ns","[NULL]",0 291 4,"cpu.times.io_wait_ns","[NULL]",0 292 5,"cpu.times.irq_ns","[NULL]",0 293 6,"cpu.times.softirq_ns","[NULL]",0 294 7,"cpu.times.user_ns","[NULL]",1 295 8,"cpu.times.user_nice_ns","[NULL]",1 296 9,"cpu.times.system_mode_ns","[NULL]",1 [all …]
|
/external/sdv/vsomeip/third_party/boost/mpl/include/boost/mpl/aux_/preprocessed/bcc/ |
D | times.hpp | 9 // *Preprocessed* version of the main "times.hpp" header 68 struct times struct 69 : times< times< times< times< N1,N2 >, N3>, N4>, N5> 73 , times 81 struct times< N1,N2,N3,N4,na > struct 83 : times< times< times< N1,N2 >, N3>, N4> 87 , times 95 struct times< N1,N2,N3,na,na > struct 97 : times< times< N1,N2 >, N3> 101 , times [all …]
|
/external/sdv/vsomeip/third_party/boost/mpl/include/boost/mpl/aux_/preprocessed/mwcw/ |
D | times.hpp | 9 // Preprocessed version of "boost/mpl/times.hpp" header 68 struct times struct 69 : times< times< times< times< N1,N2 >, N3>, N4>, N5> 73 , times 81 struct times< N1,N2,N3,N4,na > struct 83 : times< times< times< N1,N2 >, N3>, N4> 87 , times 95 struct times< N1,N2,N3,na,na > struct 97 : times< times< N1,N2 >, N3> 101 , times [all …]
|
/external/sdv/vsomeip/third_party/boost/mpl/include/boost/mpl/aux_/preprocessed/bcc_pre590/ |
D | times.hpp | 9 // *Preprocessed* version of the main "times.hpp" header 68 struct times struct 69 : times< times< times< times< N1,N2 >, N3>, N4>, N5> 73 , times 81 struct times< N1,N2,N3,N4,na > struct 83 : times< times< times< N1,N2 >, N3>, N4> 87 , times 95 struct times< N1,N2,N3,na,na > struct 97 : times< times< N1,N2 >, N3> 101 , times [all …]
|
/external/sdv/vsomeip/third_party/boost/mpl/include/boost/mpl/aux_/preprocessed/bcc551/ |
D | times.hpp | 9 // Preprocessed version of "boost/mpl/times.hpp" header 68 struct times struct 69 : times< times< times< times< N1,N2 >, N3>, N4>, N5> 73 , times 81 struct times< N1,N2,N3,N4,na > struct 83 : times< times< times< N1,N2 >, N3>, N4> 87 , times 95 struct times< N1,N2,N3,na,na > struct 97 : times< times< N1,N2 >, N3> 101 , times [all …]
|
/external/sdv/vsomeip/third_party/boost/mpl/include/boost/mpl/aux_/preprocessed/no_ttp/ |
D | times.hpp | 9 // Preprocessed version of "boost/mpl/times.hpp" header 68 struct times struct 69 : times< times< times< times< N1,N2 >, N3>, N4>, N5> 73 , times 81 struct times< N1,N2,N3,N4,na > struct 83 : times< times< times< N1,N2 >, N3>, N4> 87 , times 95 struct times< N1,N2,N3,na,na > struct 97 : times< times< N1,N2 >, N3> 101 , times [all …]
|
/external/sdv/vsomeip/third_party/boost/mpl/include/boost/mpl/aux_/preprocessed/gcc/ |
D | times.hpp | 9 // Preprocessed version of "boost/mpl/times.hpp" header 68 struct times struct 69 : times< times< times< times< N1,N2 >, N3>, N4>, N5> 73 , times 81 struct times< N1,N2,N3,N4,na > struct 83 : times< times< times< N1,N2 >, N3>, N4> 87 , times 95 struct times< N1,N2,N3,na,na > struct 97 : times< times< N1,N2 >, N3> 101 , times [all …]
|
/external/sdv/vsomeip/third_party/boost/mpl/include/boost/mpl/aux_/preprocessed/dmc/ |
D | times.hpp | 9 // Preprocessed version of "boost/mpl/times.hpp" header 68 struct times struct 69 : times< times< times< times< N1,N2 >, N3>, N4>, N5> 73 , times 81 struct times< N1,N2,N3,N4,na > struct 83 : times< times< times< N1,N2 >, N3>, N4> 87 , times 95 struct times< N1,N2,N3,na,na > struct 97 : times< times< N1,N2 >, N3> 101 , times [all …]
|
/external/sdv/vsomeip/third_party/boost/mpl/include/boost/mpl/aux_/preprocessed/plain/ |
D | times.hpp | 9 // Preprocessed version of "boost/mpl/times.hpp" header 68 struct times struct 69 : times< times< times< times< N1,N2 >, N3>, N4>, N5> 76 struct times< N1,N2,N3,N4,na > struct 78 : times< times< times< N1,N2 >, N3>, N4> 82 , times 90 struct times< N1,N2,N3,na,na > struct 92 : times< times< N1,N2 >, N3> 96 , times 104 struct times< N1,N2,na,na,na > struct [all …]
|
/external/skia/modules/pathkit/perf/ |
D | perfReporter.js | 9 // warmup 3 times (arbitrary choice) 20 times = 0; 21 // See how many times we can do it in 100ms (arbitrary choice) 25 times++; 33 let goalTimes = times * 20; 36 times = 0; 38 while (times < goalTimes) { 40 times++; 45 const us = (end - start) * 1000 / times; 58 // warmup 3 times (arbitrary choice) [all …]
|
/external/angle/src/tests/preprocessor_tests/ |
D | define_test.cpp | 29 .Times(1); in TEST_F() 57 .Times(1); in TEST_F() 79 .Times(1); in TEST_F() 95 .Times(1); in TEST_F() 111 .Times(1); in TEST_F() 130 .Times(1); in TEST_F() 131 EXPECT_CALL(mDiagnostics, print(_, _, _)).Times(0); in TEST_F() 147 .Times(1); in TEST_F() 166 .Times(1); in TEST_F() 167 EXPECT_CALL(mDiagnostics, print(_, _, _)).Times(0); in TEST_F() [all …]
|
/external/pytorch/benchmarks/sparse/ |
D | spmv.py | 16 times = [] 21 times.append(start_timer.elapsed_time(stop_timer)) 23 return sum(times) / len(times) 33 times = [] 38 times.append(start_timer.elapsed_time(stop_timer)) 40 return sum(times) / len(times) 50 times = [] 56 times.append(start.elapsed_time(stop)) 58 coo_mean_time = sum(times) / len(times) 60 times = [] [all …]
|
/external/libwebm/webm_parser/tests/ |
D | master_value_parser_test.cc | 83 .Times(1); in TEST_F() 85 EXPECT_CALL(callback_, OnClusterEnd(metadata_, Cluster{})).Times(1); in TEST_F() 107 EXPECT_CALL(callback_, OnElementBegin(child_metadata, NotNull())).Times(1); in TEST_F() 110 EXPECT_CALL(callback_, OnElementBegin(child_metadata, NotNull())).Times(1); in TEST_F() 113 .Times(1); in TEST_F() 116 EXPECT_CALL(callback_, OnClusterEnd(metadata_, cluster)).Times(1); in TEST_F() 140 EXPECT_CALL(callback_, OnElementBegin(child_metadata, NotNull())).Times(1); in TEST_F() 143 EXPECT_CALL(callback_, OnElementBegin(child_metadata, NotNull())).Times(1); in TEST_F() 146 .Times(1); in TEST_F() 149 EXPECT_CALL(callback_, OnClusterEnd(metadata_, cluster)).Times(1); in TEST_F() [all …]
|