remainder 141 Source/core/html/forms/BaseDateAndTimeInputType.cpp if (step.remainder(msecPerMinute).isZero()) remainder 143 Source/core/html/forms/BaseDateAndTimeInputType.cpp if (step.remainder(msecPerSecond).isZero()) remainder 568 Source/core/html/forms/BaseMultipleFieldsDateAndTimeInputType.cpp || !stepRange.minimum().remainder(static_cast<int>(msPerMinute)).isZero() remainder 569 Source/core/html/forms/BaseMultipleFieldsDateAndTimeInputType.cpp || !stepRange.step().remainder(static_cast<int>(msPerMinute)).isZero(); remainder 163 Source/core/html/forms/StepRange.cpp const Decimal remainder = (value - m_step * (value / m_step).round()).abs(); remainder 167 Source/core/html/forms/StepRange.cpp return computedAcceptableError < remainder && remainder < (m_step - computedAcceptableError); remainder 137 Source/core/html/shadow/DateTimeEditElement.cpp || !stepRange().minimum().remainder(static_cast<int>(msPerSecond)).isZero() remainder 138 Source/core/html/shadow/DateTimeEditElement.cpp || !stepRange().step().remainder(static_cast<int>(msPerSecond)).isZero(); remainder 359 Source/core/html/shadow/DateTimeEditElement.cpp Decimal hourPartOfMinimum = (stepRange().minimum().abs().remainder(decimalMsPerDay) / static_cast<int>(msPerHour)).floor(); remainder 360 Source/core/html/shadow/DateTimeEditElement.cpp return hourPartOfMinimum == m_dateValue.hour() && stepRange().step().remainder(decimalMsPerDay).isZero(); remainder 369 Source/core/html/shadow/DateTimeEditElement.cpp return stepRange().minimum().abs().remainder(decimalMsPerSecond) == m_dateValue.millisecond() && stepRange().step().remainder(decimalMsPerSecond).isZero(); remainder 378 Source/core/html/shadow/DateTimeEditElement.cpp Decimal minutePartOfMinimum = (stepRange().minimum().abs().remainder(decimalMsPerHour) / static_cast<int>(msPerMinute)).floor(); remainder 379 Source/core/html/shadow/DateTimeEditElement.cpp return minutePartOfMinimum == m_dateValue.minute() && stepRange().step().remainder(decimalMsPerHour).isZero(); remainder 388 Source/core/html/shadow/DateTimeEditElement.cpp Decimal secondPartOfMinimum = (stepRange().minimum().abs().remainder(decimalMsPerMinute) / static_cast<int>(msPerSecond)).floor(); remainder 389 Source/core/html/shadow/DateTimeEditElement.cpp return secondPartOfMinimum == m_dateValue.second() && stepRange().step().remainder(decimalMsPerMinute).isZero(); remainder 426 Source/core/html/shadow/DateTimeEditElement.cpp if (stepMilliseconds.remainder(msPerFieldSizeDecimal).isZero()) remainder 429 Source/core/html/shadow/DateTimeEditElement.cpp if (msPerFieldSizeDecimal.remainder(stepMilliseconds).isZero() && stepMilliseconds.remainder(msPerFieldUnitDecimal).isZero()) { remainder 431 Source/core/html/shadow/DateTimeEditElement.cpp step.stepBase = static_cast<int>((stepRange().stepBase() / msPerFieldUnitDecimal).floor().remainder(msPerFieldSizeDecimal / msPerFieldUnitDecimal).toDouble()); remainder 332 Source/core/rendering/RenderTableSection.cpp static void updatePositionIncreasedWithRowHeight(long long extraHeight, long long rowHeight, long long totalHeight, int& accumulatedPositionIncrease, int& remainder) remainder 337 Source/core/rendering/RenderTableSection.cpp remainder += (extraHeight * rowHeight) % totalHeight; remainder 348 Source/core/rendering/RenderTableSection.cpp int remainder = 0; remainder 354 Source/core/rendering/RenderTableSection.cpp updatePositionIncreasedWithRowHeight(extraRowSpanningHeight, rowsHeight[row - rowIndex], totalAutoRowsHeight, accumulatedPositionIncrease, remainder); remainder 360 Source/core/rendering/RenderTableSection.cpp if (remainder >= totalAutoRowsHeight) { remainder 361 Source/core/rendering/RenderTableSection.cpp remainder -= totalAutoRowsHeight; remainder 368 Source/core/rendering/RenderTableSection.cpp ASSERT(!remainder); remainder 381 Source/core/rendering/RenderTableSection.cpp int remainder = 0; remainder 387 Source/core/rendering/RenderTableSection.cpp updatePositionIncreasedWithRowHeight(extraRowSpanningHeight, rowsHeight[row - rowIndex], totalRemainingRowsHeight, accumulatedPositionIncrease, remainder); remainder 393 Source/core/rendering/RenderTableSection.cpp if (remainder >= totalRemainingRowsHeight) { remainder 394 Source/core/rendering/RenderTableSection.cpp remainder -= totalRemainingRowsHeight; remainder 401 Source/core/rendering/RenderTableSection.cpp ASSERT(!remainder); remainder 488 Source/platform/DateComponents.cpp double remainder = fmod(value, divider); remainder 489 Source/platform/DateComponents.cpp return remainder < 0 ? remainder + divider : remainder; remainder 167 Source/platform/Decimal.cpp uint32_t remainder = 0; remainder 169 Source/platform/Decimal.cpp const uint64_t work = makeUInt64(dividend[i], remainder); remainder 170 Source/platform/Decimal.cpp remainder = static_cast<uint32_t>(work % divisor); remainder 488 Source/platform/Decimal.cpp uint64_t remainder = lhs.m_data.coefficient(); remainder 492 Source/platform/Decimal.cpp while (remainder < divisor) { remainder 493 Source/platform/Decimal.cpp remainder *= 10; remainder 497 Source/platform/Decimal.cpp result += remainder / divisor; remainder 498 Source/platform/Decimal.cpp remainder %= divisor; remainder 499 Source/platform/Decimal.cpp if (!remainder) remainder 503 Source/platform/Decimal.cpp if (remainder > divisor / 2) remainder 138 Source/platform/Decimal.h Decimal remainder(const Decimal&) const; remainder 915 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(21, -1, Positive), encode(21, -1, Positive).remainder(3)); remainder 916 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal(1), Decimal(10).remainder(3)); remainder 917 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal(1), Decimal(10).remainder(-3)); remainder 918 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(1, 0, Negative), Decimal(-10).remainder(3)); remainder 919 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal(-1), Decimal(-10).remainder(-3)); remainder 920 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(2, -1, Positive), encode(102, -1, Positive).remainder(1)); remainder 921 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(1, -1, Positive), Decimal(10).remainder(encode(3, -1, Positive))); remainder 922 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal(1), encode(36, -1, Positive).remainder(encode(13, -1, Positive))); remainder 923 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(1, 87, Positive), (encode(1234, 100, Positive).remainder(Decimal(3)))); remainder 924 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal(500), (Decimal(500).remainder(1000))); remainder 925 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal(-500), (Decimal(-500).remainder(1000))); remainder 930 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(0, 1022, Positive), encode(1, 1022, Positive).remainder(encode(1, 0, Positive))); remainder 931 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(0, 1022, Positive), encode(1, 1022, Positive).remainder(encode(1, 1022, Positive))); remainder 932 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::infinity(Positive), encode(1, 1022, Positive).remainder(encode(1, -1000, Positive))); remainder 937 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(1, -1022, Positive), encode(1, -1022, Positive).remainder(encode(1, 0, Positive))); remainder 938 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(0, -1022, Positive), encode(1, -1022, Positive).remainder(encode(1, -1022, Positive))); remainder 943 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::infinity(Positive), Decimal::infinity(Positive).remainder(1)); remainder 944 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::infinity(Negative), Decimal::infinity(Negative).remainder(1)); remainder 945 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::nan(), Decimal::nan().remainder(1)); remainder 947 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::infinity(Negative), Decimal::infinity(Positive).remainder(-1)); remainder 948 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::infinity(Positive), Decimal::infinity(Negative).remainder(-1)); remainder 949 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::nan(), Decimal::nan().remainder(-1)); remainder 951 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::infinity(Positive), Decimal::infinity(Positive).remainder(3)); remainder 952 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::infinity(Negative), Decimal::infinity(Negative).remainder(3)); remainder 953 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::nan(), Decimal::nan().remainder(3)); remainder 955 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::infinity(Negative), Decimal::infinity(Positive).remainder(-1)); remainder 956 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::infinity(Positive), Decimal::infinity(Negative).remainder(-1)); remainder 957 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::nan(), Decimal::nan().remainder(-1)); remainder 959 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::nan(), Decimal(1).remainder(Decimal::infinity(Positive))); remainder 960 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::nan(), Decimal(1).remainder(Decimal::infinity(Negative))); remainder 961 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::nan(), Decimal(1).remainder(Decimal::nan())); remainder 64 Source/platform/fonts/WidthCache.h bool remainder = length & 1; remainder 75 Source/platform/fonts/WidthCache.h if (remainder) { remainder 96 Source/platform/graphics/StrokeData.cpp int remainder = distance % dashLength; remainder 100 Source/platform/graphics/StrokeData.cpp phase = dashLength - remainder / 2; remainder 103 Source/platform/graphics/StrokeData.cpp phase = (dashLength - remainder) / 2; remainder 43 Source/platform/graphics/cpu/arm/filters/FEBlendNEON.h uint16x8_t remainder = vaddq_u16(vsubq_u16(num, vmulq_u16(sixteenConst255, quotient)), sixteenConstOne); remainder 44 Source/platform/graphics/cpu/arm/filters/FEBlendNEON.h return vaddq_u16(quotient, vshrq_n_u16(remainder, 8)); remainder 69 Source/platform/graphics/filters/FEBlend.cpp uint16_t remainder = value - (quotient * 255) + 1; remainder 70 Source/platform/graphics/filters/FEBlend.cpp return quotient + (remainder >> 8); remainder 1747 Source/platform/graphics/gpu/WebGLImageConversion.cpp int remainder = sourceUnpackAlignment ? (validSrc % sourceUnpackAlignment) : 0; remainder 1748 Source/platform/graphics/gpu/WebGLImageConversion.cpp int srcStride = remainder ? (validSrc + sourceUnpackAlignment - remainder) : validSrc; remainder 95 Source/wtf/StringHasher.h bool remainder = length & 1; remainder 103 Source/wtf/StringHasher.h if (remainder) remainder 344 Source/wtf/dtoa/fixed-dtoa.cc uint64_t remainder; remainder 358 Source/wtf/dtoa/fixed-dtoa.cc remainder = (dividend % divisor) << divisor_power; remainder 362 Source/wtf/dtoa/fixed-dtoa.cc remainder = (dividend % divisor) << exponent; remainder 365 Source/wtf/dtoa/fixed-dtoa.cc FillDigits64FixedLength(remainder, divisor_power, buffer, length);