Searched defs:MIN (Results 1 - 5 of 5) sorted by relevance

/bionic/libc/include/sys/
H A Dparam.h49 #define MIN(a,b) (((a)<(b))?(a):(b)) macro
/bionic/tools/versioner/current/sys/
H A Dparam.h49 #define MIN(a,b) (((a)<(b))?(a):(b)) macro
/bionic/libc/upstream-openbsd/lib/libc/stdio/
H A Dfvwrite.c65 #define MIN(a, b) ((a) < (b) ? (a) : (b)) macro
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);
/bionic/libc/upstream-freebsd/lib/libc/stdlib/
H A Dqsort.c46 #define MIN(a, b) ((a) < (b) ? a : b) macro
186 d1 = MIN(pa - (char *)a, pb - pa);
188 d1 = MIN(pd - pc, pn - pd - es);
/bionic/libc/dns/nameser/
H A Dns_print.c51 #ifndef MIN
52 #define MIN(x,y) ((x)<(y)?(x):(y)) macro
494 T(addstr(base64_key + n, (size_t)MIN(len - n, 48),
558 T(addstr(base64_key + n, (size_t)MIN(len - n, 48),
617 T(addstr(base64_cert + n, (size_t)MIN(len - n, 48),
910 (size_t)MIN(len - n, 48), &buf, &buflen));
1003 (size_t)MIN(len - n, 48), &buf, &buflen));
1073 n = MIN(16, (int)(edata - rdata));

Completed in 1343 milliseconds