/illumos-gate/usr/src/lib/libc/port/locale/ |
H A D | mblocal.h | 59 #define MIN(a, b) ((a) < (b) ? (a) : (b)) macro
|
/illumos-gate/usr/src/lib/libbc/libc/stdio/common/ |
H A D | fgets.c | 41 #define MIN(x, y) (x < y ? x : y) macro 70 n = MIN(size, iop->_cnt);
|
H A D | fwrite.c | 44 #define MIN(x, y) (x < y ? x : y) macro 85 n = MIN(nleft, n);
|
H A D | fread.c | 42 #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 D | gen_seqnum.c | 39 #ifndef MIN 40 #define MIN(a,b) ((a) < (b) ? (a) : (b)) macro
|
/illumos-gate/usr/src/cmd/ipf/lib/common/ |
H A D | icmpcode.c | 13 #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 D | fmd_fmri.h | 56 #ifndef MIN 57 #define MIN(x, y) ((x) < (y) ? (x) : (y)) macro
|
/illumos-gate/usr/src/cmd/fs.d/ |
H A D | fslib.h | 82 #undef MIN macro 84 #define MIN(a, b) ((a) < (b) ? (a) : (b)) macro
|
/illumos-gate/usr/src/cmd/lp/filter/postscript/common/ |
H A D | gen.h | 67 #define MIN(A, B) ((A) < (B) ? (A) : (B)) macro
|
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/snoop/ |
H A D | snoop_http.c | 58 #define MIN(a, b) (((a) < (b)) ? (a) : (b)) macro 78 "HTTP %.*s", MIN(c, MAXCHARS), line);
|
H A D | snoop_mount.c | 45 #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 D | etm_impl.h | 57 #ifndef MIN 58 #define MIN(x, y) ((x) < (y) ? (x) : (y)) macro
|
/illumos-gate/usr/src/lib/libcurses/screen/ |
H A D | init_color.c | 49 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 D | libpcp.h | 68 #ifndef MIN 69 #define MIN(x, y) ((x) < (y) ? (x) : (y)) macro
|
/illumos-gate/usr/src/cmd/mkfile/ |
H A D | mkfile.c | 39 #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 D | eftread.c | 54 #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 D | l_common.h | 109 #define MIN(a, b) (a < b ? a : b) macro
|
/illumos-gate/usr/src/lib/fm/topo/modules/sun4v/platform-mem/ |
H A D | mem_mdesc.h | 39 #ifndef MIN 40 #define MIN(x, y) ((x) < (y) ? (x) : (y)) macro
|
/illumos-gate/usr/src/lib/libresolv2/include/ |
H A D | port_after.h | 286 #ifndef MIN 287 #define MIN(x,y) (((x) <= (y)) ? (x) : (y)) macro
|
/illumos-gate/usr/src/lib/libsasl/lib/ |
H A D | canonusr.c | 373 #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 D | sip_xaction_state_mc.c | 86 #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 D | param.h | 177 #ifndef MIN 178 #define MIN(a,b) (((a)<(b))?(a):(b)) macro
|
/illumos-gate/usr/src/cmd/bnu/ |
H A D | eio.c | 36 #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 D | utility.h | 64 #define MIN(x, y) (((x) < (y)) ? (x) : (y)) macro
|
/illumos-gate/usr/src/lib/krb5/plugins/kdb/db2/libdb2/include/ |
H A D | db-int.h | 286 #ifndef MIN /* Usually found in <sys/param.h>. */ 287 #define MIN(_a,_b) ((_a)<(_b)?(_a):(_b)) macro
|