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

1 2 3 4 5 6 7 8 91011>>

  /external/compiler-rt/lib/builtins/
negvdi2.c 24 const di_int MIN = (di_int)1 << ((int)(sizeof(di_int) * CHAR_BIT)-1);
25 if (a == MIN)
negvsi2.c 24 const si_int MIN = (si_int)1 << ((int)(sizeof(si_int) * CHAR_BIT)-1);
25 if (a == MIN)
negvti2.c 26 const ti_int MIN = (ti_int)1 << ((int)(sizeof(ti_int) * CHAR_BIT)-1);
27 if (a == MIN)
mulodi4.c 25 const di_int MIN = (di_int)1 << (N-1);
26 const di_int MAX = ~MIN;
29 if (a == MIN)
35 if (b == MIN)
54 if (abs_a > MIN / -abs_b)
mulosi4.c 25 const si_int MIN = (si_int)1 << (N-1);
26 const si_int MAX = ~MIN;
29 if (a == MIN)
35 if (b == MIN)
54 if (abs_a > MIN / -abs_b)
muloti4.c 27 const ti_int MIN = (ti_int)1 << (N-1);
28 const ti_int MAX = ~MIN;
31 if (a == MIN)
37 if (b == MIN)
56 if (abs_a > MIN / -abs_b)
mulvdi3.c 25 const di_int MIN = (di_int)1 << (N-1);
26 const di_int MAX = ~MIN;
27 if (a == MIN)
33 if (b == MIN)
52 if (abs_a > MIN / -abs_b)
mulvsi3.c 25 const si_int MIN = (si_int)1 << (N-1);
26 const si_int MAX = ~MIN;
27 if (a == MIN)
33 if (b == MIN)
52 if (abs_a > MIN / -abs_b)
mulvti3.c 27 const ti_int MIN = (ti_int)1 << (N-1);
28 const ti_int MAX = ~MIN;
29 if (a == MIN)
35 if (b == MIN)
54 if (abs_a > MIN / -abs_b)
  /external/ltp/include/
tst_minmax.h 21 #ifndef MIN
22 # define MIN(a, b) ({ \
27 #endif /* MIN */
  /external/syslinux/core/elflink/
common.h 26 #define MIN(x,y) (((x) < (y)) ? (x) : (y))
  /external/flac/libFLAC/include/private/
macros.h 55 #define flac_min(a,b) MIN(a,b)
64 #ifndef MIN
65 #define MIN(x,y) ((x) <= (y) ? (x) : (y))
  /external/libavc/encoder/
ime_macros.h 39 #define MIN(a,b) ((a < b)?(a):(b))
  /external/ltp/testcases/kernel/fs/fsstress/
xfscompat.h 6 #define MIN(a,b) ((a)<(b) ? (a):(b))
  /bionic/libc/include/sys/
param.h 48 /* Macros for min/max. */
49 #define MIN(a,b) (((a)<(b))?(a):(b))
  /device/linaro/bootloader/arm-trusted-firmware/plat/rockchip/rk3399/drivers/m0/include/
rk3399_mcu.h 25 #define MIN(a, b) ((a) < (b) ? (a) : (b))
  /external/libpng/contrib/gregbook/
readpng.h 63 # define MIN(a,b) ((a) < (b)? (a) : (b))
  /external/strace/
macros.h 41 #ifndef MIN
42 # define MIN(a, b) (((a) < (b)) ? (a) : (b))
44 #define CLAMP(val, min, max) MIN(MAX(min, val), max)
  /external/syslinux/com32/lib/sys/module/
common.h 26 #define MIN(x,y) (((x) < (y)) ? (x) : (y))
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
fvwrite.c 65 #define MIN(a, b) ((a) < (b) ? (a) : (b))
85 w = (*fp->_write)(fp->_cookie, p, MIN(len, BUFSIZ));
128 COPY(w); /* copy MIN(fp->_w,len), */
160 * that the amount to write is MIN(len,nldist).
171 s = MIN(len, nldist);
  /device/generic/car/emulator/audio/driver/
audio_vbuffer.c 27 #define MIN(a, b) (((a) < (b)) ? (a) : (b))
86 MIN(frame_count, audio_vbuffer->frame_count - audio_vbuffer->head);
88 frames = MIN(frame_count, audio_vbuffer->tail - (audio_vbuffer->head));
118 MIN(frame_count, audio_vbuffer->frame_count - audio_vbuffer->tail);
120 frames = MIN(frame_count, audio_vbuffer->head - audio_vbuffer->tail);
  /device/google/marlin/power/
metadata-defs.h 37 #define MIN(x,y) (((x)>(y))?(y):(x))
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/
utils_def.h 27 #define MIN(x, y) __extension__ ({ \
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/hoistedPredicates/
TParser.h 21 MIN
  /external/capstone/
utils.h 53 #define MIN(x, y) ((x) < (y) ? (x) : (y))

Completed in 965 milliseconds

1 2 3 4 5 6 7 8 91011>>