Searched refs:min (Results 201 - 225 of 1824) sorted by relevance

1234567891011>>

/macosx-10.10/WebCore-7600.1.25/platform/audio/
H A DReverbAccumulationBuffer.cpp58 size_t numberOfFrames1 = std::min(numberOfFrames, framesAvailable);
91 size_t numberOfFrames1 = std::min(numberOfFrames, framesAvailable);
/macosx-10.10/WebCore-7600.1.25/platform/text/
H A DSuffixTree.h59 int limit = std::min(m_depth, query.length());
100 unsigned limit = std::min(base + m_depth, text.length());
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DRenderSlider.cpp95 m_maxPreferredLogicalWidth = std::min(m_maxPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(style().maxWidth().value()));
96 m_minPreferredLogicalWidth = std::min(m_minPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(style().maxWidth().value()));
H A DRenderRubyRun.cpp307 logicalLeftOverhang = std::min<int>(logicalLeftOverhang, rootInlineBox->logicalLeft());
308 logicalRightOverhang = std::min<int>(logicalRightOverhang, logicalWidth - rootInlineBox->logicalRight());
325 startOverhang = std::min<int>(startOverhang, std::min<int>(toRenderText(startRenderer)->minLogicalWidth(), halfWidthOfFontSize));
327 endOverhang = std::min<int>(endOverhang, std::min<int>(toRenderText(endRenderer)->minLogicalWidth(), halfWidthOfFontSize));
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DSlider.js60 value = Math.max(Math.min(value, 1), 0);
110 var x = Math.max(Math.min(this._startKnobX + dx, this._maxX), 0);
H A DDatabaseContentView.css48 min-height: 16px;
78 min-height: 16px;
93 min-height: 16px;
/macosx-10.10/bash-94.1.2/bash-3.2/lib/sh/
H A Dmktime.c133 ydhms_tm_diff (year, yday, hour, min, sec, tp)
134 int year, yday, hour, min, sec;
153 + (min - tp->tm_min))
198 int min = tp->tm_min; local
237 t0 = ydhms_tm_diff (year, yday, hour, min, sec, &tm);
240 (dt = ydhms_tm_diff (year, yday, hour, min, sec, (*convert) (&t, &tm)));
259 if (! (dt = ydhms_tm_diff (year, yday, hour, min, sec,
294 double dsec = 60 * (60 * (24 * dday + hour) + min) + sec_requested;
/macosx-10.10/bind9-45.101/bind9/contrib/idn/idnkit-1.0-src/lib/
H A Ducs4.c201 unsigned long v, min; local
214 min = 0;
222 min = 0x80;
226 min = 0x800;
230 min = 0x10000;
234 min = 0x200000;
238 min = 0x4000000;
257 if (v < min) {
/macosx-10.10/dtrace-147/test/tst/common/aggs/
H A Dtst.negorder.d58 @minny[i] = min(incr);
80 printf("Ordering of min() with some negative weights:\n");
/macosx-10.10/ipsec-286.1.1/ipsec-tools/racoon/Sample/
H A Dracoon.conf69 # lifetime time 1 min; # sec,min,hour
94 lifetime time 1 min; # sec,min,hour
/macosx-10.10/libresolv-57/
H A Dns_date.c120 datepart(const char *buf, int size, int min, int max, int *errp) { argument
129 if (result < min)
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/modules/autoscroll/
H A Dautoscroll.tcl114 foreach { min max } $args {}
115 if { $min <= 0 && $max >= 1 } {
/macosx-10.10/xnu-2782.1.97/SETUP/config/
H A DMakefile13 CFLAGS = -isysroot $(HOST_SDKROOT) -mmacosx-version-min=$(HOST_OS_VERSION) -g -O0 -I$(SOURCE) -I.
18 LDFLAGS = -isysroot $(HOST_SDKROOT) -mmacosx-version-min=$(HOST_OS_VERSION)
/macosx-10.10/ruby-106/ruby/test/date/
H A Dtest_switch_hitter.rb41 [d.year, d.mon, d.mday, d.hour, d.min, d.sec, d.offset])
44 [d.year, d.mon, d.mday, d.hour, d.min, d.sec, d.offset])
47 [d.year, d.mon, d.mday, d.hour, d.min, d.sec, d.offset])
50 [d.year, d.mon, d.mday, d.hour, d.min, d.sec, d.offset])
53 [d.year, d.mon, d.mday, d.hour, d.min, d.sec, d.offset])
56 [d.year, d.mon, d.mday, d.hour, d.min, d.sec, d.offset])
59 [d.year, d.mon, d.mday, d.hour, d.min, d.sec, d.offset])
62 [d.year, d.mon, d.mday, d.hour, d.min, d.sec, d.offset])
65 [d.year, d.mon, d.mday, d.hour, d.min, d.sec, d.offset])
78 [d.year, d.mon, d.mday, d.hour, d.min,
[all...]
/macosx-10.10/ICU-531.30/icuSources/common/
H A Duvectr32.cpp304 int32_t min = 0, max = count; local
305 while (min != max) {
306 int32_t probe = (min + max) / 2;
313 min = probe + 1;
317 for (int32_t i=count; i>min; --i) {
320 elements[min] = tok;
/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/ecma/Date/
H A D15.9.5.28-1.js24 ECMA Section: 15.9.5.28 Date.prototype.setMinutes(min [, sec [, ms ]] )
33 2. Call ToNumber(min).
126 function addNewTestCase( time, min, sec, ms, DateString, UTCDate, LocalDate) {
130 DateCase.setMinutes( min );
133 DateCase.setMinutes( min, sec );
135 DateCase.setMinutes( min, sec, ms );
206 function SetMinutes( t, min, sec, ms ) {
208 var MIN = Number(min);
H A D15.9.5.29-1.js24 ECMA Section: 15.9.5.29 Date.prototype.setUTCMinutes(min [, sec [, ms ]] )
33 2. Call ToNumber(min).
50 writeHeaderToLog( SECTION + " Date.prototype.setUTCMinutes( min [, sec, ms] )");
123 function addNewTestCase( time, min, sec, ms, DateString, UTCDate, LocalDate) {
127 DateCase.setUTCMinutes( min );
130 DateCase.setUTCMinutes( min, sec );
132 DateCase.setUTCMinutes( min, sec, ms );
200 function SetUTCMinutes( t, min, sec, ms ) {
202 var MIN = Number(min);
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/libraries/libldap_r/
H A Dthr_lwp.c227 time_t now, min; local
235 min = 0L;
243 if (( t->tl_wake > now ) && ( t->tl_wake < min )) {
244 min = t->tl_wake;
252 if ( min == 0L ) {
255 interval.tv_sec = min;
/macosx-10.10/WebCore-7600.1.25/platform/efl/DefaultTheme/widget/check/
H A Dcheck.edc25 min: 12 12;
78 min: 12 12;
101 min: 12 12;
/macosx-10.10/WebCore-7600.1.25/platform/efl/DefaultTheme/widget/radio/
H A Dradio.edc24 min: 12 12;
77 min: 12 12;
100 min: 12 12;
/macosx-10.10/WebCore-7600.1.25/platform/graphics/filters/
H A DFEComponentTransfer.cpp111 double v2 = tableValues[std::min((k + 1), (n - 1))];
113 val = std::max(0.0, std::min(255.0, val));
126 k = std::min(k, n - 1);
128 val = std::max(0.0, std::min(255.0, val));
137 val = std::max(0.0, std::min(255.0, val));
147 val = std::max(0.0, std::min(255.0, val));
/macosx-10.10/bind9-45.101/bind9/lib/dns/
H A Dportlist.c107 unsigned int min = 0; local
117 min = xtry;
122 last = min;
124 if (xtry == min)
127 xtry = xtry - (xtry - min + 1) / 2;
128 INSIST(xtry >= min);
/macosx-10.10/cxxfilt-11/cxxfilt/opcodes/
H A Dcgen-asm.c331 cgen_validate_signed_integer (long value, long min, long max)
333 if (value < min || value > max)
339 value, min, max);
347 Supplying `min' here may seem unnecessary, but we also want to handle
348 cases where min != 0 (and max > LONG_MAX). */
352 unsigned long min,
355 if (value < min || value > max)
361 value, min, max);
329 cgen_validate_signed_integer(long value, long min, long max) argument
349 cgen_validate_unsigned_integer(unsigned long value, unsigned long min, unsigned long max) argument
/macosx-10.10/screen-22/screen/
H A Dsched.c93 struct event *ev, *min; local
96 if ((min = tevs) == 0)
98 mins = min->timeout.tv_sec;
104 if (mins > ev->timeout.tv_sec || min->timeout.tv_usec > ev->timeout.tv_usec)
106 min = ev;
110 return min;
/macosx-10.10/tcl-105/tcl_ext/incrtcl/iwidgets/generic/
H A Dspinint.itk8 # Spinner may be configured to wrap when min or max value is reached.
102 # Set min and max values for spinner.
111 set min [lindex $itk_option(-range) 0]
114 if {![regexp {^-?[0-9]+$} $min]} {
115 error "bad range option \"$min\": begin value must be\
122 if {$min > $max} {
123 error "bad option starting range \"$min\": must be less\
140 # Specify whether spinner should wrap value if at min or max.

Completed in 220 milliseconds

1234567891011>>