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.cpp226 int *bmax /*!< hlpNew: last mandatory border */
235 INT *length_v_freq, INT bmax,
368 INT numEnv, tranPosInternal=0, bmin=0, bmax=0, parts, d, i_cmon=0, i_tran=0, nL; in FDKsbrEnc_frameInfoGenerator() local
518 &bmax ); in FDKsbrEnc_frameInfoGenerator()
553 length_v_freq, bmax, bufferFrameStart, numberTimeSlots, fmax); in FDKsbrEnc_frameInfoGenerator()
629 length_v_freq, bmax, bufferFrameStart, numberTimeSlots, fmax); in FDKsbrEnc_frameInfoGenerator()
872 int *bmax /*!< hlpNew: last mandatory border */ in fillFrameTran() argument
925 *bmax = v_bord[0]; in fillFrameTran()
927 if (v_bord[i] > *bmax) in fillFrameTran()
928 *bmax = v_bord[i]; in fillFrameTran()
[all …]
/external/skia/src/utils/
DSkTextureCompressor_R11EAC.cpp87 uint16_t bmax = block[0]; in compress_heterogeneous_r11eac_block() local
90 bmax = SkTMax<uint16_t>(bmax, block[i]); in compress_heterogeneous_r11eac_block()
93 uint16_t center = (bmax + bmin) >> 1; in compress_heterogeneous_r11eac_block()
98 uint16_t multiplier = (bmax - center) / 10; in compress_heterogeneous_r11eac_block()
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/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/libvncserver/libvncserver/
Dcursor.c572 int bmax, bshift; in rfbShowCursor() local
578 bmax = s->serverFormat.blueMax; in rfbShowCursor()
585 bmask = (bmax << bshift); in rfbShowCursor()
/external/libpng/contrib/libtests/
Dpngstest.c2764 png_byte in_use[256], amax = 0, bmax = 0; in compare_two_images() local
2784 if (bval > bmax) in compare_two_images()
2785 bmax = bval; in compare_two_images()
2876 else if (bmax >= b->image.colormap_entries) in compare_two_images()
2879 sprintf(pindex, "%d[%lu]", bmax, in compare_two_images()
/external/guava/guava/lib/
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/
DDiagBigDecimal.java135 private static final byte bmax = 127; field in DiagBigDecimal
2969 (new Test("byv010")).ok=((bmax))==((new com.ibm.icu.math.BigDecimal(bmax)).byteValue()); in diagbyteValue()
2974 (new Test("byv015")).ok=((bmin))==((new com.ibm.icu.math.BigDecimal(bmax+1)).byteValue()); in diagbyteValue()
2975 (new Test("byv016")).ok=((bmax))==((new com.ibm.icu.math.BigDecimal(bmin-1)).byteValue()); in diagbyteValue()
2982 … (new Test("byv026")).ok=((bmax))==((new com.ibm.icu.math.BigDecimal(bmax)).byteValueExact()); in diagbyteValue()
3017 (new com.ibm.icu.math.BigDecimal(bmax)).add(one).toString(), in diagbyteValue()
3040 (new com.ibm.icu.math.BigDecimal(bmax)).multiply(two) in diagbyteValue()
3044 (new com.ibm.icu.math.BigDecimal(bmax)).multiply(ten) in diagbyteValue()
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/include/
Dlcms2.h1873 double bmax, double bmin);
/external/libxml2/
Dxmlschemas.c16777 int bmin, int bmax) in xmlSchemaCheckParticleRangeOK() argument
16781 if ((bmax != UNBOUNDED) && in xmlSchemaCheckParticleRangeOK()
16782 (rmax > bmax)) in xmlSchemaCheckParticleRangeOK()