Searched refs:tv2 (Results 1 - 9 of 9) sorted by relevance

/external/llvm/include/llvm/Support/
H A DTimeValue.h182 friend TimeValue operator + (const TimeValue &tv1, const TimeValue &tv2);
187 friend TimeValue operator - (const TimeValue &tv1, const TimeValue &tv2);
361 inline TimeValue operator + (const TimeValue &tv1, const TimeValue &tv2) { argument
362 TimeValue sum (tv1.seconds_ + tv2.seconds_, tv1.nanos_ + tv2.nanos_);
367 inline TimeValue operator - (const TimeValue &tv1, const TimeValue &tv2) { argument
368 TimeValue difference (tv1.seconds_ - tv2.seconds_, tv1.nanos_ - tv2.nanos_ );
/external/e2fsprogs/e2fsck/
H A Dscantest.c64 struct timeval *tv2)
66 return ((tv1->tv_sec - tv2->tv_sec) +
67 ((float) (tv1->tv_usec - tv2->tv_usec)) / 1000000);
63 timeval_subtract(struct timeval *tv1, struct timeval *tv2) argument
H A Dutil.c364 struct timeval *tv2)
366 return ((tv1->tv_sec - tv2->tv_sec) +
367 ((float) (tv1->tv_usec - tv2->tv_usec)) / 1000000);
363 timeval_subtract(struct timeval *tv1, struct timeval *tv2) argument
/external/e2fsprogs/resize/
H A Dresource_track.c53 struct timeval *tv2)
55 return ((tv1->tv_sec - tv2->tv_sec) +
56 ((float) (tv1->tv_usec - tv2->tv_usec)) / 1000000);
52 timeval_subtract(struct timeval *tv1, struct timeval *tv2) argument
/external/eigen/unsupported/Eigen/src/IterativeSolvers/
H A DDGMRES.h311 DenseVector tv1(n), tv2(n); //Temporary vectors
318 tv2 = precond.solve(tv1);
322 tv2 = precond.solve(m_V.col(it)); // User's selected preconditioner
324 tv1 = mat * tv2;
377 dgmresApplyDeflation(tv1, tv2);
378 x = x + precond.solve(tv2);
/external/e2fsprogs/misc/
H A Dbadblocks.c180 struct timeval *tv2, char *buf)
182 time_t diff = (tv1->tv_sec - tv2->tv_sec);
355 struct timeval tv1, tv2; local
378 gettimeofday(&tv2, NULL);
387 ts.tv_sec = tv2.tv_sec - tv1.tv_sec;
388 ts.tv_nsec = (tv2.tv_usec - tv1.tv_usec) * MILISEC;
405 tv.tv_sec = tv2.tv_sec - tv1.tv_sec;
406 tv.tv_usec = tv2.tv_usec - tv1.tv_usec;
179 time_diff_format(struct timeval *tv1, struct timeval *tv2, char *buf) argument
/external/e2fsprogs/lib/uuid/
H A Dgen_uuid.c352 unsigned long tv1, tv2; local
356 &cl, &tv1, &tv2, &a) == 4) {
359 last.tv_usec = tv2;
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dmulti-level-substitution.cpp237 tuple_of_values<int&, float&>::apply<i, i>::type tv2; // expected-error{{non-type template parameter of reference type 'float &' cannot bind to template argument of type 'int'}} member in namespace:ExpandingNonTypeTemplateParameters
/external/iputils/
H A Darping.c102 #define MS_TDIFF(tv1,tv2) ( ((tv1).tv_sec-(tv2).tv_sec)*1000 + \
103 ((tv1).tv_usec-(tv2).tv_usec)/1000 )

Completed in 852 milliseconds