Home
last modified time | relevance | path

Searched refs:bestres (Results 1 – 6 of 6) sorted by relevance

/dports/multimedia/vlc/vlc-3.0.16/share/lua/playlist/
H A Dvimeo.lua48 local bestres = nil
60 if not path or ( height and ( not bestres
62 or ( ( prefres < 0 or height <= prefres ) and height > bestres )
64 or ( prefres > -1 and bestres > prefres and height < bestres )
67 bestres = height
H A Dyoutube.lua267 local bestres = nil
273 if not pick or ( height and ( not bestres
275 or ( ( prefres < 0 or height <= prefres ) and height > bestres )
277 or ( prefres > -1 and bestres > prefres and height < bestres )
279 bestres = height
/dports/math/libmesh/libmesh-1.6.2/contrib/fparser/util/
H A Dpowi_opt.cc120 double bestres = 0; in main() local
185 if(res < bestres in main()
189 fprintf(stderr, " -- beats %g (%ld)\n", bestres, bestp); in main()
191 bestres = res; in main()
/dports/devel/librcc/librcc-0.2.12/src/
H A Drecode.c75 double bestres = RCC_ACCEPTABLE_PROBABILITY; in rccDetectLanguageInternal() local
215 if ((res > bestres + RCC_PROBABILITY_STEP)|| in rccDetectLanguageInternal()
216 ((res > bestres - RCC_PROBABILITY_STEP)&&(longest > bestlongest))|| in rccDetectLanguageInternal()
217 ((res > bestres + 1E-10)&&(longest == bestlongest))|| in rccDetectLanguageInternal()
218 (((res-bestres)<1E-10)&&((bestres-res)<1E-10)&&(longest == bestlongest)&&(own > 0))) { in rccDetectLanguageInternal()
222 bestres = res; in rccDetectLanguageInternal()
241 if ((bestres > RCC_REQUIRED_PROBABILITY)&&(bestlongest > RCC_REQUIRED_LENGTH)&&(bestown>0)) { in rccDetectLanguageInternal()
259 … if ((bestres > RCC_ACCEPTABLE_PROBABILITY)&&(bestlongest > RCC_ACCEPTABLE_LENGTH)&&(bestown>0)) { in rccDetectLanguageInternal()
/dports/editors/abiword/abiword-3.0.5/src/af/gr/win/
H A Dgr_Win32Graphics.cpp2507 int bestres = 0; in createbestmetafilehdc() local
2523 bestres = GetDeviceCaps(curhdc, LOGPIXELSX) + GetDeviceCaps(curhdc, in createbestmetafilehdc()
2525 bestres = ReleaseDC(NULL, curhdc); in createbestmetafilehdc()
2533 if (curres > bestres) { in createbestmetafilehdc()
2536 bestres = curres; in createbestmetafilehdc()
/dports/print/ttf2pt1/ttf2pt1-3.4.4/
H A Dpt1.c5288 double res[MAXSECT][MAXSECT], thisres, bestres, goodres; in fapproxcurve() local
5337 bestres = FBIGVAL; in fapproxcurve()
5347 if(thisres < bestres) { in fapproxcurve()
5348 goodres = bestres; in fapproxcurve()
5351 bestres = thisres; in fapproxcurve()
5367 coef[B][best[B]], coef[C][best[C]], sqrt(bestres)); in fapproxcurve()
5372 if(bestres < (0.1*0.1)) { /* consider it close enough */ in fapproxcurve()