/illumos-gate/usr/src/lib/libc/port/i18n/ |
H A D | wmemmove.c | 40 size_t max = SIZE_MAX / sizeof (wchar_t); local 42 if (n <= max) {
|
H A D | wmemcpy.c | 41 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 D | tempnam.c | 36 #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 D | snprintf.c | 50 size_t max = MAXINT; local 76 } else if (n > max) { 91 if ((size_t)count > max) {
|
H A D | vsnprintf.c | 63 size_t max = MAXINT; local 89 } else if (n > max) { 104 if ((size_t)count > max) {
|
H A D | print.h | 75 /* 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 D | String.h | 37 int start,end,max; member in struct:__anon1677
|
/illumos-gate/usr/src/lib/libslp/clib/ |
H A D | SLPGetRefreshInterval.c | 50 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 D | keypad.c | 144 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 D | keypad.c | 145 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 D | cache.c | 66 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 D | macros.h | 41 * 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 D | cdutils.h | 39 #define max(a, b) ((a) > (b) ? (a) : (b)) macro
|
/illumos-gate/usr/src/cmd/krb5/krb5kdc/ |
H A D | kdc_util.h | 201 #define max(a, b) ((a) > (b) ? (a) : (b)) macro
|
/illumos-gate/usr/src/cmd/ldapcachemgr/ |
H A D | cachemgr_parse.c | 47 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 D | overlay.c | 28 #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 D | overwrite.c | 29 #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 D | toucholap.c | 27 #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 D | print.h | 77 #define max(a, b) ((a) > (b)? (a): (b)) macro
|
/illumos-gate/usr/src/lib/print/libipp-core/common/ |
H A D | ipp_types.c | 48 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 D | ns_date.c | 113 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 D | fru_tag.c | 80 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 D | runefile.h | 38 int32_t max; member in struct:__anon3017
|
/illumos-gate/usr/src/lib/libc/port/stdio/ |
H A D | tempnam.c | 45 #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 D | display.c | 60 * 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));
|