Searched refs:MIN (Results 1 - 25 of 387) sorted by relevance

1234567891011>>

/openbsd-current/gnu/llvm/compiler-rt/lib/builtins/
H A Dnegvdi2.c20 const di_int MIN = (di_int)1 << ((int)(sizeof(di_int) * CHAR_BIT) - 1); local
21 if (a == MIN)
H A Dnegvsi2.c20 const si_int MIN = (si_int)1 << ((int)(sizeof(si_int) * CHAR_BIT) - 1); local
21 if (a == MIN)
H A Dnegvti2.c22 const ti_int MIN = (ti_int)1 << ((int)(sizeof(ti_int) * CHAR_BIT) - 1); local
23 if (a == MIN)
/openbsd-current/gnu/llvm/libcxx/src/filesystem/
H A Dint128_builtins.cpp24 const __int128_t MIN = (__int128_t)1 << (N - 1); local
25 const __int128_t MAX = ~MIN;
28 if (a == MIN) {
33 if (b == MIN) {
48 if (abs_a > MIN / -abs_b)
/openbsd-current/games/phantasia/
H A Dmacros.h13 #undef MIN macro
14 #define MIN(A, B) ((A) < (B) ? (A) : (B)) macro
/openbsd-current/gnu/usr.bin/gcc/gcc/
H A Dbitmap.h166 /* Loop over all bits in BITMAP, starting with MIN, setting BITNUM to the
169 #define EXECUTE_IF_SET_IN_BITMAP(BITMAP, MIN, BITNUM, CODE) \
172 unsigned int indx_ = (MIN) / BITMAP_ELEMENT_ALL_BITS; \
173 unsigned bit_num_ = (MIN) % BITMAP_WORD_BITS; \
174 unsigned word_num_ = (MIN) / BITMAP_WORD_BITS % BITMAP_ELEMENT_WORDS; \
220 /* Loop over all bits in BITMAP1 and BITMAP2, starting with MIN, setting
224 #define EXECUTE_IF_AND_COMPL_IN_BITMAP(BITMAP1, BITMAP2, MIN, BITNUM, CODE) \
228 unsigned int indx_ = (MIN) / BITMAP_ELEMENT_ALL_BITS; \
229 unsigned bit_num_ = (MIN) % BITMAP_WORD_BITS; \
230 unsigned word_num_ = (MIN) / BITMAP_WORD_BIT
[all...]
H A Dsbitmap.h58 /* Loop over all elements of SBITSET, starting with MIN. */
59 #define EXECUTE_IF_SET_IN_SBITMAP(SBITMAP, MIN, N, CODE) \
62 unsigned int bit_num_ = (MIN) % (unsigned int) SBITMAP_ELT_BITS; \
66 for (word_num_ = (MIN) / (unsigned int) SBITMAP_ELT_BITS; \
/openbsd-current/regress/sys/sys/tree/splay/
H A Dsplay-test.c55 #define MIN 5 macro
70 tmp->key = arc4random_uniform(MAX-MIN);
71 tmp->key += MIN;
/openbsd-current/gnu/gcc/gcc/
H A Drtlhooks.c80 offset -= (MIN (UNITS_PER_WORD, GET_MODE_SIZE (mode))
81 - MIN (UNITS_PER_WORD, GET_MODE_SIZE (GET_MODE (x))));
156 offset -= (MIN (UNITS_PER_WORD, GET_MODE_SIZE (mode))
157 - MIN (UNITS_PER_WORD, GET_MODE_SIZE (GET_MODE (x))));
H A Dbitmap.h536 /* Loop over all bits set in BITMAP, starting with MIN and setting
541 #define EXECUTE_IF_SET_IN_BITMAP(BITMAP, MIN, BITNUM, ITER) \
542 for (bmp_iter_set_init (&(ITER), (BITMAP), (MIN), &(BITNUM)); \
546 /* Loop over all the bits set in BITMAP1 & BITMAP2, starting with MIN
551 #define EXECUTE_IF_AND_IN_BITMAP(BITMAP1, BITMAP2, MIN, BITNUM, ITER) \
552 for (bmp_iter_and_init (&(ITER), (BITMAP1), (BITMAP2), (MIN), \
557 /* Loop over all the bits set in BITMAP1 & ~BITMAP2, starting with MIN
562 #define EXECUTE_IF_AND_COMPL_IN_BITMAP(BITMAP1, BITMAP2, MIN, BITNUM, ITER) \
563 for (bmp_iter_and_compl_init (&(ITER), (BITMAP1), (BITMAP2), (MIN), \
H A Dconflict.c186 int smaller = MIN (reg1, reg2);
232 arc.smaller = MIN (reg1, reg2);
/openbsd-current/gnu/usr.bin/binutils/gprof/
H A Dgprof.h43 #ifndef MIN
44 #define MIN(a,b) ((a) < (b) ? (a) : (b)) macro
/openbsd-current/gnu/usr.bin/binutils-2.17/gprof/
H A Dgprof.h43 #ifndef MIN
44 #define MIN(a,b) ((a) < (b) ? (a) : (b)) macro
/openbsd-current/sys/arch/arm64/dev/
H A Daplefuse.c103 memcpy(p, &buf[offset], MIN(size, 4 - offset));
104 size -= MIN(size, 4 - offset);
105 p += MIN(size, 4 - offset);
H A Daplspmi.c185 memcpy(cbuf, &resp, MIN(len, 4));
186 cbuf += MIN(len, 4);
187 len -= MIN(len, 4);
208 memcpy(&data, cbuf, MIN(len, 4));
210 cbuf += MIN(len, 4);
211 len -= MIN(len, 4);
/openbsd-current/lib/libc/stdio/
H A Dfvwrite.c64 #define MIN(a, b) ((a) < (b) ? (a) : (b)) macro
85 w = (*fp->_write)(fp->_cookie, p, MIN(len, INT_MAX));
128 COPY(w); /* copy MIN(fp->_w,len), */
148 w = MIN(w * (len / w), INT_MAX);
168 * that the amount to write is MIN(len,nldist).
179 s = MIN(len, nldist);
/openbsd-current/gnu/usr.bin/perl/Porting/
H A Dharness-timer-report.pl80 my %MIN;
84 $MIN{$1} = $2;
242 if (scalar keys %MIN) {
243 for my $k (grep { exists $MIN{$_} } keys %N2I) {
244 if ($t->[$N2I{$k}] < $MIN{$k}) {
/openbsd-current/gnu/usr.bin/texinfo/lib/
H A Dsystem.h282 #ifdef MIN
283 #undef MIN macro
285 #define MIN(a,b) ((a) < (b) ? (a) : (b)) macro
/openbsd-current/sys/dev/pci/drm/include/linux/
H A Dkernel.h49 #define min(a, b) MIN(a, b)
51 #define min3(x, y, z) MIN(x, MIN(y, z))
/openbsd-current/sys/dev/fdt/
H A Dqcspmi.c354 memcpy(cbuf, &reg, MIN(len, 4));
355 cbuf += MIN(len, 4);
356 len -= MIN(len, 4);
361 memcpy(cbuf, &reg, MIN(len, 4));
362 cbuf += MIN(len, 4);
363 len -= MIN(len, 4);
396 memcpy(&reg, cbuf, MIN(len, 4));
399 cbuf += MIN(len, 4);
400 len -= MIN(len, 4);
403 memcpy(&reg, cbuf, MIN(le
[all...]
/openbsd-current/sys/ufs/ext2fs/
H A Dext2fs_dinode.h158 memcpy((new),(old), MIN(EXT2_DINODE_SIZE(fs), sizeof(*new)))
160 memcpy((new),(old), MIN(EXT2_DINODE_SIZE(fs), sizeof(*new)))
/openbsd-current/gnu/gcc/gcc/config/
H A Dhost-hpux.c125 nbytes = read (fd, base, MIN (size, SSIZE_MAX));
/openbsd-current/sys/lib/libsa/
H A Dpkcs5_pbkdf2.c64 r = MIN(key_len, SHA1_DIGEST_LENGTH);
/openbsd-current/sys/dev/i2c/
H A Dipmi_i2c.c211 c->c_rxlen = MIN(30, c->c_maxrxlen);
216 c->c_rxlen = MIN(buf[0], c->c_maxrxlen);
239 len = MIN(31, c->c_maxrxlen - c->c_rxlen);
243 len = MIN(buf[0] - 1, c->c_maxrxlen - c->c_rxlen);
/openbsd-current/gnu/usr.bin/perl/t/lib/
H A Dh2ph.h35 #define MIN(a,b) ((a) < (b) ? (a) : (b)) macro

Completed in 506 milliseconds

1234567891011>>