Searched refs:max (Results 476 - 500 of 1843) sorted by relevance

<<11121314151617181920>>

/external/webkit/Source/JavaScriptCore/runtime/
H A DSymbolTable.h38 static ALWAYS_INLINE int missingSymbolMarker() { return std::numeric_limits<int>::max(); }
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DVersionGLSL.cpp106 mVersion = std::max(version, mVersion);
/external/webkit/Source/WebCore/fileapi/
H A DBlob.h66 PassRefPtr<Blob> webkitSlice(long long start, long long end = std::numeric_limits<long long>::max(), const String& contentType = String()) const;
/external/webkit/Source/WebCore/html/
H A DStepRange.cpp50 double clampedValue = max(minimum, min(value, maximum));
/external/webkit/Source/WebCore/inspector/front-end/
H A DPopover.js90 preferredWidth = Math.max(preferredWidth, 50);
129 newElementPosition.x = Math.max(borderRadius, anchorBox.x - borderRadius - arrowOffset);
135 var arrowRightPosition = Math.max(0, totalWidth - anchorBox.x - anchorBox.width - borderRadius - arrowOffset);
146 this._popupArrowElement.style.left = Math.max(0, anchorBox.x - borderRadius * 2 - arrowOffset) + "px";
/external/webkit/Source/WebCore/page/
H A DWindowFeatures.cpp219 float WindowFeatures::floatFeature(const DialogFeaturesMap& features, const char* key, float min, float max, float defaultValue) argument
230 if (parsedNumber < min || max <= min)
232 if (parsedNumber > max)
233 return max;
/external/webkit/Source/WebCore/platform/graphics/
H A DIntRect.h117 setWidth(std::max(0, width() - delta));
122 setWidth(std::max(0, width() + delta));
128 setHeight(std::max(0, height() - delta));
133 setHeight(std::max(0, height() + delta));
H A DWidthIterator.cpp54 , m_minGlyphBoundingBoxY(numeric_limits<float>::max())
199 m_firstGlyphOverflow = max<float>(0, -bounds.x());
215 m_maxGlyphBoundingBoxY = max(m_maxGlyphBoundingBoxY, bounds.maxY());
217 m_lastGlyphOverflow = max<float>(0, bounds.maxX() - width);
/external/webkit/Source/WebCore/platform/graphics/filters/
H A DFEComponentTransfer.cpp113 val = std::max(0.0, std::min(255.0, val));
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));
H A DFEGaussianBlur.cpp38 using std::max;
139 kernelSizeX = max<unsigned>(2, static_cast<unsigned>(floorf(stdX * gGaussianKernelFactor + 0.5f)));
142 kernelSizeY = max<unsigned>(2, static_cast<unsigned>(floorf(stdY * gGaussianKernelFactor + 0.5f)));
239 return max((radius * 2 / 3.f - 0.5f) / gGaussianKernelFactor, 0.f);
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DFontCustomPlatformData.cpp66 *(ptr + i) = static_cast<unsigned int>(randomNumber() * (std::numeric_limits<unsigned>::max() + 1.0));
/external/webkit/Source/WebCore/platform/wx/wxcode/win/
H A Dscrollbar_render.cpp64 #undef max macro
65 #define max(a,b) (((a) > (b)) ? (a) : (b)) macro
123 const wxRect& rect, wxOrientation orient, int current, wxScrollbarPart focusPart, wxScrollbarPart hoverPart, int max, int step, int flags)
184 calcThumbStartAndLength(physicalLength, max,
122 wxRenderer_DrawScrollbar(wxWindow* window, wxDC& dc, const wxRect& rect, wxOrientation orient, int current, wxScrollbarPart focusPart, wxScrollbarPart hoverPart, int max, int step, int flags) argument
/external/webkit/Source/WebCore/rendering/
H A DRenderMarquee.cpp79 result = max(result, marqueeElt->minimumDelay());
128 return max(0, ltr ? (contentWidth - clientWidth) : (clientWidth - contentWidth));
150 return max(contentHeight - clientHeight, 0);
302 newPos = max(newPos, endPoint);
H A DInlineFlowBox.cpp367 maxLogicalRight = max(logicalLeft, maxLogicalRight);
386 maxLogicalRight = max(logicalLeft, maxLogicalRight);
400 maxLogicalRight = max(logicalLeft, maxLogicalRight);
469 if (maxAscent + maxDescent >= max(maxPositionTop, maxPositionBottom))
676 lineBottom = max(lineBottom, newLogicalTop + boxHeight);
677 lineBottomIncludingMargins = max(lineBottom, max(lineBottomIncludingMargins, newLogicalTopIncludingMargins + boxHeightIncludingMargins));
697 lineBottom = max(lineBottom, logicalTop() + logicalHeight());
698 lineBottomIncludingMargins = max(lineBottom, lineBottomIncludingMargins);
732 int logicalBottomVisualOverflow = max(logicalBotto
[all...]
/external/webkit/Source/WebCore/svg/
H A DSVGParserUtilities.cpp39 static const FloatType max = std::numeric_limits<FloatType>::max(); local
40 return x >= -max && x <= max;
/external/webkit/Source/WebKit/chromium/src/
H A DWebScrollbarImpl.cpp85 int pageStep = max(max(static_cast<int>(static_cast<float>(length) * Scrollbar::minFractionToStepWhenPaging()), length - Scrollbar::maxOverlapBetweenPages()), 1);
208 delta = max(max(static_cast<float>(m_scrollbar->visibleSize()) * Scrollbar::minFractionToStepWhenPaging(), static_cast<float>(m_scrollbar->visibleSize() - Scrollbar::maxOverlapBetweenPages())), 1.0f);
/external/webkit/Source/WebKit/efl/ewk/
H A Dewk_tiled_model.h42 EAPI Ewk_Tile_Unused_Cache *ewk_tile_unused_cache_new(size_t max);
/external/webkit/Tools/QueueStatusServer/handlers/
H A Drecentstatus.py61 return max(self._last_status_date(), self._work_items.date)
/external/webrtc/src/modules/audio_processing/aec/interface/
H A Decho_cancellation.h48 WebRtc_Word16 max; member in struct:__anon15116
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
H A DByteTest.java359 final Byte max = new Byte(Byte.MAX_VALUE);
361 assertTrue(max.compareTo(max) == 0);
365 assertTrue(max.compareTo(zero) > 0);
366 assertTrue(max.compareTo(min) > 0);
368 assertTrue(zero.compareTo(max) < 0);
372 assertTrue(min.compareTo(max) < 0);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DTimeLineGraph.java43 int max= (int) (Math.ceil(maxItem * (maxItem < 0 ? 0.8 : 1.2)));
49 String smax= this.fDimension.getDisplayValue(max);
52 int labelWidth= Math.max(emin.x, emax.x) + 2;
64 // draw the max and min values
76 setCoordinates(right-left,left,bottom-top,bottom,max-min);
234 double max=getMaxItem()*1.2;
240 thisItem.setY((int)(PADDING+((max-thisItem.value) * (height)/(yValueRange))));
255 thisItem.setY((int)(PADDING+((max-thisItem.value) * (height)/(yValueRange))));
/external/skia/bench/
H A Dbench_graph_svg.py168 max_x = max(max_x, x)
169 max_y = max(max_y, y)
198 max_up_slope = max(max_up_slope, min_slope)
299 newest_revision = max(all_revision_numbers)
519 pic_width = max(rev_width*3
699 d = max(0, (min_slope / min_down_slope))
703 d = max(0, (min_slope / max_up_slope))
/external/skia/src/effects/
H A DSkColorMatrixFilter.cpp133 SkFixed max = 0; local
139 max = SkMax32(max, value);
146 int bits = SkCLZ(max);
205 static int32_t pin(int32_t value, int32_t max) { argument
209 if (value > max) {
210 value = max;
/external/stlport/stlport/stl/
H A D_limits.h63 static __number (_STLP_CALL max)() _STLP_NOTHROW { return __number(); }
122 static _Int (_STLP_CALL max) () _STLP_NOTHROW { return (_Int)__imax; }
301 static _STLP_LONG_LONG (_STLP_CALL max) () _STLP_NOTHROW { return LONGLONG_MAX; }
320 static unsigned _STLP_LONG_LONG (_STLP_CALL max) () _STLP_NOTHROW { return ULONGLONG_MAX; }
419 static float (_STLP_CALL max) () _STLP_NOTHROW { return FLT_MAX; }
450 static double (_STLP_CALL max)() _STLP_NOTHROW { return DBL_MAX; }
481 static long double (_STLP_CALL max) () _STLP_NOTHROW { return LDBL_MAX; }
/external/zlib/src/examples/
H A Dgun.c209 int max; /* maximum bits per code for this stream */ local
232 max = flags & 0x1f;
233 if (max < 9 || max > 16) {
237 if (max == 9) /* 9 doesn't really mean 9 */
238 max = 10;
267 if (end >= mask && bits < max) {

Completed in 526 milliseconds

<<11121314151617181920>>