Searched refs:max (Results 226 - 250 of 2317) sorted by relevance

1234567891011>>

/macosx-10.10/JavaScriptCore-7600.1.17/profiler/
H A DCallIdentifier.h101 new (NotNull, &slot) JSC::CallIdentifier(String(), String(), std::numeric_limits<unsigned>::max(), std::numeric_limits<unsigned>::max());
106 return value.functionName().isNull() && value.url().isNull() && value.lineNumber() == std::numeric_limits<unsigned>::max() && value.columnNumber() == std::numeric_limits<unsigned>::max();
H A DProfilerBytecode.h38 : m_bytecodeIndex(std::numeric_limits<unsigned>::max())
/macosx-10.10/JavaScriptCore-7600.1.17/tests/stress/
H A Dmul-boolean-exit.js2 return Math.max(a.f, b.f);
/macosx-10.10/OpenSSH-189/osslshim/ossl/
H A Dossl-buffer.h30 int max; member in struct:buf_mem_st
/macosx-10.10/WebCore-7600.1.25/Modules/mediastream/
H A DCapabilityRange.h47 Deprecated::ScriptValue max(JSC::ExecState*) const;
/macosx-10.10/WebCore-7600.1.25/page/scrolling/
H A DScrollingConstraints.cpp64 float leftDelta = std::max<float>(0, leftLimit - m_stickyBoxRect.x());
65 float availableSpace = std::max<float>(0, m_containingBlockRect.maxX() - m_stickyBoxRect.maxX());
84 float topDelta = std::max<float>(0, topLimit - m_stickyBoxRect.y());
85 float availableSpace = std::max<float>(0, m_containingBlockRect.maxY() - m_stickyBoxRect.maxY());
/macosx-10.10/WebCore-7600.1.25/platform/efl/DefaultTheme/widget/progressbar/
H A Dprogressbar.edc24 max: 999999 999999;
53 max: 999999 99999;
/macosx-10.10/WebCore-7600.1.25/platform/efl/DefaultTheme/widget/scrollbar/
H A Dscrollbar.edc85 max: 10 999999;
117 max: 1 999999;
136 max: 5 999999;
156 max: 5 999999;
263 max: 999999 10;
294 max: 999999 1;
314 max: 999999 5;
334 max: 999999 5;
/macosx-10.10/WebCore-7600.1.25/platform/graphics/filters/
H A DFilterOperations.cpp125 std::max(0, outsetSize.height() - dropShadowOperation->y()),
126 std::max(0, outsetSize.width() + dropShadowOperation->x()),
127 std::max(0, outsetSize.height() + dropShadowOperation->y()),
128 std::max(0, outsetSize.width() - dropShadowOperation->x())
/macosx-10.10/WebCore-7600.1.25/platform/text/icu/
H A DUTextProvider.h81 ASSERT(offset < std::numeric_limits<int32_t>::max());
82 text->chunkOffset = offset < std::numeric_limits<int32_t>::max() ? static_cast<int32_t>(offset) : 0;
95 ASSERT(offset < std::numeric_limits<int32_t>::max());
96 text->chunkOffset = offset < std::numeric_limits<int32_t>::max() ? static_cast<int32_t>(offset) : 0;
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DRenderOverflow.h79 LayoutUnit maxX = std::max(rect.maxX(), m_layoutOverflow.maxX());
80 LayoutUnit maxY = std::max(rect.maxY(), m_layoutOverflow.maxY());
89 LayoutUnit maxX = std::max(rect.maxX(), m_visualOverflow.maxX());
90 LayoutUnit maxY = std::max(rect.maxY(), m_visualOverflow.maxY());
/macosx-10.10/WebKit2-7600.1.25/Platform/IPC/
H A DArgumentCoders.cpp54 encoder << std::numeric_limits<uint32_t>::max();
69 if (length == std::numeric_limits<uint32_t>::max()) {
95 encoder << std::numeric_limits<uint32_t>::max();
134 if (length == std::numeric_limits<uint32_t>::max()) {
/macosx-10.10/WebKit2-7600.1.25/WebProcess/WebCoreSupport/
H A DWebDeviceProximityClient.h48 virtual double max() override { return m_max; }
/macosx-10.10/emacs-93/emacs/oldXMenu/
H A DXMenuInt.h29 #define max(x, y) ((x) >= (y) ? (x) : (y)) macro
/macosx-10.10/libmalloc-53.1.1/src/
H A Dbitarray.h61 extern unsigned bitarray_zap_first_set_multiple(bitarray_t bits, unsigned log_size, unsigned max, index_t *indices);
62 // finds all the bits set, up to max, and zaps each and sets the index for each
/macosx-10.10/libutil-38/
H A Dhumanize_number.c58 int64_t divisor, max; local
127 for (max = 100, i = len - baselen; i-- > 0;)
128 max *= 10;
130 for (i = 0; scalable >= max && i < maxscale; i++)
/macosx-10.10/ruby-106/ruby/ext/json/lib/json/add/
H A Dtime.rb25 nanoseconds = nanoseconds.max
/macosx-10.10/smb-759.0/lib/smb/
H A Drcfile.h57 int ival; /* int/bool values, or max len for str value */
60 int max; /* max for ival */ member in struct:opt_args
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/page/
H A Dgen_peg_cpkg.tcl37 set max -1
42 if {$l > $max} {set max $l}
49 cpkg::Rule $chan $sym $mode $rule [expr {$max - $l}]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/struct/stack/
H A Ds.c15 s->max = 0;
94 s->max = 0;
98 } else if ((listc-n) < (s->max/2)) {
110 s->max = listc - n;
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/modules/widget/
H A Dwidget.tcl129 foreach {min max} $range { break }
131 || ($value < $min) || ($value > $max)} {
133 range \[$min .. $max\]"
144 foreach {min max} $range { break }
146 || ($value < $min) || ($value > $max)} {
148 range \[$min .. $max\]"
/macosx-10.10/CPANInternal-159.1/Log-Log4perl-1.40/lib/Log/Log4perl/JavaMap/
H A DRollingFileAppender.pm44 my $max;
46 $max = $data->{MaxBackupIndex}{value};
47 }elsif (defined $data->{max}{value}){
48 $max = $data->{max}{value};
50 $max = 1;
70 max => $max,
102 max
/macosx-10.10/OpenSSH-189/openssh/
H A Dkexgsss.c73 int min = -1, max = -1, nbits = -1; local
112 max = packet_get_int();
114 max = MIN(DH_GRP_MAX, max);
116 if (max < min || nbits < min || max < nbits)
118 min, nbits, max);
119 dh = PRIVSEP(choose_dh(min, nbits, max));
236 min, nbits, max,
/macosx-10.10/WebCore-7600.1.25/platform/audio/
H A DVectorMath.cpp585 float max = 0;
591 max = std::max(max, fabsf(*sourceP));
612 // Get max from the SSE results.
614 max = std::max(max, groupMaxP[0]);
615 max = std::max(ma
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/krb5/
H A Dlog.c41 int max; member in struct:facility
146 int max,
158 fp->max = max;
189 krb5_log_facility *facility, int min, int max,
209 return krb5_addlog_func(context, facility, min, max,
259 krb5_log_facility *facility, int min, int max,
280 return krb5_addlog_func(context, facility, min, max,
333 open_file(krb5_context context, krb5_log_facility *fac, int min, int max, argument
351 return krb5_addlog_func(context, fac, min, max, log_fil
143 krb5_addlog_func(krb5_context context, krb5_log_facility *fac, int min, int max, krb5_log_log_func_t log_func, krb5_log_close_func_t close_func, void *data) argument
188 open_syslog(krb5_context context, krb5_log_facility *facility, int min, int max, const char *sev, const char *fac) argument
258 open_asl(krb5_context context, krb5_log_facility *facility, int min, int max, const char *sev, const char *fac) argument
360 int min = 0, max = -1, n; local
[all...]

Completed in 399 milliseconds

1234567891011>>