Searched refs:max (Results 51 - 75 of 2317) sorted by relevance

1234567891011>>

/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/doctools2idx/
H A Dexport_json.tcl103 if {$config(aligned)} { set max 9 }
111 set type [FmtR max $type]
161 if {$config(aligned)} { Align $dict max }
166 if {$config(aligned)} { set k [FmtR max $k] }
189 upvar 1 $mv max
191 # max length of all relevant names.
192 set max 0
193 foreach {str _} $dict { Max max $str }
198 upvar 1 $v max
200 if {$x <= $max} retur
[all...]
H A Dexport_docidx.tcl126 if {$config(aligned)} { Align $references max }
133 set id [FmtR max $id]
184 upvar 1 $mv max r r
186 # max length of all relevant names.
187 set max 0
189 Max max [list $id]
195 upvar 1 $v max
197 if {$x <= $max} return
198 set max $x
203 upvar 1 $v max
[all...]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/pt/rde_critcl/
H A Dstack.c14 long int max; /* Size of the cell array. */ member in struct:RDE_STACK_
33 s->max = RDE_STACK_INITIAL_SIZE;
46 ASSERT_BOUNDS(i,s->max);
58 if (s->top >= s->max) {
59 long int new = s->max ? (2 * s->max) : RDE_STACK_INITIAL_SIZE;
62 s->max = new;
66 ASSERT_BOUNDS(s->top,s->max);
74 ASSERT_BOUNDS(s->top-1,s->max);
87 ASSERT_BOUNDS(s->top,s->max);
[all...]
/macosx-10.10/WTF-7600.1.24/wtf/
H A DRandomNumber.cpp44 return static_cast<double>(bits) / (static_cast<double>(std::numeric_limits<uint32_t>::max()) + 1.0);
/macosx-10.10/BerkeleyDB-21/db/common/
H A Ddb_getlong.c21 __db_getlong(dbenv, progname, p, min, max, storep)
25 long min, max, *storep;
59 if (val > max) {
63 progname, p, max);
66 "%s: Greater than maximum value (%ld)", p, max);
81 __db_getulong(dbenv, progname, p, min, max, storep)
85 u_long min, max, *storep;
120 * We allow a 0 to substitute as a max value for ULONG_MAX because
125 if (max != 0 && val > max) {
[all...]
/macosx-10.10/Security-57031.1.35/Security/include/security_asn1/
H A Dplstr.h80 PL_strnlen(const char *str, PRUint32 max);
97 * the trailing '\0' or up to and including the max'th character, whichever
104 PL_strncpy(char *dest, const char *src, PRUint32 max);
110 * the trailing '\0' or up but not including the max'th character, whichever
115 * NOTE: If you call this with a source "abcdefg" and a max of 5, the
127 PL_strncpyz(char *dest, const char *src, PRUint32 max);
165 PL_strndup(const char *s, PRUint32 max);
192 PL_strncat(char *dst, const char *src, PRUint32 max);
200 * If the existing string in dst is longer than the max, no action is taken.
206 PL_strcatn(char *dst, PRUint32 max, cons
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_asn1/Security/
H A Dplstr.h80 PL_strnlen(const char *str, PRUint32 max);
97 * the trailing '\0' or up to and including the max'th character, whichever
104 PL_strncpy(char *dest, const char *src, PRUint32 max);
110 * the trailing '\0' or up but not including the max'th character, whichever
115 * NOTE: If you call this with a source "abcdefg" and a max of 5, the
127 PL_strncpyz(char *dest, const char *src, PRUint32 max);
165 PL_strndup(const char *s, PRUint32 max);
192 PL_strncat(char *dst, const char *src, PRUint32 max);
200 * If the existing string in dst is longer than the max, no action is taken.
206 PL_strcatn(char *dst, PRUint32 max, cons
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_asn1/lib/
H A Dplstr.h80 PL_strnlen(const char *str, PRUint32 max);
97 * the trailing '\0' or up to and including the max'th character, whichever
104 PL_strncpy(char *dest, const char *src, PRUint32 max);
110 * the trailing '\0' or up but not including the max'th character, whichever
115 * NOTE: If you call this with a source "abcdefg" and a max of 5, the
127 PL_strncpyz(char *dest, const char *src, PRUint32 max);
165 PL_strndup(const char *s, PRUint32 max);
192 PL_strncat(char *dst, const char *src, PRUint32 max);
200 * If the existing string in dst is longer than the max, no action is taken.
206 PL_strcatn(char *dst, PRUint32 max, cons
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_asn1/security_asn1/
H A Dplstr.h80 PL_strnlen(const char *str, PRUint32 max);
97 * the trailing '\0' or up to and including the max'th character, whichever
104 PL_strncpy(char *dest, const char *src, PRUint32 max);
110 * the trailing '\0' or up but not including the max'th character, whichever
115 * NOTE: If you call this with a source "abcdefg" and a max of 5, the
127 PL_strncpyz(char *dest, const char *src, PRUint32 max);
165 PL_strndup(const char *s, PRUint32 max);
192 PL_strncat(char *dst, const char *src, PRUint32 max);
200 * If the existing string in dst is longer than the max, no action is taken.
206 PL_strcatn(char *dst, PRUint32 max, cons
[all...]
/macosx-10.10/WebCore-7600.1.25/Modules/mediastream/
H A DCapabilityRange.idl30 [CallWith=ScriptState] readonly attribute any max;
/macosx-10.10/WebCore-7600.1.25/html/
H A DHTMLProgressElement.idl22 [SetterRaisesException] attribute unrestricted double max;
/macosx-10.10/WebCore-7600.1.25/platform/mac/
H A DHIDGamepad.h41 , max(theMax)
52 double max; member in struct:WebCore::HIDGamepadElement
63 HIDGamepadButton(uint32_t thePriority, double min, double max, IOHIDElementRef element) argument
64 : HIDGamepadElement(min, max, element)
76 return (rawValue - min) / (max - min);
81 HIDGamepadAxis(double min, double max, IOHIDElementRef element) argument
82 : HIDGamepadElement(min, max, element)
91 return (((rawValue - min) / (max - min)) * 2) - 1;
/macosx-10.10/bc-21/bc/bc/
H A Dscan.l83 bcel_input (buf, result, max)
86 int max;
90 while ( (*result = read( fileno(yyin), buf, max )) < 0 )
114 if (bcel_len <= max)
122 strncpy (buf, bcel_line, max);
123 *result = max;
124 bcel_line += max;
125 bcel_len -= max;
154 rl_input (buf, result, max)
157 int max;
[all...]
/macosx-10.10/dtrace-147/test/tst/common/aggs/
H A Dtst.max.d27 #pragma ident "@(#)tst.max.d 1.1 06/08/28 SMI"
31 * Positive max() test
35 * NOTES: This is verifiable simple positive test of the max() function.
49 @a = max(i);
/macosx-10.10/tcl-105/tcl_ext/tls/tls/tests/oldTests/
H A DtlsBlocking.tcl30 set max 10
31 #set max 100
32 #set max 3
33 for {set i 0} {$i < $max} {incr i} {
/macosx-10.10/tcl-105/tcl_ext/trf/trf/tools/
H A Dmmencode9 proc parcel {max cmd buffer} {
11 # lines of at most $max characters each. The last line is possibly shorter.
17 #puts stderr "$max $cmd [string length $buffer]"
31 while {[string length $line] > $max} {
32 append res "[string range $line 0 [expr {$max-1}]]\n"
33 set line [string range $line $max end]
/macosx-10.10/Heimdal-398.1.2/lib/hcrypto/libtommath/
H A Dbn_s_mp_sub.c22 int olduse, res, min, max; local
26 max = a->used;
29 if (c->alloc < max) {
30 if ((res = mp_grow (c, max)) != MP_OKAY) {
35 c->used = max;
64 for (; i < max; i++) {
/macosx-10.10/WebCore-7600.1.25/Modules/proximity/
H A DDeviceProximityEvent.h33 , max(std::numeric_limits<double>::infinity())
42 double max; member in struct:WebCore::DeviceProximityEventInit
54 static PassRef<DeviceProximityEvent> create(const AtomicString& eventType, const double value, const double min, const double max) argument
56 return adoptRef(*new DeviceProximityEvent(eventType, value, min, max));
66 double max() { return m_max; } function in class:WebCore::DeviceProximityEvent
72 DeviceProximityEvent(const AtomicString& eventType, const double value, const double min, const double max);
/macosx-10.10/libtelnet-13/
H A Dread_password.c79 local_des_read_pw_string(s,max,prompt,verify)
81 int max;
92 if (max > BUFSIZ) {
114 while (!fgets(s, max, stdin));
138 memset(s, 0, max);
150 s[max-1] = 0; /* force termination */
/macosx-10.10/libxslt-13/libxslt/tests/exslt/math/
H A DMakefile.am12 max.1.out max.1.xml max.1.xsl \
13 max.2.out max.2.xml max.2.xsl \
14 max.3.out max.3.xml max.3.xsl \
15 max
[all...]
/macosx-10.10/tcl-105/tcl/tcl/libtommath/
H A Dbn_s_mp_sub.c22 int olduse, res, min, max; local
26 max = a->used;
29 if (c->alloc < max) {
30 if ((res = mp_grow (c, max)) != MP_OKAY) {
35 c->used = max;
64 for (; i < max; i++) {
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/doctools2toc/
H A Dexport_json.tcl170 if {$config(aligned)} { Align $dict max }
175 if {$config(aligned)} { set k [FmtR max $k] }
198 upvar 1 $mv max
200 # max length of all relevant names.
201 set max 0
202 foreach {str _} $dict { Max max $str }
207 upvar 1 $v max
209 if {$x <= $max} return
210 set max $x
215 upvar 1 $v max
[all...]
/macosx-10.10/BerkeleyDB-21/db/rep/
H A Drep_auto.c17 __rep_bulk_marshal(env, argp, bp, max, lenp)
21 size_t *lenp, max;
25 if (max < __REP_BULK_SIZE
48 __rep_bulk_unmarshal(env, argp, bp, max, nextp)
52 size_t max;
58 if (max < needed)
66 if (max < needed)
85 __rep_control_marshal(env, argp, bp, max, lenp)
89 size_t *lenp, max;
93 if (max < __REP_CONTROL_SIZ
[all...]
/macosx-10.10/BerkeleyDB-21/db/repmgr/
H A Drepmgr_auto.c27 __repmgr_handshake_unmarshal(env, argp, bp, max, nextp)
31 size_t max;
34 if (max < __REPMGR_HANDSHAKE_SIZE)
69 __repmgr_ack_unmarshal(env, argp, bp, max, nextp)
73 size_t max;
76 if (max < __REPMGR_ACK_SIZE)
103 DB_HTONL_COPYOUT(env, bp, argp->max);
112 __repmgr_version_proposal_unmarshal(env, argp, bp, max, nextp)
116 size_t max;
119 if (max < __REPMGR_VERSION_PROPOSAL_SIZ
[all...]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/virtchannel_base/
H A Dmemchan.tcl95 set max [string length $content]
96 if {$at >= $max} {
102 if {$last >= $max} {
129 set max [string length $content]
133 end { set newloc [expr {$max + $offset - 1}] }
141 } elseif {$newloc >= $max} {
144 append content [binary format @[expr {$newloc - $max}]]

Completed in 332 milliseconds

1234567891011>>