min 38 LayoutTests/http/tests/media/resources/serve-video.php $readSize = min($chunkSize, ($end - $offset) + 1); min 135 Source/config.h #ifndef min min 136 Source/config.h #define min min min 1247 Source/core/accessibility/AXNodeObject.cpp boundingBox.setSize(LayoutSize(parentRect.width(), LayoutUnit(std::min(10.0f, parentRect.height().toFloat())))); min 703 Source/core/accessibility/AXObject.cpp subfocusMax = std::min(subfocusMax, objectMax); min 482 Source/core/accessibility/AXTable.cpp for (unsigned colIndexCounter = std::min(static_cast<unsigned>(children.size()), column + 1); colIndexCounter > 0; --colIndexCounter) { min 180 Source/core/animation/Animation.cpp return std::min(end - localTime, timeToNextIteration); min 111 Source/core/animation/DocumentTimeline.cpp timeToNextEffect = std::min(timeToNextEffect, player->timeToEffectChange()); min 96 Source/core/animation/KeyframeEffectModel.cpp endIndex = std::min(i, endIndex); min 1059 Source/core/css/CSSGradientValue.cpp float xDist = min(secondPoint.x(), size.width() - secondPoint.x()); min 1060 Source/core/css/CSSGradientValue.cpp float yDist = min(secondPoint.y(), size.height() - secondPoint.y()); min 1062 Source/core/css/CSSGradientValue.cpp float smaller = min(xDist, yDist); min 1090 Source/core/css/CSSGradientValue.cpp float xDist = min(secondPoint.x(), size.width() - secondPoint.x()); min 1091 Source/core/css/CSSGradientValue.cpp float yDist = min(secondPoint.y(), size.height() - secondPoint.y()); min 54 Source/core/css/CSSPrimitiveValue.h return ((value > std::numeric_limits<T>::max()) || (value < std::numeric_limits<T>::min())) ? 0 : static_cast<T>(value); min 93 Source/core/css/CSSToLengthConversionData.cpp return std::min(m_viewportWidth, m_viewportHeight) / 100; min 1441 Source/core/css/CSSTokenizer-in.cpp m_parser.m_observer->endComment(std::min(endOffset, userTextEndOffset) - m_parsedTextPrefixLength); min 65 Source/core/css/CSSTokenizer.h return std::min(tokenStartOffset(), static_cast<unsigned>(m_length - 1 - m_parsedTextSuffixLength)) - m_parsedTextPrefixLength; min 78 Source/core/css/FontSize.cpp return std::min(maximumAllowedFontSize, zoomedSize); min 144 Source/core/css/StylePropertySet.h , m_arraySize(std::min(immutableArraySize, unsigned(MaxArraySize))) min 1298 Source/core/css/parser/BisonCSSParser-in.cpp unsigned length = std::min(longestNameLength, nameLength); min 5292 Source/core/css/parser/CSSPropertyParser.cpp colorArray[3] = static_cast<int>(max(0.0, min(1.0, value)) * nextafter(256.0, 0.0)); min 5318 Source/core/css/parser/CSSPropertyParser.cpp colorArray[i] = max(0.0, min(100.0, parsedDouble(v, ReleaseParsedCalcValue))) / 100.0; // needs to be value between 0 and 1.0 min 5327 Source/core/css/parser/CSSPropertyParser.cpp colorArray[3] = max(0.0, min(1.0, parsedDouble(v, ReleaseParsedCalcValue))); min 87 Source/core/css/resolver/AnimatedStyleBuilder.cpp template<typename T> T animatableValueRoundClampTo(const AnimatableValue* value, T min = defaultMinimumForClamp<T>(), T max = defaultMaximumForClamp<T>()) min 90 Source/core/css/resolver/AnimatedStyleBuilder.cpp return clampTo<T>(round(toAnimatableDouble(value)->toDouble()), min, max); min 353 Source/core/css/resolver/FontBuilder.cpp size = std::min(maximumAllowedFontSize, size); min 240 Source/core/dom/DocumentMarkerController.cpp inserted->setStartOffset(std::min(inserted->startOffset(), i->startOffset())); min 1604 Source/core/dom/Node.cpp for (unsigned i = min(index1, index2); i; --i) { min 298 Source/core/dom/Position.h return std::min(offset, anchorNode->maxCharacterOffset()); min 796 Source/core/dom/Range.cpp endOffset = std::min(endOffset, toCharacterData(container)->length()); min 810 Source/core/dom/Range.cpp endOffset = std::min(endOffset, toProcessingInstruction(container)->data().length()); min 1074 Source/core/dom/Range.cpp int start = (n == m_start.container()) ? min(max(0, m_start.offset()), length) : 0; min 1075 Source/core/dom/Range.cpp int end = (n == m_end.container()) ? min(max(start, m_end.offset()), length) : length; min 387 Source/core/dom/TreeScope.cpp for (unsigned i = std::min(index1, index2); i; --i) { min 111 Source/core/dom/ViewportDescription.cpp resultZoom = compareIgnoringAuto(resultMinZoom, compareIgnoringAuto(resultMaxZoom, resultZoom, min), max); min 113 Source/core/dom/ViewportDescription.cpp float extendZoom = compareIgnoringAuto(resultZoom, resultMaxZoom, min); min 147 Source/core/dom/ViewportDescription.cpp resultWidth = compareIgnoringAuto(resultMinWidth, compareIgnoringAuto(resultMaxWidth, initialViewportSize.width(), min), max); min 151 Source/core/dom/ViewportDescription.cpp resultHeight = compareIgnoringAuto(resultMinHeight, compareIgnoringAuto(resultMaxHeight, initialViewportSize.height(), min), max); min 1065 Source/core/editing/Editor.cpp return IntRect(min(startCaretRect.x(), endCaretRect.x()), min 262 Source/core/editing/EditorCommand.cpp int height = std::min<int>(toRenderBox(renderer)->clientHeight(), frame.view()->visibleHeight()); min 84 Source/core/editing/FrameSelection.cpp return LayoutUnit::min(); min 310 Source/core/editing/InputMethodController.cpp unsigned start = std::min(baseOffset + selectionStart, extentOffset); min 311 Source/core/editing/InputMethodController.cpp unsigned end = std::min(std::max(start, baseOffset + selectionEnd), extentOffset); min 357 Source/core/editing/InputMethodController.cpp unsigned start = std::min(m_compositionStart, length); min 358 Source/core/editing/InputMethodController.cpp unsigned end = std::min(std::max(start, m_compositionEnd), length); min 107 Source/core/editing/InsertTextCommand.cpp unsigned count = std::min(text.length(), textNode->length() - start.offsetInContainerNode()); min 489 Source/core/editing/SpellChecker.cpp start = std::min(start, end); min 570 Source/core/editing/TextIterator.cpp unsigned lengthToAppend = std::min(static_cast<unsigned>(length()) - position, maxLength); min 612 Source/core/editing/TextIterator.cpp int runEnd = min(strLength, end); min 683 Source/core/editing/TextIterator.cpp unsigned runEnd = min(textBoxEnd, end); min 1841 Source/core/editing/TextIterator.cpp m_prefixLength -= min(m_prefixLength, m_buffer.size() - m_overlap); min 1846 Source/core/editing/TextIterator.cpp size_t usableLength = min(m_buffer.capacity() - oldLength, length); min 1876 Source/core/editing/TextIterator.cpp size_t usableLength = min(m_buffer.capacity() - m_prefixLength, length - wordBoundaryContextStart); min 2003 Source/core/editing/TextIterator.cpp overlap = min(size - 1, max(overlap, size - wordBoundaryContextStart)); min 2006 Source/core/editing/TextIterator.cpp m_prefixLength -= min(m_prefixLength, size - overlap); min 2023 Source/core/editing/TextIterator.cpp m_prefixLength -= min<size_t>(m_prefixLength, matchStart + 1); min 165 Source/core/fetch/MemoryCache.cpp size_t capacity = m_capacity - std::min(m_liveSize, m_capacity); // Start with available capacity. min 167 Source/core/fetch/MemoryCache.cpp capacity = std::min(capacity, m_maxDeadCapacity); // Make sure it's below the maximum. min 107 Source/core/frame/DOMWindow.cpp using std::min; min 288 Source/core/frame/DOMWindow.cpp window.setWidth(min(max(minimumSize.width(), window.width()), screen.width())); min 290 Source/core/frame/DOMWindow.cpp window.setHeight(min(max(minimumSize.height(), window.height()), screen.height())); min 293 Source/core/frame/DOMWindow.cpp window.setX(max(screen.x(), min(window.x(), screen.maxX() - window.width()))); min 294 Source/core/frame/DOMWindow.cpp window.setY(max(screen.y(), min(window.y(), screen.maxY() - window.height()))); min 2945 Source/core/frame/FrameView.cpp FloatSize expectedPageSize(std::min<float>(documentRect.width().toFloat(), pageSize.width() * maximumShrinkFactor), std::min<float>(documentRect.height().toFloat(), pageSize.height() * maximumShrinkFactor)); min 23 Source/core/frame/ImageBitmap.cpp return IntRect(min(rect.x(), rect.maxX()), min 24 Source/core/frame/ImageBitmap.cpp min(rect.y(), rect.maxY()), min 106 Source/core/frame/ImageBitmap.cpp buf->putByteArray(Premultiplied, data->data(), data->size(), srcRect, IntPoint(min(0, -cropRect.x()), min(0, -cropRect.y()))); min 158 Source/core/html/HTMLAreaElement.cpp float r = min(minimumValueForLength(radius, width).toFloat(), minimumValueForLength(radius, height).toFloat()); min 63 Source/core/html/HTMLElement.cpp using std::min; min 318 Source/core/html/HTMLElement.cpp setTabIndexExplicitly(max(static_cast<int>(std::numeric_limits<short>::min()), min(tabindex, static_cast<int>(std::numeric_limits<short>::max())))); min 867 Source/core/html/HTMLElement.cpp size_t componentSearchWindowLength = min<size_t>(componentLength, 8); min 678 Source/core/html/HTMLInputElement.cpp m_maxResults = !value.isNull() ? std::min(value.toInt(), maxSavedResults) : -1; min 1721 Source/core/html/HTMLMediaElement.cpp time = min(time, duration()); min 39 Source/core/html/HTMLMetaElement-in.cpp unsigned bufferLength = std::min(uMaxMatchLength, source.length()); \ min 136 Source/core/html/HTMLMetaElement-in.cpp return std::min(float(10000), std::max(value, float(1))); min 144 Source/core/html/HTMLMetaElement-in.cpp return std::min(float(10), std::max(value, float(0.1))); min 405 Source/core/html/HTMLMetaElement-in.cpp descriptionFromLegacyTag.minZoom = std::min(descriptionFromLegacyTag.minZoom, float(5)); min 78 Source/core/html/HTMLMeterElement.cpp void HTMLMeterElement::setMin(double min, ExceptionState& exceptionState) min 80 Source/core/html/HTMLMeterElement.cpp if (!std::isfinite(min)) { min 81 Source/core/html/HTMLMeterElement.cpp exceptionState.throwTypeError(ExceptionMessages::notAFiniteNumber(min)); min 84 Source/core/html/HTMLMeterElement.cpp setFloatingPointAttribute(minAttr, min); min 89 Source/core/html/HTMLMeterElement.cpp return std::max(getFloatingPointAttribute(maxAttr, std::max(1.0, min())), min()); min 104 Source/core/html/HTMLMeterElement.cpp return std::min(std::max(value, min()), max()); min 118 Source/core/html/HTMLMeterElement.cpp double low = getFloatingPointAttribute(lowAttr, min()); min 119 Source/core/html/HTMLMeterElement.cpp return std::min(std::max(low, min()), max()); min 134 Source/core/html/HTMLMeterElement.cpp return std::min(std::max(high, low()), max()); min 148 Source/core/html/HTMLMeterElement.cpp double optimum = getFloatingPointAttribute(optimumAttr, (max() + min()) / 2); min 149 Source/core/html/HTMLMeterElement.cpp return std::min(std::max(optimum, min()), max()); min 196 Source/core/html/HTMLMeterElement.cpp double min = this->min(); min 200 Source/core/html/HTMLMeterElement.cpp if (max <= min) min 202 Source/core/html/HTMLMeterElement.cpp return (value - min) / (max - min); min 42 Source/core/html/HTMLMeterElement.h double min() const; min 98 Source/core/html/HTMLProgressElement.cpp return !std::isfinite(value) || value < 0 ? 0 : std::min(value, max()); min 635 Source/core/html/HTMLSelectElement.cpp unsigned start = min(m_activeSelectionAnchorIndex, m_activeSelectionEndIndex); min 1004 Source/core/html/HTMLSelectElement.cpp size_t loopEndIndex = std::min(items.size(), listIndexEnd); min 36 Source/core/html/HTMLTableCellElement.cpp using std::min; min 65 Source/core/html/HTMLTableCellElement.cpp return max(1, min(rowSpanValue.toInt(), maxRowspan)); min 172 Source/core/html/HTMLTextFormControlElement.cpp setSelectionRange(min(end, selectionStart()), end, selectionDirection()); min 221 Source/core/html/HTMLTextFormControlElement.cpp start = std::min(start, textLength); min 222 Source/core/html/HTMLTextFormControlElement.cpp end = std::min(end, textLength); min 281 Source/core/html/HTMLTextFormControlElement.cpp start = min(max(start, 0), end); min 47 Source/core/html/ImageDocument.cpp using std::min; min 232 Source/core/html/ImageDocument.cpp return min(widthScale, heightScale); min 154 Source/core/html/MediaController.cpp m_position = max(0.0, min(duration(), m_clock->currentTime())); min 176 Source/core/html/MediaController.cpp time = min(time, duration()); min 390 Source/core/html/MediaController.cpp newReadyState = min(newReadyState, m_mediaElements[index]->readyState()); min 107 Source/core/html/TimeRanges.h ret.m_start = std::min(m_start, range.m_start); min 1453 Source/core/html/canvas/CanvasRenderingContext2D.cpp return FloatRect(min(rect.x(), rect.maxX()), min 1454 Source/core/html/canvas/CanvasRenderingContext2D.cpp min(rect.y(), rect.maxY()), min 137 Source/core/html/canvas/WebGLDrawBuffers.cpp GLint maxAllowedBuffers = std::min(maxDrawBuffers, maxColorAttachments); min 242 Source/core/html/canvas/WebGLRenderingContextBase.cpp GLint clamp(GLint value, GLint min, GLint max) min 244 Source/core/html/canvas/WebGLRenderingContextBase.cpp if (value < min) min 245 Source/core/html/canvas/WebGLRenderingContextBase.cpp value = min; min 891 Source/core/html/canvas/WebGLRenderingContextBase.cpp GLint maxSize = std::min(m_maxTextureSize, m_maxRenderbufferSize); min 894 Source/core/html/canvas/WebGLRenderingContextBase.cpp maxSize = std::min(maxSize, sizeUpperLimit); min 895 Source/core/html/canvas/WebGLRenderingContextBase.cpp GLint maxWidth = std::min(maxSize, m_maxViewportDims[0]); min 896 Source/core/html/canvas/WebGLRenderingContextBase.cpp GLint maxHeight = std::min(maxSize, m_maxViewportDims[1]); min 5442 Source/core/html/canvas/WebGLRenderingContextBase.cpp i = std::min(m_capacity - 1, i); min 5544 Source/core/html/canvas/WebGLRenderingContextBase.cpp return std::min(m_maxDrawBuffers, m_maxColorAttachments); min 87 Source/core/html/forms/StepRange.cpp const Decimal inRangeValue = max(m_minimum, min(value, m_maximum)); min 403 Source/core/html/forms/TextFieldInputType.cpp unsigned newLength = std::min(maxLength, string.length()); min 210 Source/core/html/parser/HTMLConstructionSite.cpp unsigned breakSearchLength = std::min(proposedBreakIndex - currentPosition + 2, string.length() - currentPosition); min 249 Source/core/html/parser/HTMLConstructionSite.cpp unsigned proposedBreakIndex = std::min(currentPosition + lengthLimit, string.length()); min 254 Source/core/html/parser/HTMLConstructionSite.h whitespaceMode = std::min(whitespaceMode, newWhitespaceMode); min 678 Source/core/html/shadow/DateTimeEditElement.cpp if (DateTimeFieldElement* field = fieldAt(std::min(focusedFieldIndex, m_fields.size() - 1))) min 42 Source/core/html/shadow/DateTimeNumericFieldElement.cpp return std::min(std::max(value, minimum), maximum); min 113 Source/core/html/shadow/DateTimeSymbolicFieldElement.cpp m_selectedIndex = std::max(0, std::min(newSelectedIndex, static_cast<int>(m_symbols.size() - 1))); min 664 Source/core/html/shadow/MediaControlElements.cpp float smallestDimension = std::min(m_videoDisplaySize.size().height(), m_videoDisplaySize.size().width()); min 281 Source/core/html/shadow/SliderThumbElement.cpp position = max<LayoutUnit>(0, min(position, trackSize)); min 588 Source/core/html/track/vtt/VTTCue.cpp m_displaySize = std::min(m_cueSize, maximumSize); min 387 Source/core/html/track/vtt/VTTRegion.cpp m_currentTop -= std::min(height, childBottom - regionBottom); min 40 Source/core/loader/ProgressTracker.cpp using std::min; min 180 Source/core/loader/ProgressTracker.cpp m_progressValue = min(m_progressValue, maxProgressValue); min 49 Source/core/page/PageScaleConstraints.cpp minimumScale = std::min(minimumScale, other.initialScale); min 67 Source/core/page/PageScaleConstraints.cpp pageScaleFactor = std::min(pageScaleFactor, maximumScale); min 382 Source/core/page/SpatialNavigation.cpp dx = - std::min<LayoutUnit>(ScrollableArea::pixelsPerLineStep(), container->renderBox()->scrollLeft()); min 386 Source/core/page/SpatialNavigation.cpp dx = std::min<LayoutUnit>(ScrollableArea::pixelsPerLineStep(), container->renderBox()->scrollWidth() - (container->renderBox()->scrollLeft() + container->renderBox()->clientWidth())); min 389 Source/core/page/SpatialNavigation.cpp dy = - std::min<LayoutUnit>(ScrollableArea::pixelsPerLineStep(), container->renderBox()->scrollTop()); min 393 Source/core/page/SpatialNavigation.cpp dy = std::min<LayoutUnit>(ScrollableArea::pixelsPerLineStep(), container->renderBox()->scrollHeight() - (container->renderBox()->scrollTop() + container->renderBox()->clientHeight())); min 351 Source/core/page/TouchAdjustment.cpp int maxOverlapWidth = std::min(touchRect.width(), rect.width()); min 352 Source/core/page/TouchAdjustment.cpp int maxOverlapHeight = std::min(touchRect.height(), rect.height()); min 218 Source/core/page/WindowFeatures.cpp float WindowFeatures::floatFeature(const DialogFeaturesMap& features, const char* key, float min, float max, float defaultValue) min 229 Source/core/page/WindowFeatures.cpp if (parsedNumber < min || max <= min) min 230 Source/core/page/WindowFeatures.cpp return min; min 83 Source/core/page/WindowFeatures.h static float floatFeature(const DialogFeaturesMap&, const char* key, float min, float max, float defaultValue); min 54 Source/core/page/scrolling/ScrollingConstraints.cpp float rightDelta = std::min<float>(0, rightLimit - m_absoluteStickyBoxRect.maxX()); min 55 Source/core/page/scrolling/ScrollingConstraints.cpp float availableSpace = std::min<float>(0, m_absoluteContainingBlockRect.x() - m_absoluteStickyBoxRect.x()); min 74 Source/core/page/scrolling/ScrollingConstraints.cpp float bottomDelta = std::min<float>(0, bottomLimit - m_absoluteStickyBoxRect.maxY()); min 75 Source/core/page/scrolling/ScrollingConstraints.cpp float availableSpace = std::min<float>(0, m_absoluteContainingBlockRect.y() - m_absoluteStickyBoxRect.y()); min 229 Source/core/rendering/AutoTableLayout.cpp float percent = min(static_cast<float>(m_layoutStruct[i].effectiveLogicalWidth.percent()), remainingPercent); min 240 Source/core/rendering/AutoTableLayout.cpp maxWidth = max<int>(maxWidth, static_cast<int>(min(maxNonPercent, static_cast<float>(tableMaxWidth)))); min 241 Source/core/rendering/AutoTableLayout.cpp maxWidth = max<int>(maxWidth, static_cast<int>(min(maxPercent, static_cast<float>(tableMaxWidth)))); min 415 Source/core/rendering/AutoTableLayout.cpp colMinLogicalWidth = min<int>(m_layoutStruct[pos].effectiveMinLogicalWidth + (cellMinLogicalWidth - remainingMinLogicalWidth), colMinLogicalWidth); min 445 Source/core/rendering/AutoTableLayout.cpp return min(maxLogicalWidth, INT_MAX / 2); min 549 Source/core/rendering/AutoTableLayout.cpp int reduction = min(cellLogicalWidth, excess); min 725 Source/core/rendering/FastTextAutosizer.cpp cluster->m_multiplier = min(cluster->m_multiplier, clusterMultiplier(cluster->m_parent)); min 822 Source/core/rendering/FastTextAutosizer.cpp float multiplier = m_frameWidth ? min(blockWidth, static_cast<float>(m_layoutWidth)) / m_frameWidth : 1.0f; min 400 Source/core/rendering/FloatingObjects.cpp return min(fixedOffset, adapter.offset()); min 416 Source/core/rendering/FloatingObjects.cpp return min(fixedOffset, adapter.offset()); min 392 Source/core/rendering/InlineFlowBox.cpp minLogicalLeft = min(logicalLeft, minLogicalLeft); min 412 Source/core/rendering/InlineFlowBox.cpp minLogicalLeft = min(logicalLeft, minLogicalLeft); min 426 Source/core/rendering/InlineFlowBox.cpp minLogicalLeft = min(logicalLeft, minLogicalLeft); min 699 Source/core/rendering/InlineFlowBox.cpp lineTopIncludingMargins = min(lineTop, newLogicalTopIncludingMargins); min 701 Source/core/rendering/InlineFlowBox.cpp lineTop = min(lineTop, newLogicalTop); min 702 Source/core/rendering/InlineFlowBox.cpp lineTopIncludingMargins = min(lineTop, min(lineTopIncludingMargins, newLogicalTopIncludingMargins)); min 722 Source/core/rendering/InlineFlowBox.cpp lineTop = min<LayoutUnit>(lineTop, pixelSnappedLogicalTop()); min 723 Source/core/rendering/InlineFlowBox.cpp lineTopIncludingMargins = min(lineTop, lineTopIncludingMargins); min 786 Source/core/rendering/InlineFlowBox.cpp LayoutUnit logicalTopVisualOverflow = min(pixelSnappedLogicalTop() + shadowLogicalTop, logicalVisualOverflow.y()); min 793 Source/core/rendering/InlineFlowBox.cpp LayoutUnit logicalLeftVisualOverflow = min(pixelSnappedLogicalLeft() + boxShadowLogicalLeft, logicalVisualOverflow.x()); min 822 Source/core/rendering/InlineFlowBox.cpp LayoutUnit logicalTopVisualOverflow = min(pixelSnappedLogicalTop() - outsetLogicalTop, logicalVisualOverflow.y()); min 828 Source/core/rendering/InlineFlowBox.cpp LayoutUnit logicalLeftVisualOverflow = min(pixelSnappedLogicalLeft() - outsetLogicalLeft, logicalVisualOverflow.x()); min 874 Source/core/rendering/InlineFlowBox.cpp topGlyphOverflow = min(topGlyphOverflow, -emphasisMarkHeight); min 881 Source/core/rendering/InlineFlowBox.cpp rightGlyphOverflow -= min(0, (int)style->font().fontDescription().letterSpacing()); min 887 Source/core/rendering/InlineFlowBox.cpp LayoutUnit childOverflowLogicalTop = min<LayoutUnit>(textShadowLogicalTop + topGlyphOverflow, topGlyphOverflow); min 894 Source/core/rendering/InlineFlowBox.cpp LayoutUnit childOverflowLogicalLeft = min<LayoutUnit>(textShadowLogicalLeft + leftGlyphOverflow, leftGlyphOverflow); min 897 Source/core/rendering/InlineFlowBox.cpp LayoutUnit logicalTopVisualOverflow = min(textBox->pixelSnappedLogicalTop() + childOverflowLogicalTop, logicalVisualOverflow.y()); min 899 Source/core/rendering/InlineFlowBox.cpp LayoutUnit logicalLeftVisualOverflow = min(textBox->pixelSnappedLogicalLeft() + childOverflowLogicalLeft, logicalVisualOverflow.x()); min 1069 Source/core/rendering/InlineFlowBox.cpp LayoutUnit bottom = min(rootBox.lineBottom(), top + logicalHeight); min 1236 Source/core/rendering/InlineFlowBox.cpp LayoutUnit bottom = min(rootBox.lineBottom(), logicalTop + logicalHeight); min 1593 Source/core/rendering/InlineFlowBox.cpp minLevel = min(minLevel, leaf->bidiLevel()); min 145 Source/core/rendering/InlineTextBox.cpp int ePos = min(endPos - m_start, int(m_len) + (isLineBreak() ? 0 : 1)); min 198 Source/core/rendering/InlineTextBox.cpp int ePos = min(endPos - m_start, (int)m_len); min 299 Source/core/rendering/InlineTextBox.cpp return min(ellipsisX, logicalLeft()); min 675 Source/core/rendering/InlineTextBox.cpp sPos = min<int>(sPos, m_truncation); min 676 Source/core/rendering/InlineTextBox.cpp ePos = min<int>(ePos, m_truncation); min 812 Source/core/rendering/InlineTextBox.cpp ePos = min(endPos - m_start, (int)m_len); min 878 Source/core/rendering/InlineTextBox.cpp int ePos = min(endPos - offset, (int)m_len); min 1227 Source/core/rendering/InlineTextBox.cpp int endPosition = min<int>(marker->endOffset() - m_start, m_len); min 1230 Source/core/rendering/InlineTextBox.cpp endPosition = min<int>(endPosition, m_truncation); min 1280 Source/core/rendering/InlineTextBox.cpp int ePos = min(marker->endOffset() - m_start, (unsigned)m_len); min 1371 Source/core/rendering/InlineTextBox.cpp paintEnd = min(paintEnd, (unsigned)underline.endOffset); min 1375 Source/core/rendering/InlineTextBox.cpp paintEnd = min(paintEnd, (unsigned)m_start + m_truncation); min 84 Source/core/rendering/LayoutState.h m_layoutDeltaXSaturated |= m_layoutDelta.width() == LayoutUnit::max() || m_layoutDelta.width() == LayoutUnit::min(); min 85 Source/core/rendering/LayoutState.h m_layoutDeltaYSaturated |= m_layoutDelta.height() == LayoutUnit::max() || m_layoutDelta.height() == LayoutUnit::min(); min 2397 Source/core/rendering/RenderBlock.cpp LayoutUnit logicalRight = min(lastLogicalRight, logicalRightSelectionOffset(rootBlock, logicalBottom)); min 2413 Source/core/rendering/RenderBlock.cpp LayoutUnit rootBlockLogicalRight = min(rootBlock->inlineDirectionOffset(offsetFromRootBlock) + floorToInt(logicalLeft), min(logicalRightSelectionOffset(rootBlock, logicalTop), logicalRightSelectionOffset(rootBlock, logicalTop + logicalHeight))); min 2429 Source/core/rendering/RenderBlock.cpp LayoutUnit rootBlockLogicalRight = min(logicalRightSelectionOffset(rootBlock, logicalTop), logicalRightSelectionOffset(rootBlock, logicalTop + logicalHeight)); min 3039 Source/core/rendering/RenderBlock.cpp LayoutUnit firstRootBoxWithChildrenTop = min<LayoutUnit>(firstRootBoxWithChildren->selectionTop(), firstRootBoxWithChildren->logicalTop()); min 3190 Source/core/rendering/RenderBlock.cpp desiredColumnCount = max<LayoutUnit>(min<LayoutUnit>(colCount, (availWidth + colGap) / (colWidth + colGap)), 1); min 3393 Source/core/rendering/RenderBlock.cpp LayoutUnit endOffset = max(min<LayoutUnit>(isHorizontal ? r.maxY() : r.maxX(), beforeBorderPadding + colCount * colHeight), beforeBorderPadding); min 3551 Source/core/rendering/RenderBlock.cpp m_maxPreferredLogicalWidth = min(m_maxPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(styleToUse->logicalMaxWidth().value())); min 3552 Source/core/rendering/RenderBlock.cpp m_minPreferredLogicalWidth = min(m_minPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(styleToUse->logicalMaxWidth().value())); min 3581 Source/core/rendering/RenderBlock.cpp minLogicalWidth = min(minLogicalWidth, columnWidth); min 4361 Source/core/rendering/RenderBlock.cpp left = min(left, x + static_cast<LayoutUnit>(box->firstChild()->x())); min 4372 Source/core/rendering/RenderBlock.cpp left = min(left, x + obj->x()); min 4388 Source/core/rendering/RenderBlock.cpp LayoutUnit right = LayoutUnit::min(); min 4395 Source/core/rendering/RenderBlock.cpp left = min(rightEdge, max(leftEdge, left)); min 4396 Source/core/rendering/RenderBlock.cpp right = max(left, min(rightEdge, right)); min 4613 Source/core/rendering/RenderBlock.cpp LayoutUnit bottom = min<LayoutUnit>(curr->lineBottom(), curr->top() + curr->height()); min 4644 Source/core/rendering/RenderBlock.cpp LayoutUnit bottom = min<LayoutUnit>(curr->lineBottom(), curr->top() + curr->height()); min 4773 Source/core/rendering/RenderBlock.cpp lineTop = min(line->lineTopWithLeading(), overflow.y()); min 4800 Source/core/rendering/RenderBlock.cpp LayoutUnit logicalOffset = min(lineBox->lineTopWithLeading(), logicalVisualOverflow.y()); min 4828 Source/core/rendering/RenderBlock.cpp remainingLogicalHeight -= min(lineHeight - pageLogicalHeight, max<LayoutUnit>(0, logicalVisualOverflow.y() - lineBox->lineTopWithLeading())); min 823 Source/core/rendering/RenderBlockFlow.cpp LayoutUnit changeLogicalBottom = LayoutUnit::min(); min 838 Source/core/rendering/RenderBlockFlow.cpp changeLogicalTop = min(changeLogicalTop, min(logicalBottom, oldLogicalBottom)); min 844 Source/core/rendering/RenderBlockFlow.cpp changeLogicalTop = min(changeLogicalTop, min(logicalTop, oldLogicalTop)); min 1170 Source/core/rendering/RenderBlockFlow.cpp logicalTop = min(logicalTop, nextPageLogicalTop(beforeCollapseLogicalTop)); min 1407 Source/core/rendering/RenderBlockFlow.cpp logicalTopEstimate = min(logicalTopEstimate, nextPageLogicalTop(logicalHeight())); min 1975 Source/core/rendering/RenderBlockFlow.cpp repaintLogicalLeft = min(repaintLogicalLeft, logicalLeftLayoutOverflow()); min 2149 Source/core/rendering/RenderBlockFlow.cpp LayoutUnit floatLogicalWidth = min(logicalWidthForFloat(floatingObject), logicalRightOffset - logicalLeftOffset); // The width we look for. min 2160 Source/core/rendering/RenderBlockFlow.cpp logicalTopOffset += min(heightRemainingLeft, heightRemainingRight); min 2166 Source/core/rendering/RenderBlockFlow.cpp floatLogicalWidth = min(logicalWidthForFloat(floatingObject), logicalRightOffset - logicalLeftOffset); min 2175 Source/core/rendering/RenderBlockFlow.cpp logicalTopOffset += min(heightRemainingLeft, heightRemainingRight); min 2181 Source/core/rendering/RenderBlockFlow.cpp floatLogicalWidth = min(logicalWidthForFloat(floatingObject), logicalRightOffset - logicalLeftOffset); min 2461 Source/core/rendering/RenderBlockFlow.cpp LayoutUnit logicalBottomForFloat = min(this->logicalBottomForFloat(floatingObject), LayoutUnit::max() - childLogicalTop); min 2532 Source/core/rendering/RenderBlockFlow.cpp logicalBottom = min(floatLogicalBottom, logicalBottom); min 2579 Source/core/rendering/RenderBlockFlow.cpp left = min(left, floatLeft); min 393 Source/core/rendering/RenderBlockLineLayout.cpp trailingSpaceWidth = min(trailingSpaceRun->m_box->logicalWidth(), (availableLogicalWidth - totalLogicalWidth + 1) / 2); min 1144 Source/core/rendering/RenderBlockLineLayout.cpp int numLinesToTake = min(numLinesAvailable, numLinesNeeded); min 1795 Source/core/rendering/RenderBlockLineLayout.cpp floatHeight = min(floatHeight, LayoutUnit::max() - floatTop); min 1990 Source/core/rendering/RenderBlockLineLayout.cpp LayoutUnit logicalTop = min(logicalHeight(), layoutState.endLineLogicalTop()); min 382 Source/core/rendering/RenderBox.cpp width = std::min(LayoutUnit(style->maxWidth().value()), width); min 398 Source/core/rendering/RenderBox.cpp return clientWidth() - min<LayoutUnit>(0, layoutOverflowRect().x() - borderLeft()); min 502 Source/core/rendering/RenderBox.cpp xOffset = max(0, min(frameView->contentsWidth(), xOffset)); min 503 Source/core/rendering/RenderBox.cpp yOffset = max(0, min(frameView->contentsHeight(), yOffset)); min 552 Source/core/rendering/RenderBox.cpp logicalWidth = min(logicalWidth, computeLogicalWidthUsing(MaxSize, styleToUse->logicalMaxWidth(), availableWidth, cb)); min 562 Source/core/rendering/RenderBox.cpp logicalHeight = min(logicalHeight, maxH); min 573 Source/core/rendering/RenderBox.cpp logicalHeight = min(logicalHeight, maxH); min 1804 Source/core/rendering/RenderBox.cpp return min(fillAvailableExtent, fillFallbackExtent); min 2289 Source/core/rendering/RenderBox.cpp return max(minLogicalWidth, min(maxLogicalWidth, fillAvailableMeasure(availableLogicalWidth))); min 2311 Source/core/rendering/RenderBox.cpp logicalWidthResult = min(logicalWidthResult, shrinkLogicalWidthToAvoidFloats(marginStart, marginEnd, toRenderBlockFlow(cb))); min 2314 Source/core/rendering/RenderBox.cpp return max(minPreferredLogicalWidth(), min(maxPreferredLogicalWidth(), logicalWidthResult)); min 2774 Source/core/rendering/RenderBox.cpp return max(minLogicalWidth, min(logicalWidth, maxLogicalWidth)); min 2829 Source/core/rendering/RenderBox.cpp return max(minLogicalHeight, min(logicalHeight, maxLogicalHeight)); min 3230 Source/core/rendering/RenderBox.cpp computedValues.m_extent = min(max(preferredMinWidth, availableWidth), preferredWidth); min 3368 Source/core/rendering/RenderBox.cpp computedValues.m_extent = min(max(preferredMinWidth, availableWidth), preferredWidth); min 4167 Source/core/rendering/RenderBox.cpp overflowMinX = min(overflowMinX, borderBox.x() - ((!isFlipped || isHorizontal) ? borderOutsets.left() : borderOutsets.right())); min 4169 Source/core/rendering/RenderBox.cpp overflowMinY = min(overflowMinY, borderBox.y() - ((!isFlipped || !isHorizontal) ? borderOutsets.top() : borderOutsets.bottom())); min 4176 Source/core/rendering/RenderBox.cpp overflowMinX = min(overflowMinX, borderBox.x() - outlineSize); min 4178 Source/core/rendering/RenderBox.cpp overflowMinY = min(overflowMinY, borderBox.y() - outlineSize); min 4235 Source/core/rendering/RenderBox.cpp overflowRect.shiftMaxYEdgeTo(min(overflowRect.maxY(), clientBox.maxY())); min 4239 Source/core/rendering/RenderBox.cpp overflowRect.shiftMaxXEdgeTo(min(overflowRect.maxX(), clientBox.maxX())); min 901 Source/core/rendering/RenderBoxModelObject.cpp float scaleFactor = type == Contain ? min(horizontalScaleFactor, verticalScaleFactor) : max(horizontalScaleFactor, verticalScaleFactor); min 913 Source/core/rendering/RenderBoxModelObject.cpp m_phase.setX(-min(xOffset, 0)); min 914 Source/core/rendering/RenderBoxModelObject.cpp m_destRect.setWidth(m_tileSize.width() + min(xOffset, 0)); min 919 Source/core/rendering/RenderBoxModelObject.cpp m_phase.setY(-min(yOffset, 0)); min 920 Source/core/rendering/RenderBoxModelObject.cpp m_destRect.setHeight(m_tileSize.height() + min(yOffset, 0)); min 1160 Source/core/rendering/RenderBoxModelObject.cpp int topSlice = min<int>(imageHeight, valueForLength(ninePieceImage.imageSlices().top(), imageHeight)) * imageScaleFactor; min 1161 Source/core/rendering/RenderBoxModelObject.cpp int rightSlice = min<int>(imageWidth, valueForLength(ninePieceImage.imageSlices().right(), imageWidth)) * imageScaleFactor; min 1162 Source/core/rendering/RenderBoxModelObject.cpp int bottomSlice = min<int>(imageHeight, valueForLength(ninePieceImage.imageSlices().bottom(), imageHeight)) * imageScaleFactor; min 1163 Source/core/rendering/RenderBoxModelObject.cpp int leftSlice = min<int>(imageWidth, valueForLength(ninePieceImage.imageSlices().left(), imageWidth)) * imageScaleFactor; min 1179 Source/core/rendering/RenderBoxModelObject.cpp float borderSideScaleFactor = min((float)borderImageRect.width() / borderSideWidth, (float)borderImageRect.height() / borderSideHeight); min 2696 Source/core/rendering/RenderBoxModelObject.cpp x = min(x, max<LayoutUnit>(maxX - caretWidth, 0)); min 242 Source/core/rendering/RenderDeprecatedFlexibleBox.cpp m_maxPreferredLogicalWidth = min(m_maxPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(style()->maxWidth().value())); min 243 Source/core/rendering/RenderDeprecatedFlexibleBox.cpp m_minPreferredLogicalWidth = min(m_minPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(style()->maxWidth().value())); min 518 Source/core/rendering/RenderDeprecatedFlexibleBox.cpp spaceAvailableThisPass = expanding ? min(spaceAvailableThisPass, projectedFlex) : max(spaceAvailableThisPass, projectedFlex); min 772 Source/core/rendering/RenderDeprecatedFlexibleBox.cpp spaceAvailableThisPass = expanding ? min(spaceAvailableThisPass, projectedFlex) : max(spaceAvailableThisPass, projectedFlex); min 1054 Source/core/rendering/RenderDeprecatedFlexibleBox.cpp LayoutUnit allowedShrinkage = min<LayoutUnit>(0, minWidth - width); min 1061 Source/core/rendering/RenderDeprecatedFlexibleBox.cpp LayoutUnit allowedShrinkage = min<LayoutUnit>(0, minHeight - height); min 33 Source/core/rendering/RenderFieldset.cpp using std::min; min 188 Source/core/rendering/RenderFileUploadControl.cpp m_maxPreferredLogicalWidth = min(m_maxPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(style()->maxWidth().value())); min 189 Source/core/rendering/RenderFileUploadControl.cpp m_minPreferredLogicalWidth = min(m_minPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(style()->maxWidth().value())); min 872 Source/core/rendering/RenderFlexibleBox.cpp Length min = isHorizontalFlow() ? child->style()->minWidth() : child->style()->minHeight(); min 874 Source/core/rendering/RenderFlexibleBox.cpp if (min.isSpecifiedOrIntrinsic()) min 875 Source/core/rendering/RenderFlexibleBox.cpp minExtent = computeMainAxisExtentForChild(child, MinSize, min); min 1312 Source/core/rendering/RenderFlexibleBox.cpp minMarginAfterBaseline = std::min(minMarginAfterBaseline, availableAlignmentSpaceForChild(lineCrossAxisExtent, child) - startOffset); min 494 Source/core/rendering/RenderFlowThread.cpp LayoutUnit regionLogicalHeight = std::min<LayoutUnit>(RenderFlowThread::maxLogicalHeight() - logicalHeight, region->logicalHeightOfAllFlowThreadContent()); min 691 Source/core/rendering/RenderGrid.cpp LayoutUnit growthShare = std::min(availableLogicalSpaceShare, track.m_maxBreadth - trackBreadth); min 1053 Source/core/rendering/RenderGrid.cpp namedGridLineIndex = std::min<size_t>(position.integerPosition(), it->value.size()) - 1; min 133 Source/core/rendering/RenderImage.cpp IntSize paddedTextSize(paddingWidth + min(ceilf(font.width(RenderBlockFlow::constructTextRun(this, font, m_altText, style()))), maxAltTextWidth), paddingHeight + min(font.fontMetrics().height(), maxAltTextHeight)); min 977 Source/core/rendering/RenderInline.cpp LayoutUnit logicalRightSide = LayoutUnit::min(); min 979 Source/core/rendering/RenderInline.cpp logicalLeftSide = min(logicalLeftSide, curr->logicalLeftVisualOverflow()); min 1429 Source/core/rendering/RenderInline.cpp LayoutUnit bottom = min<LayoutUnit>(root.lineBottom(), curr->logicalBottom()); min 1495 Source/core/rendering/RenderInline.cpp min(pixelSnappedBox.maxX() + outlineWidth, (lastline.isEmpty() ? 1000000 : pixelSnappedLastLine.x())), min 1528 Source/core/rendering/RenderInline.cpp min(pixelSnappedBox.maxX() + outlineWidth, !nextline.isEmpty() ? pixelSnappedNextLine.x() + 1 : 1000000), min 51 Source/core/rendering/RenderInputSpeech.cpp int speechButtonSize = lroundf(std::min(std::max(minSpeechButtonSize, defaultSpeechButtonSize * fontScale), maxSpeechButtonSize)); min 70 Source/core/rendering/RenderInputSpeech.cpp LayoutUnit buttonSize = std::min(inputContentBox.width(), std::min<LayoutUnit>(inputContentBox.height(), rect.height())); min 764 Source/core/rendering/RenderLayerScrollableArea.cpp int x = std::max(std::min(scrollOffset.width(), maxX), 0); min 765 Source/core/rendering/RenderLayerScrollableArea.cpp int y = std::max(std::min(scrollOffset.height(), maxY), 0); min 472 Source/core/rendering/RenderLayerStackingNode.cpp size_t maxIndex = std::min(posZOrderListAfterPromote->size() + negZOrderListAfterPromote->size(), posZOrderListBeforePromote->size() + negZOrderListBeforePromote->size()); min 158 Source/core/rendering/RenderLineBoxList.cpp physicalStart = min(physicalStart, physicalEnd); min 190 Source/core/rendering/RenderLineBoxList.cpp LayoutUnit logicalTop = min<LayoutUnit>(box->logicalTopVisualOverflow(root.lineTop()), root.selectionTop()); min 237 Source/core/rendering/RenderListBox.cpp m_maxPreferredLogicalWidth = min(m_maxPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(style()->maxWidth().value())); min 238 Source/core/rendering/RenderListBox.cpp m_minPreferredLogicalWidth = min(m_minPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(style()->maxWidth().value())); min 536 Source/core/rendering/RenderListBox.cpp yDelta = max<int>(min<int>(yDelta, maxSpeed), -maxSpeed); min 138 Source/core/rendering/RenderMarquee.cpp return min<LayoutUnit>(0, ltr ? (contentWidth - clientWidth) : (clientWidth - contentWidth)); min 148 Source/core/rendering/RenderMarquee.cpp return min(contentHeight - clientHeight, 0); min 310 Source/core/rendering/RenderMarquee.cpp newPos = min(newPos, endPoint); min 308 Source/core/rendering/RenderMenuList.cpp m_maxPreferredLogicalWidth = min(m_maxPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(style()->maxWidth().value())); min 309 Source/core/rendering/RenderMenuList.cpp m_minPreferredLogicalWidth = min(m_minPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(style()->maxWidth().value())); min 118 Source/core/rendering/RenderMultiColumnFlowThread.cpp m_columnCount = std::max<LayoutUnit>(std::min<LayoutUnit>(colCount, (availWidth + colGap) / (colWidth + colGap)), 1); min 1599 Source/core/rendering/RenderObject.cpp LayoutUnit minInsetRightShadowExtent = min<LayoutUnit>(-insetShadowExtent.right(), min<LayoutUnit>(newBounds.width(), oldBounds.width())); min 1603 Source/core/rendering/RenderObject.cpp LayoutRect rightRect(newBounds.x() + min(newBounds.width(), oldBounds.width()) - decorationsLeftWidth, min 1607 Source/core/rendering/RenderObject.cpp LayoutUnit right = min<LayoutUnit>(newBounds.maxX(), oldBounds.maxX()); min 1609 Source/core/rendering/RenderObject.cpp rightRect.setWidth(min(rightRect.width(), right - rightRect.x())); min 1620 Source/core/rendering/RenderObject.cpp LayoutUnit minInsetBottomShadowExtent = min<LayoutUnit>(-insetShadowExtent.bottom(), min<LayoutUnit>(newBounds.height(), oldBounds.height())); min 1625 Source/core/rendering/RenderObject.cpp min(newBounds.maxY(), oldBounds.maxY()) - decorationsTopHeight, min 1628 Source/core/rendering/RenderObject.cpp LayoutUnit bottom = min(newBounds.maxY(), oldBounds.maxY()); min 1630 Source/core/rendering/RenderObject.cpp bottomRect.setHeight(min(bottomRect.height(), bottom - bottomRect.y())); min 84 Source/core/rendering/RenderOverflow.h LayoutUnit minX = std::min(rect.x(), m_layoutOverflow.x()); min 85 Source/core/rendering/RenderOverflow.h LayoutUnit minY = std::min(rect.y(), m_layoutOverflow.y()); min 97 Source/core/rendering/RenderOverflow.h m_visualOverflow.setX(std::min(rect.x(), m_visualOverflow.x())); min 98 Source/core/rendering/RenderOverflow.h m_visualOverflow.setY(std::min(rect.y(), m_visualOverflow.y())); min 88 Source/core/rendering/RenderRegion.cpp LayoutUnit minX = min(flowThreadPortionRect.x(), flowThreadOverflow.x()); min 94 Source/core/rendering/RenderRegion.cpp LayoutUnit minY = min(flowThreadPortionRect.y(), (flowThreadOverflow.y())); min 203 Source/core/rendering/RenderReplaced.cpp top = min(selTop, top); min 520 Source/core/rendering/RenderReplaced.cpp m_maxPreferredLogicalWidth = min(m_maxPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(styleToUse->logicalMaxWidth().value())); min 521 Source/core/rendering/RenderReplaced.cpp m_minPreferredLogicalWidth = min(m_minPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(styleToUse->logicalMaxWidth().value())); min 297 Source/core/rendering/RenderRubyRun.cpp logicalLeftOverhang = min<int>(logicalLeftOverhang, rootInlineBox->logicalLeft()); min 298 Source/core/rendering/RenderRubyRun.cpp logicalRightOverhang = min<int>(logicalRightOverhang, logicalWidth - rootInlineBox->logicalRight()); min 315 Source/core/rendering/RenderRubyRun.cpp startOverhang = min<int>(startOverhang, min<int>(toRenderText(startRenderer)->minLogicalWidth(), halfWidthOfFontSize)); min 317 Source/core/rendering/RenderRubyRun.cpp endOverhang = min<int>(endOverhang, min<int>(toRenderText(endRenderer)->minLogicalWidth(), halfWidthOfFontSize)); min 80 Source/core/rendering/RenderRubyText.cpp inset = min<float>(2 * style()->fontSize(), inset); min 109 Source/core/rendering/RenderScrollbarPart.cpp setWidth(max(minWidth, min(maxWidth, w))); min 126 Source/core/rendering/RenderScrollbarPart.cpp setHeight(max(minHeight, min(maxHeight, h))); min 31 Source/core/rendering/RenderSlider.cpp using std::min; min 78 Source/core/rendering/RenderSlider.cpp m_maxPreferredLogicalWidth = min(m_maxPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(style()->maxWidth().value())); min 79 Source/core/rendering/RenderSlider.cpp m_minPreferredLogicalWidth = min(m_minPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(style()->maxWidth().value())); min 284 Source/core/rendering/RenderTable.cpp setLogicalWidth(min<int>(availableContentLogicalWidth, maxPreferredLogicalWidth())); min 291 Source/core/rendering/RenderTable.cpp setLogicalWidth(min<int>(logicalWidth(), computedMaxLogicalWidth)); min 496 Source/core/rendering/RenderTable.cpp movedSectionLogicalTop = min(logicalHeight(), oldTableLogicalTop); min 517 Source/core/rendering/RenderTable.cpp computedLogicalHeight = min(computedLogicalHeight, computedMaxLogicalHeight); min 546 Source/core/rendering/RenderTable.cpp movedSectionLogicalTop = min(logicalHeight(), section->logicalTop()) + (style()->isHorizontalWritingMode() ? section->visualOverflowRect().y() : section->visualOverflowRect().x()); min 794 Source/core/rendering/RenderTable.cpp m_maxPreferredLogicalWidth = std::min(m_maxPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(styleToUse->logicalMaxWidth().value())); min 79 Source/core/rendering/RenderTableCell.cpp return min<unsigned>(toHTMLTableCellElement(*node()).colSpan(), maxColumnIndex); min 87 Source/core/rendering/RenderTableCell.cpp return min<unsigned>(toHTMLTableCellElement(*node()).rowSpan(), maxRowIndex); min 306 Source/core/rendering/RenderTableSection.cpp int percent = min(totalPercent, 100); min 319 Source/core/rendering/RenderTableSection.cpp toAdd = min(toAdd, extraRowSpanningHeight); min 788 Source/core/rendering/RenderTableSection.cpp totalPercent = min(totalPercent, 100); min 792 Source/core/rendering/RenderTableSection.cpp int toAdd = min<int>(extraLogicalHeight, (totalHeight * m_grid[r].logicalHeight.percent() / 100) - rowHeight); min 330 Source/core/rendering/RenderText.cpp unsigned realEnd = min(box->end() + 1, end); min 358 Source/core/rendering/RenderText.cpp start = min(start, static_cast<unsigned>(INT_MAX)); min 359 Source/core/rendering/RenderText.cpp end = min(end, static_cast<unsigned>(INT_MAX)); min 397 Source/core/rendering/RenderText.cpp int ellipsisEndPosition = min<int>(endPos - box->start(), box->len()); min 441 Source/core/rendering/RenderText.cpp start = min(start, static_cast<unsigned>(INT_MAX)); min 442 Source/core/rendering/RenderText.cpp end = min(end, static_cast<unsigned>(INT_MAX)); min 631 Source/core/rendering/RenderText.cpp LayoutUnit top = min(rootBox.selectionTop(), rootBox.lineTop()); min 635 Source/core/rendering/RenderText.cpp bottom = min(bottom, rootBox.nextRootBox()->lineTop()); min 691 Source/core/rendering/RenderText.cpp leftEdge = min<float>(0, rootLeft); min 716 Source/core/rendering/RenderText.cpp left = min(left, rootRight - caretWidth); min 718 Source/core/rendering/RenderText.cpp left = min(left, rightEdge - caretWidthRightOfOffset); min 1034 Source/core/rendering/RenderText.cpp j = min(j, run->stop() + 1); min 1572 Source/core/rendering/RenderText.cpp LayoutUnit logicalRightSide = LayoutUnit::min(); min 1574 Source/core/rendering/RenderText.cpp logicalLeftSide = min(logicalLeftSide, curr->logicalLeftVisualOverflow()); min 1657 Source/core/rendering/RenderText.cpp minOffset = min<int>(minOffset, box->start()); min 269 Source/core/rendering/RenderTextControl.cpp m_maxPreferredLogicalWidth = min(m_maxPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(style()->logicalMaxWidth().value())); min 270 Source/core/rendering/RenderTextControl.cpp m_minPreferredLogicalWidth = min(m_minPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(style()->logicalMaxWidth().value())); min 876 Source/core/rendering/RenderTheme.cpp double min = input->minimum(); min 933 Source/core/rendering/RenderTheme.cpp double tickFraction = (parsedValue - min) / (max - min); min 148 Source/core/rendering/RenderThemeChromiumSkia.cpp width = std::min(original.width(), width); min 149 Source/core/rendering/RenderThemeChromiumSkia.cpp height = std::min(original.height(), height); min 205 Source/core/rendering/RenderThemeChromiumSkia.cpp int cancelButtonSize = lroundf(std::min(std::max(minCancelButtonSize, defaultCancelButtonSize * fontScale), maxCancelButtonSize)); min 235 Source/core/rendering/RenderThemeChromiumSkia.cpp LayoutUnit cancelButtonSize = std::min(inputContentBox.width(), std::min<LayoutUnit>(inputContentBox.height(), r.height())); min 261 Source/core/rendering/RenderThemeChromiumSkia.cpp int magnifierSize = lroundf(std::min(std::max(minSearchFieldResultsDecorationSize, defaultSearchFieldResultsDecorationSize * fontScale), min 280 Source/core/rendering/RenderThemeChromiumSkia.cpp LayoutUnit magnifierSize = std::min(inputContentBox.width(), std::min<LayoutUnit>(inputContentBox.height(), r.height())); min 286 Source/core/rendering/RootInlineBox.cpp LayoutUnit highestAllowedPosition = prevRootBox() ? min(prevRootBox()->lineBottom(), lineTop()) + result : static_cast<LayoutUnit>(block().borderBefore()); min 479 Source/core/rendering/RootInlineBox.cpp return !block().style()->isFlippedBlocksWritingMode() ? max(lineTop(), selectionTop()) : min(lineBottom(), selectionBottom()); min 591 Source/core/rendering/RootInlineBox.cpp lineLayoutOverflow.shiftXEdgeTo(min<LayoutUnit>(lineLayoutOverflow.x(), logicalLeft() - endPadding)); min 596 Source/core/rendering/RootInlineBox.cpp lineLayoutOverflow.shiftYEdgeTo(min<LayoutUnit>(lineLayoutOverflow.y(), logicalLeft() - endPadding)); min 697 Source/core/rendering/RootInlineBox.cpp glyphOverflow->top = min(glyphOverflow->top, max(0, glyphOverflow->top - box->renderer().style(isFirstLineStyle())->fontMetrics().ascent(baselineType()))); min 698 Source/core/rendering/RootInlineBox.cpp glyphOverflow->bottom = min(glyphOverflow->bottom, max(0, glyphOverflow->bottom - box->renderer().style(isFirstLineStyle())->fontMetrics().descent(baselineType()))); min 258 Source/core/rendering/TextAutosizer.cpp float logicalClusterWidth = std::min<float>(textWidth, logicalLayoutWidth); min 68 Source/core/rendering/line/LineLayoutState.h m_repaintLogicalTop = std::min(m_repaintLogicalTop, box->logicalTopVisualOverflow() + std::min<LayoutUnit>(paginationDelta, 0)); min 95 Source/core/rendering/line/LineWidth.cpp m_right = std::min<float>(m_right, newRight); min 113 Source/core/rendering/line/LineWidth.cpp startOverhang = std::min<int>(startOverhang, m_committedWidth); min 116 Source/core/rendering/line/LineWidth.cpp endOverhang = std::max(std::min<int>(endOverhang, m_availableWidth - currentWidth()), 0); min 71 Source/core/rendering/shapes/BoxShape.cpp float bottomCornerMinY = std::min<float>(marginBounds.bottomLeftCorner().y(), marginBounds.bottomRightCorner().y()); min 84 Source/core/rendering/shapes/BoxShape.cpp x1 = std::min<float>(x1, minXIntercept); min 89 Source/core/rendering/shapes/BoxShape.cpp x1 = std::min<float>(x1, minXIntercept); min 89 Source/core/rendering/shapes/RasterShape.cpp int marginY1 = std::min(maxY(), y + shapeMargin); min 130 Source/core/rendering/shapes/RasterShape.cpp m_marginIntervals = m_intervals->computeShapeMarginIntervals(std::min(shapeMarginInt, maxShapeMarginInt)); min 148 Source/core/rendering/shapes/RasterShape.cpp y2 = std::min(y2, intervals.bounds().maxY()); min 195 Source/core/rendering/shapes/Shape.cpp int maxBufferY = std::min(imageRect.height(), marginRect.maxY() - imageRect.y()); min 153 Source/core/rendering/shapes/ShapeInfo.cpp getIntervals((lineTop - logicalTopOffset()), std::min(lineHeight, shapeLogicalBottom() - lineTop), segments); min 85 Source/core/rendering/shapes/ShapeInterval.h return ShapeInterval<T>(std::max<T>(x1(), interval.x1()), std::min<T>(x2(), interval.x2())); min 217 Source/core/rendering/shapes/ShapeInterval.h set(std::min<T>(x1(), interval.x1()), std::max<T>(x2(), interval.x2())); min 104 Source/core/rendering/style/BasicShapes.cpp return std::min(std::min(center.x(), boxSize.width() - center.x()), std::min(center.y(), boxSize.height() - center.y())); min 149 Source/core/rendering/style/BasicShapes.cpp return std::min(center, boxWidthOrHeight - center); min 98 Source/core/rendering/style/GridCoordinate.h size_t gridLineIndex = std::min(gridLines.size() - 1, firstLineAfterOppositePositionIndex + position.spanPosition() - 1); min 1258 Source/core/rendering/style/RenderStyle.cpp size = min(maximumAllowedFontSize, size); min 1268 Source/core/rendering/style/RenderStyle.cpp desc.setComputedSize(min(maximumAllowedFontSize, autosizedFontSize)); min 1298 Source/core/rendering/style/RenderStyle.cpp top = min<LayoutUnit>(top, shadow.y() - blurAndSpread); min 1301 Source/core/rendering/style/RenderStyle.cpp left = min<LayoutUnit>(left, shadow.x() - blurAndSpread); min 1319 Source/core/rendering/style/RenderStyle.cpp right = min<LayoutUnit>(right, shadow.x() - blurAndSpread); min 1320 Source/core/rendering/style/RenderStyle.cpp bottom = min<LayoutUnit>(bottom, shadow.y() - blurAndSpread); min 1339 Source/core/rendering/style/RenderStyle.cpp left = min<LayoutUnit>(left, shadow.x() - blurAndSpread); min 1356 Source/core/rendering/style/RenderStyle.cpp top = min<LayoutUnit>(top, shadow.y() - blurAndSpread); min 1642 Source/core/rendering/style/RenderStyle.cpp factor = std::min(rect.width() / radiiSum, factor); min 1647 Source/core/rendering/style/RenderStyle.cpp factor = std::min(rect.width() / radiiSum, factor); min 1652 Source/core/rendering/style/RenderStyle.cpp factor = std::min(rect.height() / radiiSum, factor); min 1657 Source/core/rendering/style/RenderStyle.cpp factor = std::min(rect.height() / radiiSum, factor); min 1256 Source/core/rendering/style/RenderStyle.h void setOrder(int o) { SET_VAR(rareNonInheritedData, m_order, max(std::numeric_limits<int>::min() + 2, o)); } min 47 Source/core/rendering/style/ShadowList.cpp shadowLeft = std::min(shadow.x() - blurAndSpread, shadowLeft); min 49 Source/core/rendering/style/ShadowList.cpp shadowTop = std::min(shadow.y() - blurAndSpread, shadowTop); min 150 Source/core/rendering/svg/SVGInlineTextBox.cpp endPosition = min(endPosition - boxStart, static_cast<int>(len())); min 712 Source/core/rendering/svg/SVGInlineTextBox.cpp int markerEndPosition = min<int>(marker->endOffset() - textBox->start(), textBox->len()); min 130 Source/core/svg/SVGGradientElement.cpp offset = std::min(std::max(previousOffset, offset), 1.0f); min 406 Source/core/svg/animation/SMILTimeContainer.cpp earliestFireTime = min(nextFireTime, earliestFireTime); min 792 Source/core/svg/animation/SVGSMILElement.cpp return min(dur(), SMILTime::indefinite()); min 864 Source/core/svg/animation/SVGSMILElement.cpp return min(repeatCountDuration, min(repeatDur, SMILTime::indefinite())); min 877 Source/core/svg/animation/SVGSMILElement.cpp preliminaryActiveDuration = min(repeatingDuration(), resolvedEnd - resolvedBegin); min 887 Source/core/svg/animation/SVGSMILElement.cpp return resolvedBegin + min(maxValue, max(minValue, preliminaryActiveDuration)); min 937 Source/core/svg/animation/SVGSMILElement.cpp m_nextProgressTime = min(m_nextProgressTime, m_intervalBegin); min 955 Source/core/svg/animation/SVGSMILElement.cpp m_nextProgressTime = min(m_nextProgressTime, m_intervalBegin); min 216 Source/core/testing/Internals.h void setDeviceProximity(Document*, const String& eventType, double value, double min, double max, ExceptionState&); min 58 Source/core/xml/XPathFunctions.cpp Interval(int min, int max); min 275 Source/core/xml/XPathFunctions.cpp inline Interval::Interval(int min, int max) min 276 Source/core/xml/XPathFunctions.cpp : m_min(min), m_max(max) min 60 Source/core/xml/parser/SharedBufferReader.cpp unsigned lenToCopy = std::min(askedToRead, bytesLeft); min 68 Source/core/xml/parser/SharedBufferReader.cpp segmentSize = std::min(segmentSize, lenToCopy - bytesCopied); min 97 Source/devtools/scripts/compiler-runner/src/org/chromium/devtools/compiler/Runner.java Math.min(descriptors.size(), Runtime.getRuntime().availableProcessors() / 2 + 1)); min 19 Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/JsDocValidator.java int threadCount = Math.min(args.length, Runtime.getRuntime().availableProcessors()); min 75 Source/modules/indexeddb/IDBKey.cpp if (int result = memcmp(m_binary->data(), other->m_binary->data(), std::min(m_binary->size(), other->m_binary->size()))) min 234 Source/modules/webaudio/AudioBufferSourceNode.cpp virtualEndFrame = min(loopEndFrame, virtualEndFrame); min 264 Source/modules/webaudio/AudioBufferSourceNode.cpp int framesThisTime = min(framesToProcess, framesToEnd); min 407 Source/modules/webaudio/AudioBufferSourceNode.cpp grainOffset = min(bufferDuration, grainOffset); min 413 Source/modules/webaudio/AudioBufferSourceNode.cpp grainDuration = min(maxDuration, grainDuration); min 456 Source/modules/webaudio/AudioBufferSourceNode.cpp totalRate = min(MaxRate, totalRate); min 166 Source/modules/webaudio/AudioNodeInput.cpp maxChannels = min(maxChannels, static_cast<unsigned>(node()->channelCount())); min 202 Source/modules/webaudio/AudioParamTimeline.cpp double fillToTime = min(endTime, firstEventTime); min 204 Source/modules/webaudio/AudioParamTimeline.cpp fillToFrame = min(fillToFrame, numberOfValues); min 235 Source/modules/webaudio/AudioParamTimeline.cpp double fillToTime = min(endTime, time2); min 237 Source/modules/webaudio/AudioParamTimeline.cpp fillToFrame = min(fillToFrame, numberOfValues); min 329 Source/modules/webaudio/AudioParamTimeline.cpp fillToTime = min(endTime, time1 + duration); min 331 Source/modules/webaudio/AudioParamTimeline.cpp fillToFrame = min(fillToFrame, numberOfValues); min 97 Source/modules/webaudio/AudioScheduledSourceNode.cpp quantumFrameOffset = min(quantumFrameOffset, quantumFrameSize); // clamp to valid range min 105 Source/modules/webaudio/BiquadFilterNode.cpp int n = std::min(frequencyHz->length(), min 106 Source/modules/webaudio/BiquadFilterNode.cpp std::min(magResponse->length(), phaseResponse->length())); min 124 Source/modules/webaudio/OfflineAudioDestinationNode.cpp size_t framesAvailableToCopy = min(framesToProcess, renderQuantumSize); min 413 Source/modules/webaudio/PannerNode.cpp listenerProjection = min(listenerProjection, scaledSpeedOfSound); min 414 Source/modules/webaudio/PannerNode.cpp sourceProjection = min(sourceProjection, scaledSpeedOfSound); min 114 Source/modules/webaudio/PeriodicWave.cpp pitchRange = std::min(pitchRange, static_cast<float>(m_numberOfRanges - 1)); min 159 Source/modules/webaudio/PeriodicWave.cpp numberOfComponents = std::min(numberOfComponents, halfSize); min 185 Source/modules/webaudio/RealtimeAnalyser.cpp k = min(1.0, k); min 209 Source/modules/webaudio/RealtimeAnalyser.cpp size_t len = min(sourceLength, destinationArray->length()); min 233 Source/modules/webaudio/RealtimeAnalyser.cpp size_t len = min(sourceLength, destinationArray->length()); min 267 Source/modules/webaudio/RealtimeAnalyser.cpp size_t len = min(fftSize, destinationArray->length()); min 296 Source/modules/webaudio/RealtimeAnalyser.cpp size_t len = min(fftSize, destinationArray->length()); min 113 Source/modules/webaudio/WaveShaperDSPKernel.cpp index1 = min(index1, curveLength - 1); min 115 Source/modules/webaudio/WaveShaperDSPKernel.cpp index2 = min(index2, curveLength - 1); min 281 Source/modules/websockets/NewWebSocketChannelImpl.cpp size_t size = std::min(static_cast<size_t>(m_sendingQuota), message.text.length() - m_sentSizeOfTopMessage); min 295 Source/modules/websockets/NewWebSocketChannelImpl.cpp size_t size = std::min(static_cast<size_t>(m_sendingQuota), message.arrayBuffer->byteLength() - m_sentSizeOfTopMessage); min 420 Source/platform/CheckedInt.h const T min = MinValue<T>::value; min 428 Source/platform/CheckedInt.h : y >= min / x; min 433 Source/platform/CheckedInt.h ? x >= min / y min 574 Source/platform/Decimal.cpp int exponent = std::min(lhsExponent, rhsExponent); min 626 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(UINT64_C(22250738585072014), -324, Positive), Decimal::fromDouble(std::numeric_limits<double>::min())); min 627 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(UINT64_C(22250738585072014), -324, Negative), Decimal::fromDouble(-std::numeric_limits<double>::min())); min 642 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(0x80000000u, 0, Negative), Decimal(std::numeric_limits<int32_t>::min())); min 104 Source/platform/LayoutUnit.h return nextafterf(floatValue, std::numeric_limits<float>::min()); min 123 Source/platform/LayoutUnit.h REPORT_OVERFLOW(value > std::numeric_limits<int>::min() && value < std::numeric_limits<int>::max()); min 175 Source/platform/LayoutUnit.h || rawValue() == std::numeric_limits<int>::min(); min 186 Source/platform/LayoutUnit.h static const LayoutUnit min() min 189 Source/platform/LayoutUnit.h m.m_value = std::numeric_limits<int>::min(); min 203 Source/platform/LayoutUnit.h m.m_value = std::numeric_limits<int>::min() + kFixedPointDenominator / 2; min 209 Source/platform/LayoutUnit.h return clampTo<LayoutUnit>(value, LayoutUnit::min(), LayoutUnit::max()); min 231 Source/platform/LayoutUnit.h m_value = std::numeric_limits<int>::min(); min 796 Source/platform/LayoutUnit.h inline LayoutUnit clampToLayoutUnit(LayoutUnit value, LayoutUnit min, LayoutUnit max) min 800 Source/platform/LayoutUnit.h if (value <= min) min 801 Source/platform/LayoutUnit.h return min; min 90 Source/platform/SharedBuffer.cpp unsigned snippetLength = std::min(sharedBuffer->size(), kMaxSnippetLength); min 96 Source/platform/SharedBuffer.cpp unsigned length = std::min(segmentLength, snippetLength - offset); min 269 Source/platform/SharedBuffer.cpp unsigned bytesToCopy = min(length, segmentFreeSpace); min 280 Source/platform/SharedBuffer.cpp bytesToCopy = min(length, segmentSize); min 324 Source/platform/SharedBuffer.cpp unsigned bytesToCopy = min(bytesLeft, segmentSize); min 355 Source/platform/SharedBuffer.cpp unsigned segmentedSize = min(maxSegmentedSize, bytesLeft); min 97 Source/platform/animation/TimingFunction.cpp return std::min(1.0, floor((m_steps * fraction) + startOffset) / m_steps); min 118 Source/platform/audio/AudioDelayDSPKernel.cpp delayTime = min(maxTime, delayTime); min 130 Source/platform/audio/AudioDelayDSPKernel.cpp delayTime = std::min(maxTime, delayTime); min 115 Source/platform/audio/AudioResampler.cpp m_rate = min(AudioResampler::MaxRate, rate); min 84 Source/platform/audio/AudioResamplerKernel.cpp rate = min(AudioResampler::MaxRate, rate); min 212 Source/platform/audio/Biquad.cpp cutoff = std::max(0.0, std::min(cutoff, 1.0)); min 248 Source/platform/audio/Biquad.cpp cutoff = std::max(0.0, std::min(cutoff, 1.0)); min 310 Source/platform/audio/Biquad.cpp frequency = std::max(0.0, std::min(frequency, 1.0)); min 345 Source/platform/audio/Biquad.cpp frequency = std::max(0.0, std::min(frequency, 1.0)); min 380 Source/platform/audio/Biquad.cpp frequency = std::max(0.0, std::min(frequency, 1.0)); min 418 Source/platform/audio/Biquad.cpp frequency = std::max(0.0, std::min(frequency, 1.0)); min 454 Source/platform/audio/Biquad.cpp frequency = std::max(0.0, std::min(frequency, 1.0)); min 55 Source/platform/audio/Distance.cpp distance = min(distance, m_maxDistance); min 327 Source/platform/audio/DynamicsCompressorKernel.cpp x = min(0.0f, x); min 410 Source/platform/audio/DynamicsCompressorKernel.cpp detectorAverage = min(1.0f, detectorAverage); min 425 Source/platform/audio/DynamicsCompressorKernel.cpp compressorGain = min(1.0f, compressorGain); min 76 Source/platform/audio/EqualPowerPanner.cpp azimuth = min(180.0, azimuth); min 115 Source/platform/audio/HRTFDatabase.cpp elevationAngle = min(static_cast<double>(MaxElevation), elevationAngle); min 252 Source/platform/audio/HRTFElevation.cpp int actualElevation = min(elevation, maxElevation); min 83 Source/platform/audio/HRTFKernel.cpp size_t truncatedResponseLength = min(responseLength, fftSize / 2); // truncate if necessary to max impulse response length allowed by FFT min 119 Source/platform/audio/HRTFKernel.cpp x = min(1.0f, max(0.0f, x)); min 117 Source/platform/audio/HRTFPanner.cpp desiredAzimuthIndex = min(numberOfAzimuths - 1, desiredAzimuthIndex); min 58 Source/platform/audio/ReverbAccumulationBuffer.cpp size_t numberOfFrames1 = std::min(numberOfFrames, framesAvailable); min 91 Source/platform/audio/ReverbAccumulationBuffer.cpp size_t numberOfFrames1 = std::min(numberOfFrames, framesAvailable); min 82 Source/platform/audio/ReverbConvolverStage.cpp int maxPreDelayLength = std::min(halfSize, totalDelay); min 167 Source/platform/audio/SincResampler.cpp size_t framesToCopy = min(m_sourceFramesAvailable, framesToProcess); min 194 Source/platform/audio/SincResampler.cpp unsigned framesThisTime = min(remaining, m_blockSize); min 688 Source/platform/audio/VectorMath.cpp *destP = std::max(std::min(*sourceP, highThreshold), lowThreshold); min 43 Source/platform/exported/WebFloatQuad.cpp int left = static_cast<int>(floorf(min(min(min(p[0].x, p[1].x), p[2].x), p[3].x))); min 44 Source/platform/exported/WebFloatQuad.cpp int top = static_cast<int>(floorf(min(min(min(p[0].y, p[1].y), p[2].y), p[3].y))); min 116 Source/platform/exported/WebImageSkia.cpp for (size_t i = 0; i < std::min(frameCount, maxFrameCount); ++i) { min 43 Source/platform/fonts/GlyphPageTreeNode.cpp using std::min; min 226 Source/platform/fonts/GlyphPageTreeNode.cpp int to = 1 + min(static_cast<int>(range.to()) - static_cast<int>(start), static_cast<int>(GlyphPage::size) - 1); min 49 Source/platform/fonts/WidthIterator.cpp , m_maxGlyphBoundingBoxY(numeric_limits<float>::min()) min 303 Source/platform/fonts/WidthIterator.cpp m_minGlyphBoundingBoxY = min(m_minGlyphBoundingBoxY, bounds.y()); min 131 Source/platform/fonts/harfbuzz/FontHarfBuzz.cpp unsigned chunkLength = std::min(kMaxBufferLength, numGlyphs - glyphIndex); min 387 Source/platform/fonts/harfbuzz/HarfBuzzShaper.cpp , m_glyphBoundingBox(std::numeric_limits<float>::max(), std::numeric_limits<float>::min(), std::numeric_limits<float>::min(), std::numeric_limits<float>::max()) min 75 Source/platform/fonts/mac/ComplexTextController.cpp , m_maxGlyphBoundingBoxX(numeric_limits<float>::min()) min 77 Source/platform/fonts/mac/ComplexTextController.cpp , m_maxGlyphBoundingBoxY(numeric_limits<float>::min()) min 476 Source/platform/fonts/mac/ComplexTextController.cpp m_characterInCurrentGlyph = min(m_currentCharacter - complexTextRun.stringLocation(), glyphEndOffset) - glyphStartOffset; min 533 Source/platform/fonts/mac/ComplexTextController.cpp CFIndex lastCharacterIndex = m_run.ltr() ? numeric_limits<CFIndex>::min() : numeric_limits<CFIndex>::max(); min 654 Source/platform/fonts/mac/ComplexTextController.cpp m_minGlyphBoundingBoxX = min(m_minGlyphBoundingBoxX, glyphBounds.x()); min 656 Source/platform/fonts/mac/ComplexTextController.cpp m_minGlyphBoundingBoxY = min(m_minGlyphBoundingBoxY, glyphBounds.y()); min 80 Source/platform/geometry/FloatBoxExtent.h m_top = std::min(m_top, other.top()); min 83 Source/platform/geometry/FloatBoxExtent.h m_left = std::min(m_left, other.left()); min 88 Source/platform/geometry/FloatBoxExtent.h m_top = std::min(m_top, rect.y()); min 91 Source/platform/geometry/FloatBoxExtent.h m_left = std::min(m_left, rect.x()); min 54 Source/platform/geometry/FloatPolygon.cpp return point.x() >= std::min(vertex1.x(), vertex2.x()) min 90 Source/platform/geometry/FloatPolygon.h float minX() const { return std::min(vertex1().x(), vertex2().x()); } min 91 Source/platform/geometry/FloatPolygon.h float minY() const { return std::min(vertex1().y(), vertex2().y()); } min 43 Source/platform/geometry/FloatQuad.cpp return min(min(a, b), min(c, d)); min 90 Source/platform/geometry/FloatRect.cpp float right = std::min(maxX(), other.maxX()); min 91 Source/platform/geometry/FloatRect.cpp float bottom = std::min(maxY(), other.maxY()); min 119 Source/platform/geometry/FloatRect.cpp float minX = std::min(x(), other.x()); min 120 Source/platform/geometry/FloatRect.cpp float minY = std::min(y(), other.y()); min 142 Source/platform/geometry/FloatRect.cpp float minX = std::min(x(), p.x()); min 143 Source/platform/geometry/FloatRect.cpp float minY = std::min(y(), p.y()); min 171 Source/platform/geometry/FloatRect.cpp float left = std::min(p0.x(), p1.x()); min 172 Source/platform/geometry/FloatRect.cpp float top = std::min(p0.y(), p1.y()); min 185 Source/platform/geometry/FloatRect.cpp return std::min(std::min(v1, v2), v3); min 197 Source/platform/geometry/FloatRect.cpp return std::min(std::min(v1, v2), std::min(v3, v4)); min 67 Source/platform/geometry/IntRect.cpp int right = std::min(maxX(), other.maxX()); min 68 Source/platform/geometry/IntRect.cpp int bottom = std::min(maxY(), other.maxY()); min 94 Source/platform/geometry/IntRect.cpp int left = std::min(x(), other.x()); min 95 Source/platform/geometry/IntRect.cpp int top = std::min(y(), other.y()); min 115 Source/platform/geometry/IntRect.cpp int left = std::min(x(), other.x()); min 116 Source/platform/geometry/IntRect.cpp int top = std::min(y(), other.y()); min 72 Source/platform/geometry/LayoutPoint.h return LayoutPoint(std::min(m_x, other.m_x), std::min(m_y, other.m_y)); min 63 Source/platform/geometry/LayoutRect.cpp LayoutPoint newMaxPoint(std::min(maxX(), other.maxX()), std::min(maxY(), other.maxY())); min 85 Source/platform/geometry/LayoutRect.cpp LayoutPoint newLocation(std::min(x(), other.x()), std::min(y(), other.y())); min 102 Source/platform/geometry/LayoutRect.cpp LayoutPoint newLocation(std::min(x(), other.x()), std::min(y(), other.y())); min 346 Source/platform/geometry/Region.cpp int maxX = std::numeric_limits<int>::min(); min 53 Source/platform/graphics/Color.cpp return 0xFF000000 | max(0, min(r, 255)) << 16 | max(0, min(g, 255)) << 8 | max(0, min(b, 255)); min 58 Source/platform/graphics/Color.cpp return max(0, min(a, 255)) << 24 | max(0, min(r, 255)) << 16 | max(0, min(g, 255)) << 8 | max(0, min(b, 255)); min 64 Source/platform/graphics/Color.cpp return max(0, min(static_cast<int>(lroundf(255.0f * f)), 255)); min 302 Source/platform/graphics/Color.cpp float multiplier = min(1.0f, v + 0.33f) / v; min 411 Source/platform/graphics/Color.cpp double min = std::min(std::min(r, g), b); min 413 Source/platform/graphics/Color.cpp if (max == min) min 416 Source/platform/graphics/Color.cpp hue = (60.0 * ((g - b) / (max - min))) + 360.0; min 418 Source/platform/graphics/Color.cpp hue = (60.0 * ((b - r) / (max - min))) + 120.0; min 420 Source/platform/graphics/Color.cpp hue = (60.0 * ((r - g) / (max - min))) + 240.0; min 428 Source/platform/graphics/Color.cpp lightness = 0.5 * (max + min); min 429 Source/platform/graphics/Color.cpp if (max == min) min 432 Source/platform/graphics/Color.cpp saturation = ((max - min) / (max + min)); min 434 Source/platform/graphics/Color.cpp saturation = ((max - min) / (2.0 - (max + min))); min 51 Source/platform/graphics/ColorSpace.cpp color = std::min(1.0f, color); min 68 Source/platform/graphics/ColorSpace.cpp color = std::min(1.0f, color); min 682 Source/platform/graphics/GraphicsContext.cpp holeRect.setWidth(holeRect.width() - min(shadowOffset.width(), 0) + shadowBlur); min 684 Source/platform/graphics/GraphicsContext.cpp holeRect.setHeight(holeRect.height() - min(shadowOffset.height(), 0) + shadowBlur); min 1839 Source/platform/graphics/GraphicsContext.cpp int count = std::min(bitmap->width() - x, 8); min 934 Source/platform/graphics/GraphicsLayer.cpp float clampedOpacity = std::max(std::min(opacity, 1.0f), 0.0f); min 94 Source/platform/graphics/Pattern.cpp m_externalMemoryAllocated = static_cast<int>(std::min(static_cast<size_t>(INT_MAX), bm2.getSafeSize())); min 51 Source/platform/graphics/cpu/arm/filters/FEGaussianBlurNEON.h int maxKernelSize = std::min(dxRight, effectWidth); min 90 Source/platform/graphics/filters/FEBlend.cpp return fastDivideBy255(std::min((255 - alphaA) * colorB + colorA * 255, (255 - alphaB) * colorA + colorB * 255)); min 112 Source/platform/graphics/filters/FEComponentTransfer.cpp double v2 = tableValues[std::min((k + 1), (n - 1))]; min 114 Source/platform/graphics/filters/FEComponentTransfer.cpp val = std::max(0.0, std::min(255.0, val)); min 127 Source/platform/graphics/filters/FEComponentTransfer.cpp k = std::min(k, n - 1); min 129 Source/platform/graphics/filters/FEComponentTransfer.cpp val = std::max(0.0, std::min(255.0, val)); min 138 Source/platform/graphics/filters/FEComponentTransfer.cpp val = std::max(0.0, std::min(255.0, val)); min 148 Source/platform/graphics/filters/FEComponentTransfer.cpp val = std::max(0.0, std::min(255.0, val)); min 192 Source/platform/graphics/filters/FEComposite.cpp float lowerLimit = std::min(0.0f, k1) + std::min(0.0f, k2) + std::min(0.0f, k3) + k4; min 92 Source/platform/graphics/filters/FEGaussianBlur.cpp kernelSize.setWidth(min(size, gMaxKernelSize)); min 97 Source/platform/graphics/filters/FEGaussianBlur.cpp kernelSize.setHeight(min(size, gMaxKernelSize)); min 50 Source/platform/graphics/filters/FELighting.cpp , m_specularExponent(std::min(std::max(specularExponent, 1.0f), 128.0f)) min 97 Source/platform/graphics/filters/FESpecularLighting.cpp specularExponent = std::min(std::max(specularExponent, 1.0f), 128.0f); min 326 Source/platform/graphics/filters/FETurbulence.cpp turbulenceFunctionResult = std::max(std::min(turbulenceFunctionResult, 1.f), 0.f); min 83 Source/platform/graphics/filters/FilterOperations.cpp size_t commonSize = std::min(operations().size(), other.operations().size()); min 67 Source/platform/graphics/filters/ParallelJobs.h size_t numberOfJobs = std::max(static_cast<size_t>(2), std::min(requestedJobNumber, blink::Platform::current()->numberOfProcessors())); min 150 Source/platform/graphics/filters/SpotLightSource.cpp specularExponent = std::min(std::max(specularExponent, 1.0f), 128.0f); min 71 Source/platform/graphics/filters/SpotLightSource.h , m_specularExponent(std::min(std::max(specularExponent, 1.0f), 128.0f)) min 305 Source/platform/graphics/gpu/DrawingBuffer.cpp m_sampleCount = std::min(4, maxSampleCount); min 925 Source/platform/graphics/gpu/DrawingBuffer.cpp pixels[i + 0] = std::min(255, pixels[i + 0] * pixels[i + 3] / 255); min 926 Source/platform/graphics/gpu/DrawingBuffer.cpp pixels[i + 1] = std::min(255, pixels[i + 1] * pixels[i + 3] / 255); min 927 Source/platform/graphics/gpu/DrawingBuffer.cpp pixels[i + 2] = std::min(255, pixels[i + 2] * pixels[i + 3] / 255); min 248 Source/platform/graphics/skia/OpaqueRegionSkia.cpp rect.fLeft = std::min(rect.fLeft, points[i].fX); min 250 Source/platform/graphics/skia/OpaqueRegionSkia.cpp rect.fTop = std::min(rect.fTop, points[i].fY); min 39 Source/platform/image-decoders/ImageDecoder.cpp unsigned bytesToCopy = std::min(bufferLength - bytesExtracted, moreDataLength); min 598 Source/platform/image-decoders/bmp/BMPImageReader.cpp const int endX = std::min(m_coord.x() + count, m_parent->size().width()); min 153 Source/platform/image-decoders/gif/GIFImageDecoder.cpp const int xEnd = std::min(static_cast<int>(frameContext->xOffset() + width), size().width()); min 154 Source/platform/image-decoders/gif/GIFImageDecoder.cpp const int yEnd = std::min(static_cast<int>(frameContext->yOffset() + rowNumber + repeatCount), size().height()); min 318 Source/platform/image-decoders/jpeg/JPEGImageDecoder.cpp long bytesToSkip = std::min(numBytes, (long)src->pub.bytes_in_buffer); min 202 Source/platform/mhtml/MHTMLArchive.cpp size_t lineLength = std::min(encodedDataLength - index, maximumLineLength); min 145 Source/platform/scroll/ScrollAnimator.cpp return std::max(std::min(pos, maxScrollPos), minScrollPos); min 149 Source/platform/scroll/ScrollAnimatorNone.cpp double t1 = min(t, 1 / kTimeBase); min 154 Source/platform/scroll/ScrollAnimatorNone.cpp t1 = min(t - 1 / kTimeBase, 1 / kTimeBase); min 162 Source/platform/scroll/ScrollAnimatorNone.cpp t1 = min(t - 2 / kTimeBase, 0.5 / kTimeBase); min 236 Source/platform/scroll/ScrollAnimatorNone.cpp newPosition = max(min(newPosition, scrollableSize), 0.0f); min 273 Source/platform/scroll/ScrollAnimatorNone.cpp double minTimeLeft = m_releaseTime + min(parameters->m_repeatMinimumSustainTime, m_animationTime - m_releaseTime - attackTimeLeft); min 286 Source/platform/scroll/ScrollAnimatorNone.cpp double coastFactor = min(1., (fabs(remainingDelta) - minCoastDelta) / (maxCoastDelta - minCoastDelta)); min 289 Source/platform/scroll/ScrollAnimatorNone.cpp double coastMinTimeLeft = min(parameters->m_maximumCoastTime, minTimeLeft + coastCurve(parameters->m_coastTimeCurve, coastFactor) * (parameters->m_maximumCoastTime - minTimeLeft)); min 293 Source/platform/scroll/ScrollAnimatorNone.cpp double additionalReleaseTime = min(additionalTime, parameters->m_releaseTime / (parameters->m_releaseTime + parameters->m_repeatMinimumSustainTime) * additionalTime); min 301 Source/platform/scroll/ScrollAnimatorNone.cpp double releaseTimeLeft = min(timeLeft, m_releaseTime); min 196 Source/platform/scroll/ScrollableArea.h int clampScrollPosition(ScrollbarOrientation orientation, int pos) { return std::max(std::min(pos, maximumScrollPosition(orientation)), minimumScrollPosition(orientation)); } min 310 Source/platform/scroll/Scrollbar.cpp delta = min(trackLen - thumbLen - thumbPos, delta); min 91 Source/platform/scroll/ScrollbarThemeOverlay.cpp length = min(max(length, minimumThumbLength(scrollbar)), trackLen); min 59 Source/platform/speech/PlatformSpeechSynthesisUtterance.h void setVolume(float volume) { m_volume = std::max(std::min(1.0f, volume), 0.0f); } min 63 Source/platform/speech/PlatformSpeechSynthesisUtterance.h void setRate(float rate) { m_rate = std::max(std::min(10.0f, rate), 0.1f); } min 67 Source/platform/speech/PlatformSpeechSynthesisUtterance.h void setPitch(float pitch) { m_pitch = std::max(std::min(2.0f, pitch), 0.0f); } min 590 Source/platform/text/BidiResolver.h levelLow = std::min(run->level(), levelLow); min 59 Source/platform/text/SuffixTree.h int limit = std::min(m_depth, query.length()); min 100 Source/platform/text/SuffixTree.h unsigned limit = std::min(base + m_depth, text.length()); min 57 Source/platform/text/TextBreakIterator.cpp return std::min(stringLength, numGraphemeClusters); min 61 Source/platform/text/TextBreakIterator.cpp return std::min(stringLength, numGraphemeClusters); min 157 Source/platform/text/TextBreakIteratorICU.cpp int sizeToCopy = min(source->sizeOfStruct, destination->sizeOfStruct); min 247 Source/platform/text/TextBreakIteratorICU.cpp text->chunkOffset = min(offset <= numeric_limits<int32_t>::max() ? static_cast<int32_t>(offset) : 0, text->chunkLength); min 381 Source/platform/text/TextBreakIteratorICU.cpp text->chunkOffset = min(offset <= numeric_limits<int32_t>::max() ? static_cast<int32_t>(offset) : 0, text->chunkLength); min 404 Source/platform/text/TextBreakIteratorICU.cpp text->chunkOffset = min(offset <= numeric_limits<int32_t>::max() ? static_cast<int32_t>(offset) : 0, text->chunkLength); min 624 Source/platform/transforms/TransformationMatrix.cpp return min<float>(max<float>(f, (-LayoutUnit::max() / 2).toFloat()), (LayoutUnit::max() / 2).toFloat()); min 531 Source/web/FrameLoaderClientImpl.cpp offset = std::min(offset, webview->client()->historyForwardListCount()); min 190 Source/web/PageScaleConstraintsSet.cpp m_pageDefinedConstraints.minimumScale = std::min<float>(m_pageDefinedConstraints.minimumScale, m_pageDefinedConstraints.initialScale); min 648 Source/web/PopupListBox.cpp targetIndex = std::min(std::max(targetIndex, 0), numItems() - 1); min 759 Source/web/PopupListBox.cpp m_visibleRows = std::min(numItems(), maxVisibleRows); min 137 Source/web/PopupListBox.h void setBaseWidth(int width) { m_baseWidth = std::min(m_maxWindowWidth, width); } min 643 Source/web/WebInputEventConversion.cpp unsigned numberOfCharacters = std::min(event.keyEvent()->text().length(), static_cast<unsigned>(textLengthCap)); min 697 Source/web/WebInputEventConversion.cpp memcpy(keyIdentifier, event.keyIdentifier().ascii().data(), std::min(static_cast<unsigned>(keyIdentifierLengthCap), event.keyIdentifier().length())); min 702 Source/web/WebInputEventConversion.cpp unsigned numberOfTouches = std::min(touches->length(), static_cast<unsigned>(WebTouchEvent::touchesLengthCap)); min 1042 Source/web/WebViewImpl.cpp leftMargin = min(leftMargin, max(rightMargin, minimumMargin)); min 1087 Source/web/WebViewImpl.cpp scale = min(scale, legibleScale()); min 2538 Source/web/WebViewImpl.cpp newScroll.setX(textboxRectInDocumentCoordinates.x() - min<int>(idealLeftPadding, maxLeftPaddingKeepingBoxOnscreen)); min 2627 Source/web/WebViewImpl.cpp m_zoomLevel = max(min(zoomLevel, m_maximumZoomLevel), m_minimumZoomLevel); min 43 Source/web/tests/PopupContainerTest.cpp width = std::min(maxWidth, width); min 44 Source/web/tests/PopupContainerTest.cpp height = std::min(maxHeight, height); min 280 Source/web/tests/ScrollAnimatorNoneTest.cpp double releaseTimeLeft = min(timeLeft, m_data->m_releaseTime); min 310 Source/web/tests/ScrollAnimatorNoneTest.cpp double releaseTimeLeft = min(timeLeft, m_data->m_releaseTime); min 125 Source/wtf/ArrayBufferView.h *offset = std::min(buffer->byteLength(), *offset); min 127 Source/wtf/ArrayBufferView.h *numElements = std::min(remainingElements, *numElements); min 132 Source/wtf/CheckedArithmetic.h return std::numeric_limits<Target>::min() <= value && value <= std::numeric_limits<Target>::max(); min 249 Source/wtf/CheckedArithmetic.h ResultType temp = lhs - std::numeric_limits<ResultType>::min(); min 280 Source/wtf/CheckedArithmetic.h if (static_cast<ResultType>(lhs) == std::numeric_limits<ResultType>::min() || static_cast<ResultType>(rhs) == std::numeric_limits<ResultType>::min()) min 287 Source/wtf/CheckedArithmetic.h if (rhs && lhs < (std::numeric_limits<ResultType>::min() / rhs)) min 290 Source/wtf/CheckedArithmetic.h if (lhs && rhs < (std::numeric_limits<ResultType>::min() / lhs)) min 342 Source/wtf/CheckedArithmetic.h if (temp < std::numeric_limits<ResultType>::min()) min 353 Source/wtf/CheckedArithmetic.h if (temp < std::numeric_limits<ResultType>::min()) min 364 Source/wtf/CheckedArithmetic.h if (temp < std::numeric_limits<ResultType>::min()) min 497 Source/wtf/CheckedArithmetic.h if (m_value == std::numeric_limits<T>::min()) min 513 Source/wtf/CheckedArithmetic.h if (m_value == std::numeric_limits<T>::min()) min 576 Source/wtf/CheckedArithmetic.h if (!(std::numeric_limits<T>::min() <= result && std::numeric_limits<T>::max() >= result)) min 40 Source/wtf/CheckedArithmeticTest.cpp EXPECT_EQ(std::numeric_limits<type>::min(), (value + std::numeric_limits<type>::min()).unsafeGet()); \ min 41 Source/wtf/CheckedArithmeticTest.cpp EXPECT_EQ(std::numeric_limits<type>::min(), (std::numeric_limits<type>::min() + value).unsafeGet()); \ min 62 Source/wtf/CheckedArithmeticTest.cpp value = std::numeric_limits<type>::min(); \ min 114 Source/wtf/CheckedArithmeticTest.cpp value = std::numeric_limits<type>::min(); \ min 126 Source/wtf/CheckedArithmeticTest.cpp value = std::numeric_limits<type>::min(); \ min 324 Source/wtf/DateMath.cpp return std::min(msToYear(jsCurrentTime()), maximumYearForDST() - 27) ; min 539 Source/wtf/DateMath.cpp if (string == *stopPosition || longResult <= std::numeric_limits<int>::min() || longResult >= std::numeric_limits<int>::max()) min 549 Source/wtf/DateMath.cpp if (string == *stopPosition || *result == std::numeric_limits<long>::min() || *result == std::numeric_limits<long>::max()) min 620 Source/wtf/DateMath.cpp if (day <= std::numeric_limits<int>::min() || day >= std::numeric_limits<int>::max()) min 222 Source/wtf/MathExtras.h template<typename T> inline T defaultMinimumForClamp() { return std::numeric_limits<T>::min(); } min 227 Source/wtf/MathExtras.h template<typename T> inline T clampTo(double value, T min = defaultMinimumForClamp<T>(), T max = defaultMaximumForClamp<T>()) min 231 Source/wtf/MathExtras.h if (value <= static_cast<double>(min)) min 232 Source/wtf/MathExtras.h return min; min 273 Source/wtf/MathExtras.h return x > static_cast<float>(std::numeric_limits<int>::min()) && x < static_cast<float>(std::numeric_limits<int>::max()); min 60 Source/wtf/MathExtrasTest.cpp long minInt = std::numeric_limits<int>::min(); min 77 Source/wtf/MathExtrasTest.cpp long long minInt = std::numeric_limits<int>::min(); min 97 Source/wtf/MathExtrasTest.cpp float minInt = std::numeric_limits<int>::min(); min 115 Source/wtf/MathExtrasTest.cpp double minInt = std::numeric_limits<int>::min(); min 64 Source/wtf/StreamBuffer.h size_t appendSize = std::min(BlockSize - m_buffer.last()->size(), size); min 79 Source/wtf/StringExtrasTest.cpp const IntegerType min = std::numeric_limits<IntegerType>::min(); min 80 Source/wtf/StringExtrasTest.cpp CString minStringData = String::number(min).latin1(); min 81 Source/wtf/StringExtrasTest.cpp snprintf(buffer.data(), bufferSize, PrintfFormatTrait<IntegerType>::format, min); min 73 Source/wtf/text/StringBuilder.cpp unsigned substringLength = std::min(length, m_length - position); min 93 Source/wtf/text/StringImpl.cpp size_t expectedLength = std::min(string->length(), kMaxSnippetLength); min 1122 Source/wtf/text/StringImpl.cpp return min(index, length()); min 1184 Source/wtf/text/StringImpl.cpp return min(index, length()); min 1282 Source/wtf/text/StringImpl.cpp return min(index, length()); min 1326 Source/wtf/text/StringImpl.cpp return min(index, length()); min 1381 Source/wtf/text/StringImpl.cpp unsigned delta = min(index, length - matchLength); min 1409 Source/wtf/text/StringImpl.cpp return min(index, ourLength); min 1438 Source/wtf/text/StringImpl.cpp unsigned delta = min(index, length - matchLength); min 1457 Source/wtf/text/StringImpl.cpp return min(index, ourLength); min 1591 Source/wtf/text/StringImpl.cpp position = min(position, length()); min 1592 Source/wtf/text/StringImpl.cpp lengthToReplace = min(lengthToReplace, length() - position); min 40 Source/wtf/text/TextCodecICU.cpp using std::min; min 454 Source/wtf/text/WTFString.cpp unsigned numCharacters = std::min(length - pos, maxLength); min 619 Source/wtf/text/WTFString.h unsigned numberOfCharactersToCopy = std::min(len, length() - pos); min 636 Source/wtf/text/WTFString.h unsigned numberOfCharactersToCopy = std::min(len, length() - pos); min 648 Source/wtf/text/WTFString.h unsigned numberOfCharactersToCopy = std::min(len, length() - pos); min 84 Source/wtf/text/WTFStringTest.cpp testNumberToStringECMAScript(Limits::min(), "2.2250738585072014e-308"); min 542 public/platform/Platform.h virtual void histogramCustomCounts(const char* name, int sample, int min, int max, int bucketCount) { }