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

1 2 3 4 5 6 7 8 91011>>

  /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,
ipft_sn.c 112 n = MIN(plen, ilen);
144 n = MIN(i, cnt);
191 n = MIN(i, cnt);
  /onnv/onnv-gate/usr/src/cmd/acct/
prctmp.sh 33 MAJ/MIN CONNECT SECONDS START TIME SESSION START
  /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/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/stand/lib/sa/
unistd.c 44 (void) strlcpy(name, hostname, MIN(namelen, MAXHOSTNAMELEN));
54 (void) strlcpy(hostname, name, MIN(namelen + 1, MAXHOSTNAMELEN));
  /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/cmd/fs.d/
fslib.h 82 #undef MIN
84 #define MIN(a, b) ((a) < (b) ? (a) : (b))
  /onnv/onnv-gate/usr/src/lib/libbc/libc/stdio/common/
fgets.c 41 #define MIN(x, y) (x < y ? x : y)
70 n = MIN(size, iop->_cnt);
fread.c 42 #define MIN(x, y) (x < y ? x : y)
65 n = MIN(nleft, iop->_cnt);
fwrite.c 44 #define MIN(x, y) (x < y ? x : y)
85 n = MIN(nleft, n);
  /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/uts/common/syscall/
getcwd.c 52 kbuflen = MIN(buflen, MAXPATHLEN);
72 kbuflen = MIN(kbuflen * 2, buflen);
  /onnv/onnv-gate/usr/src/cmd/bnu/
pk.h 90 #ifndef MIN
91 #define MIN(a,b) ((a<b)? a:b)
  /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);
  /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/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/uts/common/fs/nfs/
nfs4_common.c 153 mi->mi_tsize = MIN(mi->mi_tsize, STRUCT_FGET(args, rsize));
154 mi->mi_curread = MIN(mi->mi_curread, mi->mi_tsize);
159 mi->mi_stsize = MIN(mi->mi_stsize, STRUCT_FGET(args, wsize));
160 mi->mi_curwrite = MIN(mi->mi_curwrite, mi->mi_stsize);
166 mi->mi_acregmin = SEC2HR(MIN(STRUCT_FGET(args,
173 mi->mi_acregmax = SEC2HR(MIN(STRUCT_FGET(args,
180 mi->mi_acdirmin = SEC2HR(MIN(STRUCT_FGET(args,
187 mi->mi_acdirmax = SEC2HR(MIN(STRUCT_FGET(args,
  /onnv/onnv-gate/usr/src/uts/common/fs/zfs/
zle.c 49 while (src < MIN(last, s_end) && src[0] == 0)
56 while (src < MIN(last, s_end) - 1 && (src[0] | src[1]))
  /onnv/onnv-gate/usr/src/uts/common/os/
rctl_proc.c 95 nv = MIN(nv, rctl->rc_dict_entry->rcd_max_native);
97 nv = MIN(nv, rctl->rc_dict_entry->rcd_max_ilp32);
126 nv = MIN(nv, rctl->rc_dict_entry->rcd_max_native);
128 nv = MIN(nv, rctl->rc_dict_entry->rcd_max_ilp32);
173 nv = MIN(nv, rctl->rc_dict_entry->rcd_max_native);
175 nv = MIN(nv, rctl->rc_dict_entry->rcd_max_ilp32);
197 nv = MIN(nv, rctl->rc_dict_entry->rcd_max_ilp32);
199 nv = MIN(nv, rctl->rc_dict_entry->rcd_max_native);
330 MIN(MAXOFFSET_T, ULONG_MAX), UINT32_MAX, &rctl_default_ops);
  /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/uts/i86pc/cpu/generic_cpu/
gcpu_poll_subr.c 63 pt->mpt_nerr = MIN(nerr, UINT8_MAX);
  /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/uts/common/fs/proc/
prusrio.c 73 len = MIN(uiop->uio_resid,
97 len = MIN(uiop->uio_resid,
  /onnv/onnv-gate/usr/src/cmd/filebench/common/
filebench.h 122 #ifndef MIN
123 #define MIN(x, y) ((x) < (y) ? (x) : (y))

Completed in 600 milliseconds

1 2 3 4 5 6 7 8 91011>>