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

123

/illumos-gate/usr/src/lib/libc/port/locale/
H A Dmblocal.h59 #define MIN(a, b) ((a) < (b) ? (a) : (b)) macro
/illumos-gate/usr/src/lib/libbc/libc/stdio/common/
H A Dfgets.c41 #define MIN(x, y) (x < y ? x : y) macro
70 n = MIN(size, iop->_cnt);
H A Dfwrite.c44 #define MIN(x, y) (x < y ? x : y) macro
85 n = MIN(nleft, n);
H A Dfread.c42 #define MIN(x, y) (x < y ? x : y) macro
65 n = MIN(nleft, iop->_cnt);
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/krb/
H A Dgen_seqnum.c39 #ifndef MIN
40 #define MIN(a,b) ((a) < (b) ? (a) : (b)) macro
/illumos-gate/usr/src/cmd/ipf/lib/common/
H A Dicmpcode.c13 #ifndef MIN
14 # define MIN(a,b) ((a) > (b) ? (b) : (a)) macro
43 if (!strncasecmp(str, icmpcodes[i], MIN(len,
/illumos-gate/usr/src/cmd/fm/fmd/common/
H A Dfmd_fmri.h56 #ifndef MIN
57 #define MIN(x, y) ((x) < (y) ? (x) : (y)) macro
/illumos-gate/usr/src/cmd/fs.d/
H A Dfslib.h82 #undef MIN macro
84 #define MIN(a, b) ((a) < (b) ? (a) : (b)) macro
/illumos-gate/usr/src/cmd/lp/filter/postscript/common/
H A Dgen.h67 #define MIN(A, B) ((A) < (B) ? (A) : (B)) macro
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/snoop/
H A Dsnoop_http.c58 #define MIN(a, b) (((a) < (b)) ? (a) : (b)) macro
78 "HTTP %.*s", MIN(c, MAXCHARS), line);
H A Dsnoop_mount.c45 #ifndef MIN
46 #define MIN(a, b) ((a) < (b) ? (a) : (b)) macro
435 l = MIN(len - i, 32);
/illumos-gate/usr/src/cmd/fm/modules/sun4v/etm/
H A Detm_impl.h57 #ifndef MIN
58 #define MIN(x, y) ((x) < (y) ? (x) : (y)) macro
/illumos-gate/usr/src/lib/libcurses/screen/
H A Dinit_color.c49 static float MAX(float, float, float), MIN(float, float, float);
133 min = MIN(r, g, b);
192 MIN(float a, float b, float c) function
/illumos-gate/usr/src/lib/libpcp/common/
H A Dlibpcp.h68 #ifndef MIN
69 #define MIN(x, y) ((x) < (y) ? (x) : (y)) macro
/illumos-gate/usr/src/cmd/mkfile/
H A Dmkfile.c39 #define MIN(a, b) ((a) < (b) ? (a) : (b)) macro
211 size_t bytes = (size_t)MIN(bufsz, size-written);
/illumos-gate/usr/src/cmd/fm/eversholt/common/
H A Deftread.c54 #ifndef MIN
55 #define MIN(x, y) ((x) <= (y) ? (x) : (y)) macro
133 size_t rsz = MIN(hdr.identlen, idbufsz - 1);
/illumos-gate/usr/src/lib/storage/common/
H A Dl_common.h109 #define MIN(a, b) (a < b ? a : b) macro
/illumos-gate/usr/src/lib/fm/topo/modules/sun4v/platform-mem/
H A Dmem_mdesc.h39 #ifndef MIN
40 #define MIN(x, y) ((x) < (y) ? (x) : (y)) macro
/illumos-gate/usr/src/lib/libresolv2/include/
H A Dport_after.h286 #ifndef MIN
287 #define MIN(x,y) (((x) <= (y)) ? (x) : (y)) macro
/illumos-gate/usr/src/lib/libsasl/lib/
H A Dcanonusr.c373 #ifdef MIN
374 #undef MIN macro
376 #define MIN(a,b) (((a) < (b))? (a):(b)) macro
433 memcpy(out_user, begin_u, MIN(ulen, out_umax));
438 MIN(u_apprealm-1, out_umax-ulen-1));
440 out_user[MIN(ulen + u_apprealm,out_umax)] = '\0';
444 if(out_ulen) *out_ulen = MIN(ulen + u_apprealm,out_umax);
/illumos-gate/usr/src/lib/libsip/common/
H A Dsip_xaction_state_mc.c86 #ifndef MIN
87 #define MIN(a, b) (((a) < (b)) ? (a):(b)) macro
1457 MIN(SIP_TIMER_T2,
1565 MIN(SIP_TIMER_T2,
/illumos-gate/usr/src/lib/libbc/inc/include/sys/
H A Dparam.h177 #ifndef MIN
178 #define MIN(a,b) (((a)<(b))?(a):(b)) macro
/illumos-gate/usr/src/cmd/bnu/
H A Deio.c36 #ifndef MIN
37 #define MIN(a,b) (((a)<(b))?(a):(b)) macro
250 len = erdblk(bufr, (int) MIN(msglen, EBUFSIZ), fn);
/illumos-gate/usr/src/cmd/sort/common/
H A Dutility.h64 #define MIN(x, y) (((x) < (y)) ? (x) : (y)) macro
/illumos-gate/usr/src/lib/krb5/plugins/kdb/db2/libdb2/include/
H A Ddb-int.h286 #ifndef MIN /* Usually found in <sys/param.h>. */
287 #define MIN(_a,_b) ((_a)<(_b)?(_a):(_b)) macro

Completed in 135 milliseconds

123