Home
last modified time | relevance | path

Searched refs:tsum (Results 1 – 5 of 5) sorted by relevance

/external/opencv/cv/src/
Dcvstereobm.cpp297 int tsum = 0; in icvFindStereoCorrespondenceBM_SSE2() local
299 tsum += htext[y]; in icvFindStereoCorrespondenceBM_SSE2()
343 tsum += htext[y + wsz2] - htext[y - wsz2 - 1]; in icvFindStereoCorrespondenceBM_SSE2()
344 if( tsum < textureThreshold ) in icvFindStereoCorrespondenceBM_SSE2()
493 int tsum = 0; in icvFindStereoCorrespondenceBM() local
495 tsum += htext[y]; in icvFindStereoCorrespondenceBM()
514 tsum += htext[y + wsz2] - htext[y - wsz2 - 1]; in icvFindStereoCorrespondenceBM()
515 if( tsum < textureThreshold ) in icvFindStereoCorrespondenceBM()
/external/ping/
Dping.c118 long long tsum; /* sum of all times, for doing average */ variable
744 tsum += triptime; in gather_statistics()
877 tsum /= nreceived + nrepeats; in finish()
879 tmdev = llsqrt(tsum2 - tsum * tsum); in finish()
883 (unsigned long)(tsum/1000), (long)(tsum%1000), in finish()
913 tavg = tsum / (nreceived + nrepeats); in status()
Dping_common.h107 extern long long tsum; /* sum of all times, for doing average */
/external/ping6/
Dping6.c249 double tsum = 0.0; /* sum of all times, for doing average */ variable
1492 tsum += triptime; in pr_pack()
2160 avg = tsum / num; in summary()
2163 avg = tsum; in summary()
/external/openfst/src/test/
Dalgo_test.h780 Weight tsum = ShortestDistance(T); in TestSearch() local
782 CHECK(ApproxEqual(tsum, psum, kTestDelta)); in TestSearch()