Searched refs:min (Results 26 - 50 of 1824) sorted by relevance

1234567891011>>

/macosx-10.10/WebCore-7600.1.25/Modules/proximity/
H A DDeviceProximityEvent.h32 , min(-std::numeric_limits<double>::infinity())
41 double min; 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));
65 double min() { return m_min; } function in class:WebCore::DeviceProximityEvent
72 DeviceProximityEvent(const AtomicString& eventType, const double value, const double min, const double max);
H A DDeviceProximityEvent.idl25 [InitializedByEventConstructor] readonly attribute unrestricted double min;
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/textutil/
H A Dstring.tcl95 set min [lindex $list 0]
104 set n [string length $min]
106 if {0 == [string compare $min $max]} {return $min}
110 while {[string index $min $i] == [string index $max $i]} {
111 append prefix [string index $min $i]
/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;
49 if (val < min) {
53 progname, p, min);
56 "%s: Less than minimum value (%ld)", p, min);
81 __db_getulong(dbenv, progname, p, min, max, storep)
85 u_long min, max, *storep;
108 if (val < min) {
112 progname, p, min);
115 "%s: Less than minimum value (%lu)", p, min);
[all...]
/macosx-10.10/ruby-106/ruby/lib/xmlrpc/
H A Ddatetime.rb20 attr_reader :year, :month, :day, :hour, :min, :sec
58 def min= (value)
60 @min = value
79 # +hour+, +min+, +sec+ as time.
83 def initialize(year, month, day, hour, min, sec)
85 self.hour, self.min, self.sec = hour, min, sec
110 # Returns +[year, month, day, hour, min, sec]+.
112 [@year, @month, @day, @hour, @min, @sec]
/macosx-10.10/adv_cmds-158/mklocale/
H A Dyacc.y177 $$->min = $1;
184 $$->min = $1;
191 $$->min = $2;
198 $$->min = $2;
207 $$->min = $2;
215 $$->min = $3;
223 $$->min = $2;
231 $$->min = $3;
361 for (i = list->min; i <= list->max; ++i) {
362 if (list->map + (i - list->min)) {
[all...]
/macosx-10.10/postfix-255/postfix/src/global/
H A Dmail_conf_time.c9 /* int get_mail_conf_time(name, defval, min, max);
12 /* int min;
26 /* int get_mail_conf_time2(name1, name2, defval, def_unit, min, max);
31 /* int min;
108 static void check_mail_conf_time(const char *name, int intval, int min, int max) argument
110 if (min && intval < min)
111 msg_fatal("invalid %s: %d (min %d)", name, intval, min);
137 int get_mail_conf_time(const char *name, const char *defval, int min, in argument
153 get_mail_conf_time2(const char *name1, const char *name2, int defval, int def_unit, int min, int max) argument
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/hcrypto/libtommath/
H A Dbn_s_mp_add.c23 int olduse, res, min, max; local
29 min = b->used;
33 min = a->used;
66 for (i = 0; i < min; i++) {
80 if (min != max) {
/macosx-10.10/OpenSSH-189/openssh/openbsd-compat/
H A Dbsd-arc4random.c125 u_int32_t r, min; local
131 min = 0x100000000UL % upper_bound;
135 min = 1 + ~upper_bound; /* 2**32 - upper_bound */
138 min = ((0xffffffff - (upper_bound * 2)) + 1) % upper_bound;
150 if (r >= min)
/macosx-10.10/WebCore-7600.1.25/html/
H A DHTMLMeterElement.cpp81 double HTMLMeterElement::min() const function in class:WebCore::HTMLMeterElement
86 void HTMLMeterElement::setMin(double min, ExceptionCode& ec) argument
88 if (!std::isfinite(min)) {
92 setAttribute(minAttr, AtomicString::number(min));
97 return std::max(parseToDoubleForNumberType(getAttribute(maxAttr), std::max(1.0, min())), min());
112 return std::min(std::max(value, min()), max());
126 double low = parseToDoubleForNumberType(getAttribute(lowAttr), min());
127 return std::min(st
204 double min = this->min(); local
[all...]
/macosx-10.10/bash-94.1.2/bash-3.2/examples/scripts/
H A Dline-input.bash52 min=1
55 min=0
59 stty min $min time $timeout
61 unset min timeout
H A Dxterm_title20 stty raw -echo min 0 time ${1-10}
/macosx-10.10/tcl-105/tcl/tcl/libtommath/
H A Dbn_s_mp_add.c23 int olduse, res, min, max; local
29 min = b->used;
33 min = a->used;
66 for (i = 0; i < min; i++) {
80 if (min != max) {
/macosx-10.10/CPANInternal-159.1/Text-LevenshteinXS-0.03/
H A DLevenshteinXS.xs58 int min=a;
59 if(b<min)
60 min=b;
61 if(c<min)
62 min=c;
63 return min;
/macosx-10.10/WebCore-7600.1.25/platform/graphics/
H A DIntPointHash.h37 static WebCore::IntPoint emptyValue() { return WebCore::IntPoint(0, std::numeric_limits<int>::min()); }
39 static void constructDeletedValue(WebCore::IntPoint& slot) { slot = WebCore::IntPoint(std::numeric_limits<int>::min(), 0); }
40 static bool isDeletedValue(const WebCore::IntPoint& slot) { return slot == WebCore::IntPoint(std::numeric_limits<int>::min(), 0); }
/macosx-10.10/Heimdal-398.1.2/lib/hcrypto/
H A Dhash.h45 #ifndef min
46 #define min(a,b) (((a)>(b))?(b):(a)) macro
/macosx-10.10/SmartcardCCID-55008/ccid/ccid/src/
H A Dmisc.h54 #ifndef min
55 #define min(a,b) (((a) < (b)) ? (a) : (b)) macro
/macosx-10.10/WebCore-7600.1.25/platform/efl/DefaultTheme/widget/progressbar/
H A Dprogressbar.edc21 min: 0 11; /* if > 0, this is the minimum size that will be allocated.
52 min: 29 11;
77 min: 29 5;
99 min: 0 5;
/macosx-10.10/cups-408/cups/cups/
H A Draster-private.h39 * min/max macros...
45 # ifndef min
46 # define min(a,b) ((a) < (b) ? (a) : (b)) macro
47 # endif /* !min */
/macosx-10.10/dtrace-147/test/tst/common/printa/
H A Dtst.walltimestamp.d34 @foo = min(1075064400 * (hrtime_t)1000000000);
/macosx-10.10/dtrace-147/test/tst/common/speculation/
H A Derr.D_AGG_SPEC.SpeculateWithMin.d49 @Minimus["speculate"] = min(i);
/macosx-10.10/emacs-93/emacs/lisp/textmodes/
H A Dunderline.el45 (goto-char (min start end))
60 (goto-char (min start end))
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/examples/plotchart/
H A Drosenbrock.tcl30 # -min min : the minimum value in the range (default 0.0)
41 {min.arg 0.0 "the minimum value in the range"}
50 set min $params(min)
52 if {$min > $max} then {
53 error "The minimum value is $min but the maximum value is $max"
58 set step [expr {($max-$min)/($nb-1)}]
68 set current $min
84 set xvec [linspace -min
[all...]
/macosx-10.10/ruby-106/ruby/lib/
H A Dtime.rb188 def apply_offset(year, mon, day, hour, min, sec, off)
194 if o != 0 then min += o; o, min = min.divmod(60); off += o end
212 if o != 0 then min -= o; o, min = min.divmod(60); off -= o end
227 return year, mon, day, hour, min, sec
231 def make_time(year, mon, day, hour, min, sec, sec_fraction, zone, now)
240 break if min; mi
[all...]
/macosx-10.10/tcl-105/tcl_ext/incrtcl/iwidgets/generic/
H A Dcolors.itcl76 set min 65535
77 if {$r < $min} {set min $r}
78 if {$g < $min} {set min $g}
79 if {$b < $min} {set min $b}
82 set sat [expr {($max-$min)/$max}]
89 set rc [expr {($max-$r)/($max-$min)}]
90 set gc [expr {($max-$g)/($max-$min)}]
[all...]

Completed in 329 milliseconds

1234567891011>>