Home
last modified time | relevance | path

Searched refs:tempRightMX (Results 1 – 8 of 8) sorted by relevance

/dports/multimedia/mpeg_encode/mpeg_encode/
H A Dpsearch.c519 int tempRightMY, tempRightMX; local
550 tempRightMX = rightMX;
552 tempRightMX = centerX+spacing+1;
644 int tempRightMY, tempRightMX; local
671 tempRightMX = rightMX;
672 if ( distance < tempRightMX ) {
673 tempRightMX = distance;
756 int tempRightMY, tempRightMX; local
806 tempRightMX = rightMX;
807 if ( distance < tempRightMX ) {
[all …]
H A Dbsearch.c595 int tempRightMY, tempRightMX; local
628 tempRightMX = rightMX;
629 if ( distance < tempRightMX ) {
630 tempRightMX = distance;
657 for ( mx = -distance; mx < tempRightMX; mx += max(tempRightMX+distance-stepSize, stepSize) ) {
717 int tempRightMY, tempRightMX; local
774 tempRightMX = rightMX;
775 if ( distance < tempRightMX ) {
776 tempRightMX = distance;
803 for ( mx = -distance; mx < tempRightMX; mx += max(tempRightMX+distance-2, 2) ) {
[all …]
/dports/science/afni/afni-AFNI_21.3.16/src/mpeg_encodedir/
H A Dpsearch.c531 int tempRightMY, tempRightMX; local
562 tempRightMX = rightMX;
564 tempRightMX = centerX+spacing+1;
656 int tempRightMY, tempRightMX; local
683 tempRightMX = rightMX;
684 if ( distance < tempRightMX ) {
685 tempRightMX = distance;
768 int tempRightMY, tempRightMX; local
818 tempRightMX = rightMX;
819 if ( distance < tempRightMX ) {
[all …]
H A Dbsearch.c607 int tempRightMY, tempRightMX; local
640 tempRightMX = rightMX;
641 if ( distance < tempRightMX ) {
642 tempRightMX = distance;
669 for ( mx = -distance; mx < tempRightMX; mx += max(tempRightMX+distance-stepSize, stepSize) ) {
729 int tempRightMY, tempRightMX; local
786 tempRightMX = rightMX;
787 if ( distance < tempRightMX ) {
788 tempRightMX = distance;
815 for ( mx = -distance; mx < tempRightMX; mx += max(tempRightMX+distance-2, 2) ) {
[all …]
/dports/cad/gmsh/gmsh-4.9.2-source/contrib/mpeg_encode/
H A Dpsearch.cpp509 int tempRightMY, tempRightMX; in PLogarithmicSearch() local
540 tempRightMX = rightMX; in PLogarithmicSearch()
542 tempRightMX = centerX+spacing+1; in PLogarithmicSearch()
633 int tempRightMY, tempRightMX; in PLocalSearch() local
660 tempRightMX = rightMX; in PLocalSearch()
661 if ( distance < tempRightMX ) { in PLocalSearch()
662 tempRightMX = distance; in PLocalSearch()
744 int tempRightMY, tempRightMX; in PTwoLevelSearch() local
794 tempRightMX = rightMX; in PTwoLevelSearch()
795 if ( distance < tempRightMX ) { in PTwoLevelSearch()
[all …]
H A Dbsearch.cpp580 int tempRightMY, tempRightMX; in FindBestMatchExhaust() local
613 tempRightMX = rightMX; in FindBestMatchExhaust()
614 if ( distance < tempRightMX ) { in FindBestMatchExhaust()
615 tempRightMX = distance; in FindBestMatchExhaust()
642 for ( mx = -distance; mx < tempRightMX; mx += max(tempRightMX+distance-stepSize, stepSize) ) { in FindBestMatchExhaust()
700 int tempRightMY, tempRightMX; in FindBestMatchTwoLevel() local
757 tempRightMX = rightMX; in FindBestMatchTwoLevel()
758 if ( distance < tempRightMX ) { in FindBestMatchTwoLevel()
759 tempRightMX = distance; in FindBestMatchTwoLevel()
786 for ( mx = -distance; mx < tempRightMX; mx += max(tempRightMX+distance-2, 2) ) { in FindBestMatchTwoLevel()
[all …]
/dports/graphics/netpbm/netpbm-10.91.01/converter/ppm/ppmtompeg/
H A Dbsearch.c176 int tempRightMY, tempRightMX; in FindBestMatchExhaust() local
202 tempRightMX = MIN(distance, rightMX); in FindBestMatchExhaust()
227 mx < tempRightMX; in FindBestMatchExhaust()
228 mx += max(tempRightMX+distance-stepSize, stepSize)) { in FindBestMatchExhaust()
285 int tempRightMY, tempRightMX; in FindBestMatchTwoLevel() local
329 tempRightMX = MIN(distance, rightMX); in FindBestMatchTwoLevel()
335 for ( mx = -distance; mx < tempRightMX; mx += 2 ) { in FindBestMatchTwoLevel()
354 mx < tempRightMX; in FindBestMatchTwoLevel()
355 mx += max(tempRightMX+distance-2, 2)) { in FindBestMatchTwoLevel()
427 int tempRightMY, tempRightMX; in trySpacing() local
[all …]
H A Dpsearch.c579 int tempRightMY, tempRightMX; in PLocalSearch() local
600 tempRightMX = MIN(distance, rightMX); in PLocalSearch()
606 for ( mx = -distance; mx < tempRightMX; mx += stepSize ) { in PLocalSearch()
625 for (mx = -distance; mx < tempRightMX; in PLocalSearch()
626 mx += max(tempRightMX+distance-stepSize, stepSize)) { in PLocalSearch()
679 int tempRightMY, tempRightMX; in PTwoLevelSearch() local
722 tempRightMX = MIN(distance, rightMX); in PTwoLevelSearch()
728 for (mx = -distance; mx < tempRightMX; mx += 2) { in PTwoLevelSearch()
745 loopInc = max(tempRightMX+distance-2, 2); in PTwoLevelSearch()
746 for (mx = -distance; mx < tempRightMX; mx += loopInc) { in PTwoLevelSearch()