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

1 2 3

  /system/extras/tests/schedtest/
schedtest.c 27 struct timeval tv1; local
33 gettimeofday(&tv1, NULL);
37 long usec = (tv2.tv_sec - tv1.tv_sec) * 1000000 + tv2.tv_usec - tv1.tv_usec;
  /external/ltp/testcases/kernel/syscalls/gettimeofday/
gettimeofday02.c 57 struct timeval tv1, tv2; local
64 if (gettimeofday(&tv1, NULL)) {
75 if (tv2.tv_sec < tv1.tv_sec ||
76 (tv2.tv_sec == tv1.tv_sec && tv2.tv_usec < tv1.tv_usec)) {
79 (intmax_t) tv1.tv_sec, (intmax_t) tv1.tv_usec,
84 tv1 = tv2;
  /cts/tests/tests/widget/src/android/widget/cts/
TextSwitcherTest.java 80 TextView tv1 = new TextView(mActivity); local
82 tv1.setText(viewText1);
84 mTextSwitcher.addView(tv1, 0, new ViewGroup.LayoutParams(PARAMS_WIDTH, PARAMS_HEIGHT));
91 assertSame(tv1, mTextSwitcher.getCurrentView());
103 assertSame(tv1, mTextSwitcher.getCurrentView());
120 TextView tv1 = new TextView(mActivity); local
122 tv1.setText(viewText1);
124 mTextSwitcher.addView(tv1, 0, new ViewGroup.LayoutParams(PARAMS_WIDTH, PARAMS_HEIGHT));
131 assertSame(tv1, mTextSwitcher.getCurrentView());
137 assertSame(tv1, mTextSwitcher.getCurrentView())
155 TextView tv1 = new TextView(mActivity); local
    [all...]
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_stdcall_clnt_call/
rpc_clnt_call_scalability.c 67 struct timeval tv1, tv2; local
94 gettimeofday(&tv1, &tz);
109 (tv2.tv_sec - tv1.tv_sec) * 1000000L + (tv2.tv_usec -
110 tv1.tv_usec);
rpc_clnt_call_performance.c 93 struct timeval tv1, tv2; local
120 gettimeofday(&tv1, &tz);
135 (tv2.tv_sec - tv1.tv_sec) * 1000000L + (tv2.tv_usec -
136 tv1.tv_usec);
  /external/llvm/include/llvm/Support/
TimeValue.h 192 friend TimeValue operator + (const TimeValue &tv1, const TimeValue &tv2);
197 friend TimeValue operator - (const TimeValue &tv1, const TimeValue &tv2);
371 inline TimeValue operator + (const TimeValue &tv1, const TimeValue &tv2) {
372 TimeValue sum (tv1.seconds_ + tv2.seconds_, tv1.nanos_ + tv2.nanos_);
377 inline TimeValue operator - (const TimeValue &tv1, const TimeValue &tv2) {
378 TimeValue difference (tv1.seconds_ - tv2.seconds_, tv1.nanos_ - tv2.nanos_ );
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
TimeValue.h 183 friend TimeValue operator + (const TimeValue &tv1, const TimeValue &tv2);
188 friend TimeValue operator - (const TimeValue &tv1, const TimeValue &tv2);
367 inline TimeValue operator + (const TimeValue &tv1, const TimeValue &tv2) {
368 TimeValue sum (tv1.seconds_ + tv2.seconds_, tv1.nanos_ + tv2.nanos_);
373 inline TimeValue operator - (const TimeValue &tv1, const TimeValue &tv2) {
374 TimeValue difference (tv1.seconds_ - tv2.seconds_, tv1.nanos_ - tv2.nanos_ );
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
TimeValue.h 192 friend TimeValue operator + (const TimeValue &tv1, const TimeValue &tv2);
197 friend TimeValue operator - (const TimeValue &tv1, const TimeValue &tv2);
371 inline TimeValue operator + (const TimeValue &tv1, const TimeValue &tv2) {
372 TimeValue sum (tv1.seconds_ + tv2.seconds_, tv1.nanos_ + tv2.nanos_);
377 inline TimeValue operator - (const TimeValue &tv1, const TimeValue &tv2) {
378 TimeValue difference (tv1.seconds_ - tv2.seconds_, tv1.nanos_ - tv2.nanos_ );
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_broadc_clnt_broadcast/
rpc_clnt_broadcast_performance.c 95 struct timeval tv1, tv2; local
111 gettimeofday(&tv1, &tz);
127 (tv2.tv_sec - tv1.tv_sec) * 1000000L + (tv2.tv_usec -
128 tv1.tv_usec);
rpc_clnt_broadcast_scalability.c 95 struct timeval tv1, tv2; local
111 gettimeofday(&tv1, &tz);
127 (tv2.tv_sec - tv1.tv_sec) * 1000000L + (tv2.tv_usec -
128 tv1.tv_usec);
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clntraw_create/
rpc_clntraw_create_performance.c 93 struct timeval tv1, tv2; local
107 gettimeofday(&tv1, &tz);
117 (tv2.tv_sec - tv1.tv_sec) * 1000000L + (tv2.tv_usec -
118 tv1.tv_usec);
rpc_clntraw_create_complex.c 49 struct timeval tv1, tv2; local
92 gettimeofday(&tv1, &tz);
101 (tv2.tv_sec - tv1.tv_sec) * 1000000L +
102 (tv2.tv_usec - tv1.tv_usec);
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_svcraw_create/
rpc_svcraw_create_performance.c 93 struct timeval tv1, tv2; local
106 gettimeofday(&tv1, &tz);
116 (tv2.tv_sec - tv1.tv_sec) * 1000000L + (tv2.tv_usec -
117 tv1.tv_usec);
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_svctcp_create/
rpc_svctcp_create_performance.c 93 struct timeval tv1, tv2; local
109 gettimeofday(&tv1, &tz);
119 (tv2.tv_sec - tv1.tv_sec) * 1000000L + (tv2.tv_usec -
120 tv1.tv_usec);
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_svcudp_create/
rpc_svcudp_create_performance.c 93 struct timeval tv1, tv2; local
109 gettimeofday(&tv1, &tz);
119 (tv2.tv_sec - tv1.tv_sec) * 1000000L + (tv2.tv_usec -
120 tv1.tv_usec);
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_stdcall_callrpc/
rpc_callrpc_performance.c 93 struct timeval tv1, tv2; local
109 gettimeofday(&tv1, &tz);
124 (tv2.tv_sec - tv1.tv_sec) * 1000000L + (tv2.tv_usec -
125 tv1.tv_usec);
rpc_callrpc_scalability.c 93 struct timeval tv1, tv2; local
109 gettimeofday(&tv1, &tz);
124 (tv2.tv_sec - tv1.tv_sec) * 1000000L + (tv2.tv_usec -
125 tv1.tv_usec);
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_simple_rpc_broadcast/
tirpc_rpc_broadcast_performance.c 99 struct timeval tv1, tv2; local
116 gettimeofday(&tv1, &tz);
129 (tv2.tv_sec - tv1.tv_sec) * 1000000L + (tv2.tv_usec -
130 tv1.tv_usec);
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_simple_rpc_broadcast_exp/
tirpc_rpc_broadcast_exp_performance.c 99 struct timeval tv1, tv2; local
116 gettimeofday(&tv1, &tz);
130 (tv2.tv_sec - tv1.tv_sec) * 1000000L + (tv2.tv_usec -
131 tv1.tv_usec);
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_simple_rpc_call/
tirpc_rpc_call_performance.c 93 struct timeval tv1, tv2; local
117 gettimeofday(&tv1, &tz);
129 (tv2.tv_sec - tv1.tv_sec) * 1000000L + (tv2.tv_usec -
130 tv1.tv_usec);
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_toplevel_clnt_call/
tirpc_toplevel_clnt_call_performance.c 93 struct timeval tv1, tv2; local
121 gettimeofday(&tv1, &tz);
133 (tv2.tv_sec - tv1.tv_sec) * 1000000L + (tv2.tv_usec -
134 tv1.tv_usec);
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_addrmanagmt_pmap_rmtcall/
rpc_pmap_rmtcall_performance.c 98 struct timeval tv1, tv2; local
130 gettimeofday(&tv1, &tz);
143 (tv2.tv_sec - tv1.tv_sec) * 1000000L + (tv2.tv_usec -
144 tv1.tv_usec);
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clnttcp_create/
rpc_clnttcp_create_performance.c 95 struct timeval tv1, tv2; local
122 gettimeofday(&tv1, &tz);
136 (tv2.tv_sec - tv1.tv_sec) * 1000000L + (tv2.tv_usec -
137 tv1.tv_usec);
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clntudp_create/
rpc_clntudp_create_performance.c 94 struct timeval tv1, tv2; local
124 gettimeofday(&tv1, &tz);
136 (tv2.tv_sec - tv1.tv_sec) * 1000000L + (tv2.tv_usec -
137 tv1.tv_usec);
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_bottomlevel_clnt_call/
tirpc_bottomlevel_clnt_call_performance.c 96 struct timeval tv1, tv2; local
153 gettimeofday(&tv1, &tz);
165 (tv2.tv_sec - tv1.tv_sec) * 1000000L + (tv2.tv_usec -
166 tv1.tv_usec);

Completed in 350 milliseconds

1 2 3