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

1 2 3 4 5 6 7 8 91011>>

  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Memoize/t/
speed.t 51 sub max { $_[0] > $_[1] ? subroutine
  /onnv/onnv-gate/usr/src/lib/libc/port/i18n/
wmemmove.c 40 size_t max = SIZE_MAX / sizeof (wchar_t); local
42 if (n <= max) {
wmemcpy.c 41 size_t max = SIZE_MAX / sizeof (wchar_t); local
43 if (n <= max) {
51 if (n > max) {
52 len = max;
  /onnv/onnv-gate/usr/src/lib/libc/port/print/
vsnprintf.c 63 size_t max = MAXINT; local
89 } else if (n > max) {
104 if ((size_t)count > max) {
snprintf.c 50 size_t max = MAXINT; local
76 } else if (n > max) {
91 if ((size_t)count > max) {
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/List/Util/lib/List/
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
  /onnv/onnv-gate/usr/src/cmd/sgs/libelf/misc/
String.h 37 int start,end,max; member in struct:__anon1700
  /onnv/onnv-gate/usr/src/cmd/tbl/
ts.c 65 max(int a, int b) function
  /onnv/onnv-gate/usr/src/lib/libbc/libc/stdio/common/
tempnam.c 36 #define max(A,B) (((A)<(B))?(B):(A)) macro
61 if((p=malloc((unsigned)(max(max(x,y),z)+16))) == NULL)
  /onnv/onnv-gate/usr/src/lib/libxcurses/src/libc/xcurses/
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;
  /onnv/onnv-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
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);
  /onnv/onnv-gate/usr/src/lib/mms/dm/libcommon/
dm_IBM_LTO_common.c 44 uint32_t max = 0; local
56 if (code == 1) { /* Max capacity */
67 char_to_uint32(buf + off + 4, 4, &max);
68 cap->mms_max = max;
73 if (max > 0) {
74 cap->mms_pc_avail = (avail * 100) / max;
82 TRACE((MMS_INFO, "Capacity: max %lld, avail %lld, avail %d%%",
dm_SEAGATELTO_common.c 44 uint32_t max = 0; local
56 if (code == 1) { /* Max capacity */
67 char_to_uint32(buf + off + 4, 4, &max);
68 cap->mms_max = max;
73 if (max > 0) {
74 cap->mms_pc_avail = (avail * 100) / max;
82 TRACE((MMS_INFO, "Capacity: max %lld, avail %lld, avail %d%%",
dm_HP_LTO_common.c 45 uint32_t max = 0; local
57 if (code == 1) { /* Max capacity */
68 char_to_uint32(buf + off + 4, 4, &max);
69 cap->mms_max = max;
74 if (max > 0) {
75 cap->mms_pc_avail = (avail * 100) / max;
83 TRACE((MMS_INFO, "Capacity: max %lld, avail %lld, avail %d%%",
  /onnv/onnv-gate/usr/src/ucblib/libcurses/
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);
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);
  /onnv/onnv-gate/usr/src/uts/i86pc/io/
microfind.c 56 uint64_t max, count = MICROCOUNT; local
155 max = 0x100000001 * found;
169 if (count >= max) {
190 max = ((uint64_t)found) * 100000;
191 count = count / max; /* max is never zero */
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sadm/dhcpmgr/com/sun/dhcpmgr/data/qualifier/
QualifierIntegerRange.java 46 protected int max; field in class:QualifierIntegerRange
55 * @param max
58 public QualifierIntegerRange(int min, int max) {
60 this.max = max;
80 return max;
89 if (i >= min && i <= max) {
98 return super.toString() + "<" + min + "," + max + ">";
  /onnv/onnv-gate/usr/src/cmd/hal/utils/
cdutils.h 39 #define max(a, b) ((a) > (b) ? (a) : (b)) macro
  /onnv/onnv-gate/usr/src/cmd/krb5/krb5kdc/
kdc_util.h 201 #define max(a, b) ((a) > (b) ? (a) : (b)) macro
  /onnv/onnv-gate/usr/src/cmd/man/src/util/nsgmls.src/include/
ISet.h 22 T max; member in struct:SP_NAMESPACE::ISetRange
42 return r_.size() == 1 && r_[0].min == r_[0].max;
  /onnv/onnv-gate/usr/src/cmd/man/src/util/nsgmls.src/lib/
UnivCharsetDesc.cxx 32 Char max; local
34 max = charMax;
36 max = r.descMin + (r.count - 1);
37 if (max - r.descMin > univCharMax
38 || r.univMin > univCharMax - (max - r.descMin))
39 max = r.descMin + (univCharMax - r.univMin);
40 addRange(r.descMin, max, r.univMin);
49 Char max = descMax > charMax ? charMax : descMax; local
50 charMap_.setRange(descMin, max, wrapChar(univMin, descMin));
80 WideChar max = baseMax < iDescMax ? baseMax : iDescMax
    [all...]
  /onnv/onnv-gate/usr/src/common/openssl/crypto/asn1/
a_gentm.c 121 static int max[9]={99, 99,12,31,23,59,59,12,59}; local
147 if ((n < min[i]) || (n > max[i])) goto err;
175 if ((n < min[i]) || (n > max[i])) goto err;
  /onnv/onnv-gate/usr/src/common/openssl/crypto/buffer/
buffer.h 81 int max; /* size of buffer */ member in struct:buf_mem_st
  /onnv/onnv-gate/usr/src/common/openssl/crypto/pem/
pem_seal.c 76 int i,j,max=0; local
87 if (j > max) max=j;
89 s=(char *)OPENSSL_malloc(max*2);

Completed in 540 milliseconds

1 2 3 4 5 6 7 8 91011>>