Searched refs:MIN (Results 1 – 8 of 8) sorted by relevance
/picolibc-latest/newlib/libc/stdio/ |
D | fvwrite.c | 28 #define MIN(a, b) ((a) < (b) ? (a) : (b)) macro 124 MIN (len, INT_MAX - INT_MAX % BUFSIZ)); in _sfvwrite() 210 w = MIN (len, (size_t) w); in _sfvwrite() 220 w = ((int)MIN (len, INT_MAX)) / fp->_bf._size * fp->_bf._size; in _sfvwrite() 250 s = MIN (len, (size_t) nldist); in _sfvwrite()
|
/picolibc-latest/newlib/libc/include/sys/ |
D | param.h | 57 #define MIN(a,b) ((a) < (b) ? (a) : (b)) macro
|
/picolibc-latest/newlib/libc/machine/spu/ |
D | strcmp_ea.c | 72 min = MIN (s2_n, s1_n); in strcmp_ea()
|
/picolibc-latest/newlib/libc/search/ |
D | hash_buf.c | 93 #ifndef MIN 94 #define MIN(a,b) (((a)<(b))?(a):(b)) macro
|
D | hash_bigkey.c | 108 move_bytes = MIN(space, key_size); in __big_insert() 125 move_bytes = MIN(FREESPACE(p), val_size); in __big_insert() 145 move_bytes = MIN(space, val_size); in __big_insert()
|
D | hash.c | 73 #ifndef MIN 74 #define MIN(a,b) (((a)<(b))?(a):(b)) macro 338 hashp->BSIZE = MIN(statbuf.st_blksize, MAX_BSIZE);
|
/picolibc-latest/newlib/libc/posix/ |
D | regcomp.c | 168 #define MIN(a,b) ((a)<(b)?(a):(b)) macro 1950 g->matchjump[suffix] = MIN(g->matchjump[suffix], in computematchjumps() 1961 g->matchjump[mindex] = MIN(g->matchjump[mindex], in computematchjumps() 1967 g->matchjump[suffix] = MIN(g->matchjump[suffix], in computematchjumps()
|
/picolibc-latest/newlib/ |
D | ChangeLog-2015 | 812 * libc/include/stdint.h: Throughout add parens around MIN/MAX values. 2101 (U?INT.*(MIN|MAX)): Define via GCC provided __U?INT.*(MIN|MAX)__ 11506 * libc/search/hash_bigkey.c (MIN,MAX): Remove 13848 * libc/search/hash_buf.c: Protect MAX and MIN macros from 17089 * libc/include/sys/param.h (MAX, MIN): Added macros. 17605 * libc/search/hash.c (MIN,MAX): Add macros. Change <db.h> to
|