/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Memoize/t/ |
H A D | speed.t | 51 sub max { $_[0] > $_[1] ? subroutine
|
/osnet-11/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;
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/List/Util/lib/List/ |
H A D | Util.pm | 12 @EXPORT_OK = qw(first min max minstr maxstr reduce sum shuffle); 55 sub max (@) { reduce { $a > $b ? $a : $b } @_ } subroutine 93 use List::Util qw(first max maxstr min minstr reduce shuffle sum); 125 =item max LIST 130 $foo = max 1..10 # 10 131 $foo = max 3,9,12 # 12 132 $foo = max @bar, @baz # whatever 140 Similar to C<max>, but treats all the entries in the list as strings 154 Similar to C<max> but returns the entry in the list with the lowest
|
/osnet-11/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
|
/osnet-11/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...] |
/osnet-11/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 );
|
/osnet-11/usr/src/lib/libparted/common/libparted/fs/hfs/ |
H A D | probe.c | 69 PedSector search, max; local 85 max = search + (PED_BE32_TO_CPU (mdb->block_size) / PED_SECTOR_SIZE_DEFAULT); 89 for (; search < max; search++) { 126 PedSector search, max; local 140 max = ((PedSector) PED_BE32_TO_CPU (vh->total_blocks) + 1) 143 search = max - 2 * ( PED_BE32_TO_CPU (vh->block_size) 149 for (; search < max; search++) { 197 PedSector search, max; local 213 max = ((PedSector) PED_BE32_TO_CPU (vh->total_blocks) + 1) 216 search = max [all...] |
/osnet-11/usr/src/grub/grub2/grub-core/efiemu/i386/ |
H A D | loadcore32.c | 68 Elf32_Rel *rel, *max; local 71 max = rel + s->sh_size / s->sh_entsize; 72 rel < max;
|
H A D | loadcore64.c | 64 Elf64_Rela *rel, *max; local 67 max = rel + (unsigned long) s->sh_size 69 rel < max;
|
/osnet-11/usr/src/grub/grub2/grub-core/kern/i386/ |
H A D | dl.c | 75 Elf_Rel *rel, *max; local 78 max = rel + s->sh_size / s->sh_entsize; 79 rel < max;
|
/osnet-11/usr/src/grub/grub2/grub-core/kern/ia64/ |
H A D | dl_helper.c | 50 Elf64_Rela *rel, *max; local 53 max = rel + grub_le_to_cpu32 (s->sh_size) / grub_le_to_cpu16 (s->sh_entsize); 54 rel < max; rel++)
|
/osnet-11/usr/src/grub/grub2/grub-core/kern/sparc64/ |
H A D | dl.c | 76 Elf_Rela *rel, *max; local 79 max = rel + s->sh_size / s->sh_entsize; 80 rel < max;
|
/osnet-11/usr/src/grub/grub2/grub-core/kern/x86_64/ |
H A D | dl.c | 75 Elf64_Rela *rel, *max; local 78 max = rel + s->sh_size / s->sh_entsize; 79 rel < max;
|
/osnet-11/usr/src/cmd/hal/utils/ |
H A D | cdutils.h | 37 #define max(a, b) ((a) > (b) ? (a) : (b)) macro
|
/osnet-11/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;
|
/osnet-11/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);
|
/osnet-11/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)
|
/osnet-11/usr/src/lib/libntfs/common/include/ntfs/ |
H A D | support.h | 54 * The classic min and max macros. 60 #ifndef max 61 #define max(a,b) ((a) >= (b) ? (a) : (b)) macro
|
/osnet-11/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...] |
/osnet-11/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)
|
/osnet-11/usr/src/lib/libsoftcrypto/common/ |
H A D | mechstr.c | 101 static const int max = sizeof (mechstrlist) / sizeof (mechstr_t); local 107 pos = snprintf(s, MAXSTRLEN, "%d:", max); 108 for (i = 0; i < max; i++) 126 static const int max = sizeof (mechstrlist) / sizeof (mechstr_t); local 132 for (i = 0; i < max; i++) {
|
/osnet-11/usr/src/lib/libresolv2/common/irs/ |
H A D | dns_pr.c | 196 int max = 0; local 232 if ((num + 1) >= max || !pvt->proto.p_aliases) { 233 max += 10; 235 max * sizeof(char *));
|