HomeSort by relevance Sort by last modified time
    Searched defs:MIN (Results 1 - 25 of 72) sorted by null

1 2 3

  /onnv/onnv-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/krb/
gen_seqnum.c 39 #ifndef MIN
40 #define MIN(a,b) ((a) < (b) ? (a) : (b))
  /onnv/onnv-gate/usr/src/lib/libbc/libc/stdio/common/
fread.c 42 #define MIN(x, y) (x < y ? x : y)
65 n = MIN(nleft, iop->_cnt);
fgets.c 41 #define MIN(x, y) (x < y ? x : y)
70 n = MIN(size, iop->_cnt);
fwrite.c 44 #define MIN(x, y) (x < y ? x : y)
85 n = MIN(nleft, n);
  /onnv/onnv-gate/usr/src/cmd/ipf/lib/common/
icmpcode.c 13 #ifndef MIN
14 # define MIN(a,b) ((a) > (b) ? (b) : (a))
43 if (!strncasecmp(str, icmpcodes[i], MIN(len,
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sbin/snoop/
snoop_http.c 58 #define MIN(a, b) (((a) < (b)) ? (a) : (b))
78 "HTTP %.*s", MIN(c, MAXCHARS), line);
snoop_mount.c 45 #ifndef MIN
46 #define MIN(a, b) ((a) < (b) ? (a) : (b))
435 l = MIN(len - i, 32);
  /onnv/onnv-gate/usr/src/cmd/fm/fmd/common/
fmd_fmri.h 56 #ifndef MIN
57 #define MIN(x, y) ((x) < (y) ? (x) : (y))
  /onnv/onnv-gate/usr/src/cmd/fs.d/
fslib.h 82 #undef MIN
84 #define MIN(a, b) ((a) < (b) ? (a) : (b))
  /onnv/onnv-gate/usr/src/cmd/lp/filter/postscript/common/
gen.h 67 #define MIN(A, B) ((A) < (B) ? (A) : (B))
  /onnv/onnv-gate/usr/src/lib/libcurses/screen/
init_color.c 49 static float MAX(float, float, float), MIN(float, float, float);
128 double max, min; local
133 min = MIN(r, g, b);
137 l = (max + min) / 2;
141 if (max == min) {
146 s = (max - min) / (max + min);
148 s = (max - min) / (2 - max - min);
    [all...]
  /onnv/onnv-gate/usr/src/cmd/fm/eversholt/common/
eftread.c 54 #ifndef MIN
55 #define MIN(x, y) ((x) <= (y) ? (x) : (y))
133 size_t rsz = MIN(hdr.identlen, idbufsz - 1);
  /onnv/onnv-gate/usr/src/cmd/fm/modules/sun4v/etm/
etm_impl.h 57 #ifndef MIN
58 #define MIN(x, y) ((x) < (y) ? (x) : (y))
  /onnv/onnv-gate/usr/src/cmd/mkfile/
mkfile.c 39 #define MIN(a, b) ((a) < (b) ? (a) : (b))
211 size_t bytes = (size_t)MIN(bufsz, size-written);
  /onnv/onnv-gate/usr/src/lib/libpcp/common/
libpcp.h 68 #ifndef MIN
69 #define MIN(x, y) ((x) < (y) ? (x) : (y))
  /onnv/onnv-gate/usr/src/lib/storage/common/
l_common.h 109 #define MIN(a, b) (a < b ? a : b)
  /onnv/onnv-gate/usr/src/cmd/agents/snmp/snmplib/
impl.h 58 #ifndef MIN
59 #define MIN(x, y) ((x) < (y)? (x) : (y))
  /onnv/onnv-gate/usr/src/lib/fm/topo/modules/sun4v/platform-mem/
mem_mdesc.h 42 #ifndef MIN
43 #define MIN(x, y) ((x) < (y) ? (x) : (y))
  /onnv/onnv-gate/usr/src/lib/libdisasm/i386/
dis_i386.c 196 #define MIN(a, b) ((a) < (b) ? (a) : (b))
242 res = hist[(cur + n - MIN(n, nseen)) % n];
  /onnv/onnv-gate/usr/src/lib/libsasl/lib/
canonusr.c 373 #ifdef MIN
374 #undef MIN
376 #define MIN(a,b) (((a) < (b))? (a):(b))
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);
  /onnv/onnv-gate/usr/src/cmd/filebench/common/
filebench.h 122 #ifndef MIN
123 #define MIN(x, y) ((x) < (y) ? (x) : (y))
  /onnv/onnv-gate/usr/src/uts/intel/io/pci/
pci_memlist.c 147 #define MIN(a, b) ((a) < (b) ? (a) : (b))
202 chunk->size -= MIN(chunk_end, rem_end) -
  /onnv/onnv-gate/usr/src/cmd/bnu/
eio.c 36 #ifndef MIN
37 #define MIN(a,b) (((a)<(b))?(a):(b))
250 len = erdblk(bufr, (int) MIN(msglen, EBUFSIZ), fn);
  /onnv/onnv-gate/usr/src/cmd/fmli/sys/
grep.c 341 #define MIN(x, y) (x < y ? x : y)
368 n = MIN(size, iop->_cnt);
  /onnv/onnv-gate/usr/src/cmd/fs.d/cachefs/mdbug/
priv.h 56 #define MIN(x, y) (((x) > (y)) ? (y) : (x))

Completed in 9999 milliseconds

1 2 3