Home
last modified time | relevance | path

Searched refs:bmax (Results 1 – 10 of 10) sorted by relevance

/external/jdiff/src/jdiff/
DDiffMyers.java120 int bmin = bmid, bmax = bmid; // Limits of bottom-up search. in diag() local
158 if (odd && bmin <= d && d <= bmax && bd[bdiagoff + d] <= fd[fdiagoff + d]) in diag()
170 if (bmax < dmax) in diag()
171 bd[bdiagoff + ++bmax + 1] = Integer.MAX_VALUE; in diag()
173 --bmax; in diag()
174 for (d = bmax; d >= bmin; d -= 2) in diag()
243 for (d = bmax; d >= bmin; d -= 2) in diag()
/external/aac/libSBRenc/src/
Dfram_gen.cpp193 int *bmax /*!< hlpNew: last mandatory border */
201 INT bmax, INT bufferFrameStart, INT numberTimeSlots,
341 INT numEnv, tranPosInternal = 0, bmin = 0, bmax = 0, parts, d, i_cmon = 0, in FDKsbrEnc_frameInfoGenerator() local
490 length_v_bord, v_freq, length_v_freq, &bmin, &bmax); in FDKsbrEnc_frameInfoGenerator()
522 length_v_freq, bmax, bufferFrameStart, numberTimeSlots, in FDKsbrEnc_frameInfoGenerator()
598 length_v_freq, bmax, bufferFrameStart, numberTimeSlots, in FDKsbrEnc_frameInfoGenerator()
835 int *bmax /*!< hlpNew: last mandatory border */ in fillFrameTran() argument
885 *bmax = v_bord[0]; in fillFrameTran()
887 if (v_bord[i] > *bmax) *bmax = v_bord[i]; in fillFrameTran()
1028 INT bmax, INT bufferFrameStart, INT numberTimeSlots, in fillFramePost() argument
[all …]
/external/pdfium/third_party/lcms/src/
Dcmsgmt.c511 double bmax, double bmin) in cmsDesaturateLab() argument
532 Lab -> b < bmin || Lab->b > bmax) { in cmsDesaturateLab()
544 Lab -> b = Lab->b < 0 ? bmin : bmax; in cmsDesaturateLab()
566 Lab -> b = bmax; in cmsDesaturateLab()
567 Lab -> a = bmax / slope; in cmsDesaturateLab()
/external/libpng/contrib/libtests/
Dpngstest.c2647 png_byte in_use[256], amax = 0, bmax = 0; in compare_two_images() local
2667 if (bval > bmax) in compare_two_images()
2668 bmax = bval; in compare_two_images()
2764 else if (bmax >= b->image.colormap_entries) in compare_two_images()
2767 sprintf(pindex, "%d[%u]", bmax, in compare_two_images()
/external/libaom/libaom/third_party/fastfeat/
Dfast_9.c11 int bmax = 255; in aom_fast9_corner_score() local
12 int b = (bmax + bmin)/2; in aom_fast9_corner_score()
2928 bmax=b; in aom_fast9_corner_score()
2933 if(bmin == bmax - 1 || bmin == bmax) in aom_fast9_corner_score()
2935 b = (bmin + bmax) / 2; in aom_fast9_corner_score()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/bigdec/
DDiagBigDecimalTest.java127 private static final byte bmax = 127; field in DiagBigDecimalTest
2747 … TestFmwk.assertTrue("byv010", ((bmax))==((new android.icu.math.BigDecimal(bmax)).byteValue())); in diagbyteValue()
2752 … TestFmwk.assertTrue("byv015", ((bmin))==((new android.icu.math.BigDecimal(bmax+1)).byteValue())); in diagbyteValue()
2753 … TestFmwk.assertTrue("byv016", ((bmax))==((new android.icu.math.BigDecimal(bmin-1)).byteValue())); in diagbyteValue()
2760 …TestFmwk.assertTrue("byv026", ((bmax))==((new android.icu.math.BigDecimal(bmax)).byteValueExact())… in diagbyteValue()
2795 (new android.icu.math.BigDecimal(bmax)).add(one).toString(), in diagbyteValue()
2818 (new android.icu.math.BigDecimal(bmax)).multiply(two) in diagbyteValue()
2822 (new android.icu.math.BigDecimal(bmax)).multiply(ten) in diagbyteValue()
/external/guice/lib/build/jdiff/
Djdiff.jarMETA-INF/ META-INF/MANIFEST.MF jdiff/ jdiff/API.class API ...
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bigdec/
DDiagBigDecimalTest.java124 private static final byte bmax = 127; field in DiagBigDecimalTest
2744 … TestFmwk.assertTrue("byv010", ((bmax))==((new com.ibm.icu.math.BigDecimal(bmax)).byteValue())); in diagbyteValue()
2749 … TestFmwk.assertTrue("byv015", ((bmin))==((new com.ibm.icu.math.BigDecimal(bmax+1)).byteValue())); in diagbyteValue()
2750 … TestFmwk.assertTrue("byv016", ((bmax))==((new com.ibm.icu.math.BigDecimal(bmin-1)).byteValue())); in diagbyteValue()
2757 …TestFmwk.assertTrue("byv026", ((bmax))==((new com.ibm.icu.math.BigDecimal(bmax)).byteValueExact())… in diagbyteValue()
2792 (new com.ibm.icu.math.BigDecimal(bmax)).add(one).toString(), in diagbyteValue()
2815 (new com.ibm.icu.math.BigDecimal(bmax)).multiply(two) in diagbyteValue()
2819 (new com.ibm.icu.math.BigDecimal(bmax)).multiply(ten) in diagbyteValue()
/external/pdfium/third_party/lcms/include/
Dlcms2.h1902 double bmax, double bmin);
/external/libxml2/
Dxmlschemas.c16901 int bmin, int bmax) in xmlSchemaCheckParticleRangeOK() argument
16905 if ((bmax != UNBOUNDED) && in xmlSchemaCheckParticleRangeOK()
16906 (rmax > bmax)) in xmlSchemaCheckParticleRangeOK()