HomeSort by relevance Sort by last modified time
    Searched defs:MIN (Results 151 - 175 of 383) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/lz4/programs/
bench.c 155 #define MIN(a,b) ((a)<(b) ? (a) : (b))
204 size_t const thisBlockSize = MIN(remaining, blockSize);
  /external/python/cpython2/Lib/test/
test_float.py     [all...]
  /external/python/cpython2/Objects/
frameobject.c 10 #undef MIN
12 #define MIN(a, b) ((a) < (b) ? (a) : (b))
178 min_addr = MIN(new_lasti, f->f_lasti);
311 min_delta_iblock = MIN(min_delta_iblock, delta_iblock);
  /external/python/cpython3/Lib/test/
test_float.py     [all...]
  /external/python/cpython3/Modules/zlib/
deflate.c     [all...]
  /external/syslinux/com32/libutil/
sha256crypt.c 18 #define MIN(x,y) min(x,y)
325 rounds = MAX(ROUNDS_MIN, MIN(srounds, ROUNDS_MAX));
330 salt_len = MIN(strcspn(salt, "$"), SALT_LEN_MAX);
465 cp = stpncpy(cp, salt, MIN((size_t) MAX(0, buflen), salt_len));
466 buflen -= MIN((size_t) MAX(0, buflen), salt_len);
sha512crypt.c 18 #define MIN(x,y) min(x,y)
360 rounds = MAX(ROUNDS_MIN, MIN(srounds, ROUNDS_MAX));
365 salt_len = MIN(strcspn(salt, "$"), SALT_LEN_MAX);
500 cp = stpncpy(cp, salt, MIN((size_t) MAX(0, buflen), salt_len));
501 buflen -= MIN((size_t) MAX(0, buflen), salt_len);
  /external/toybox/toys/pending/
diff.c 45 #define MIN(x,y) ((x) < (y) ? (x) : (y))
406 i = MIN(i, j);
589 b = MIN(file[0].len, b);
  /external/zlib/src/
deflate.c     [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/camera/
CameraPairwiseTest.java 57 public enum Exposure { MIN, MAX, NONE };
134 * Flash: On / Exposure: Min / WB: Fluorescent
139 genericPairwiseTestCase(Flash.ON, Exposure.MIN, WhiteBalance.FLUORESCENT, SceneMode.AUTO,
184 * Flash: Auto / Exposure: Min / WB: Auto
189 genericPairwiseTestCase(Flash.AUTO, Exposure.MIN, WhiteBalance.AUTO, SceneMode.ACTION,
194 * Flash: On / Exposure: Min / WB: Auto
199 genericPairwiseTestCase(Flash.ON, Exposure.MIN, WhiteBalance.AUTO, SceneMode.ACTION,
204 * Flash: Off / Exposure: Min / WB: Auto
209 genericPairwiseTestCase(Flash.OFF, Exposure.MIN, WhiteBalance.AUTO, SceneMode.NIGHT,
214 * Flash: Off / Exposure: Min / WB: Dayligh
    [all...]
  /hardware/intel/common/libva/test/decode/
tinyjpeg.c 63 #ifndef MIN
64 #define MIN(a, b) ((a) < (b) ? (a) : (b))
725 MIN(COMPONENTS, ARRAY_ELEMS(iq_matrix.load_quantiser_table));
744 MIN(COMPONENTS, ARRAY_ELEMS(huffman_table.load_huffman_table));
  /hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/inc/
omx_swvdec.h 142 #define MIN(x, y) (((x) < (y)) ? (x) : (y)) ///< minimum
  /hardware/qcom/media/msm8998/mm-video-v4l2/vidc/vdec/inc/
omx_swvdec.h 130 #define MIN(x, y) (((x) < (y)) ? (x) : (y)) ///< minimum
  /libcore/ojluni/src/main/java/java/time/
LocalDateTime.java 135 * This combines {@link LocalDate#MIN} and {@link LocalTime#MIN}.
138 public static final LocalDateTime MIN = LocalDateTime.of(LocalDate.MIN, LocalTime.MIN);
    [all...]
LocalTime.java 126 public static final LocalTime MIN;
150 MIN = HOURS[0];
    [all...]
OffsetDateTime.java 129 * This combines {@link LocalDateTime#MIN} and {@link ZoneOffset#MAX}.
132 public static final OffsetDateTime MIN = LocalDateTime.MIN.atOffset(ZoneOffset.MAX);
137 * This combines {@link LocalDateTime#MAX} and {@link ZoneOffset#MIN}.
140 public static final OffsetDateTime MAX = LocalDateTime.MAX.atOffset(ZoneOffset.MIN);
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
FilterVignetteRepresentation.java 42 private static int MIN = -100;
46 private BasicParameterInt mParamVignette = new BasicParameterInt(MODE_VIGNETTE, 50, MIN, MAX);
47 private BasicParameterInt mParamExposure = new BasicParameterInt(MODE_EXPOSURE, 0, MIN, MAX);
48 private BasicParameterInt mParamSaturation = new BasicParameterInt(MODE_SATURATION, 0, MIN, MAX);
49 private BasicParameterInt mParamContrast = new BasicParameterInt(MODE_CONTRAST, 0, MIN, MAX);
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_float.py     [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_float.py     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_float.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_float.py     [all...]
  /device/google/marlin/camera/QCamera2/stack/mm-camera-test/src/
mm_qcamera_main_menu.c 43 #define MIN(X,Y) ((X) < (Y) ? (X) : (Y))
949 printf("Reached min CONTRAST. \n");
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Include/Common/
BaseTypes.h 165 #define MIN(a, b) \
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/UefiVfrCompile/
VfrUtilityLib.h 403 #define MIN(v1, v2) (((v1) < (v2)) ? (v1) : (v2))
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
JDWPConstants.java 673 public static final byte MIN = 0;
686 case MIN:
687 return "MIN";

Completed in 2063 milliseconds

1 2 3 4 5 67 8 91011>>