Searched defs:max (Results 1 - 25 of 348) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/lib/libc/port/i18n/
H A Dwmemmove.c40 size_t max = SIZE_MAX / sizeof (wchar_t); local
42 if (n <= max) {
H A Dwmemcpy.c41 size_t max = SIZE_MAX / sizeof (wchar_t); local
43 if (n <= max) {
51 if (n > max) {
52 len = max;
/illumos-gate/usr/src/lib/libbc/libc/stdio/common/
H A Dtempnam.c36 #define max(A,B) (((A)<(B))?(B):(A)) macro
61 if((p=malloc((unsigned)(max(max(x,y),z)+16))) == NULL)
/illumos-gate/usr/src/lib/libc/port/print/
H A Dsnprintf.c50 size_t max = MAXINT; local
76 } else if (n > max) {
91 if ((size_t)count > max) {
H A Dvsnprintf.c63 size_t max = MAXINT; local
89 } else if (n > max) {
104 if ((size_t)count > max) {
H A Dprint.h75 /* DECIMAL_STRING_LENGTH in floatingpoint.h is max buffer size */
100 #define max(a, b) ((a) > (b)? (a): (b)) macro
/illumos-gate/usr/src/cmd/sgs/libelf/misc/
H A DString.h37 int start,end,max; member in struct:__anon1677
/illumos-gate/usr/src/lib/libslp/clib/
H A DSLPGetRefreshInterval.c50 int mr = 0; /* max results placeholder */
51 unsigned short max = 0; /* max interval result cookie */ local
79 &max, &collator, &mr);
83 &max, &collator, &mr);
91 return (max);
98 unsigned short *max = (unsigned short *)cookie; local
106 *max = 0;
119 if (anint > *max) {
120 *max
[all...]
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dkeypad.c144 int max, len; local
149 for (max = -1, p = __m_keyindex; **p != -1; ++p) {
153 if (max < len)
154 max = len;
157 return max;
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dkeypad.c145 int max, len; local
150 for (max = -1, p = __m_keyindex; **p != -1; ++p) {
154 if (max < len)
155 max = len;
158 return (max);
/illumos-gate/usr/src/lib/libldap5/sources/ldap/common/
H A Dcache.c66 int i, max, rc; local
91 max = GRABSIZE;
94 if ( i == (max - 1) ) {
95 max += GRABSIZE;
97 sizeof(LDAPMod *) * max );
130 if ( i == (max - 1) ) {
131 max++;
133 sizeof(LDAPMod *) * max );
/illumos-gate/usr/src/head/
H A Dmacros.h41 * max() and min() depend on the types of the operands
45 #define max(a, b) ((a) < (b) ? (b) : (a)) macro
/illumos-gate/usr/src/cmd/hal/utils/
H A Dcdutils.h39 #define max(a, b) ((a) > (b) ? (a) : (b)) macro
/illumos-gate/usr/src/cmd/krb5/krb5kdc/
H A Dkdc_util.h201 #define max(a, b) ((a) > (b) ? (a) : (b)) macro
/illumos-gate/usr/src/cmd/ldapcachemgr/
H A Dcachemgr_parse.c47 int value, int min, int max)
49 if (value < min || value > max) {
52 facility, cachename, value, min, max);
46 cachemgr_set_integer(int *addr, char *facility, char *cachename, int value, int min, int max) argument
/illumos-gate/usr/src/ucblib/libcurses/
H A Doverlay.c28 #define max(a, b) ((a) > (b) ? (a) : (b)) macro
44 starty = max(win1->_begy, win2->_begy);
45 startx = max(win1->_begx, win2->_begx);
H A Doverwrite.c29 #define max(a, b) ((a) > (b) ? (a) : (b)) macro
43 starty = max(win1->_begy, win2->_begy);
44 startx = max(win1->_begx, win2->_begx);
H A Dtoucholap.c27 #define max(a, b) ((a) > (b) ? (a) : (b)) macro
41 starty = max(win1->_begy, win2->_begy);
42 startx = max(win1->_begx, win2->_begx);
/illumos-gate/usr/src/ucblib/libucb/port/stdio/
H A Dprint.h77 #define max(a, b) ((a) > (b)? (a): (b)) macro
/illumos-gate/usr/src/lib/print/libipp-core/common/
H A Dipp_types.c48 int max; member in struct:__anon4303
234 result = min(t->max, result);
271 #define max(a, b) ((a > b) ? a : b) macro
273 result = max(t->min, result);
274 #undef max macro
/illumos-gate/usr/src/lib/libresolv2/common/nameser/
H A Dns_date.c113 datepart(const char *buf, int size, int min, int max, int *errp) { argument
124 if (result > max)
/illumos-gate/usr/src/lib/libfruutils/
H A Dfru_tag.c80 static fru_tag_t max = { 0xFFFFFFFFFFFFFFFFULL }; local
87 if ((dense > max.a.dense) || (pl_len > max.a.pl_len)) {
96 if ((dense > max.b.dense) || (pl_len > max.b.pl_len)) {
105 if ((dense > max.c.dense) || (pl_len > max.c.pl_len)) {
114 if ((dense > max.d.dense) || (pl_len > max.d.pl_len)) {
123 if ((dense > max
[all...]
/illumos-gate/usr/src/lib/libc/port/locale/
H A Drunefile.h38 int32_t max; member in struct:__anon3017
/illumos-gate/usr/src/lib/libc/port/stdio/
H A Dtempnam.c45 #define max(A, B) (((A) < (B))?(B):(A)) macro
69 if ((p = malloc(max(max(x, y), z)+16)) == NULL)
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/talk/
H A Ddisplay.c60 * max HAS to be a function, it is called with
65 max(a, b) function
101 wmove(win->x_win, win->x_line, max(--win->x_col, 0));

Completed in 135 milliseconds

1234567891011>>