bias               94 Source/core/editing/htmlediting.cpp     int bias = 0;
bias               97 Source/core/editing/htmlediting.cpp             bias = -1;
bias               99 Source/core/editing/htmlediting.cpp             bias = 1;
bias              103 Source/core/editing/htmlediting.cpp     return result ? result : bias;
bias               43 Source/core/svg/SVGFEConvolveMatrixElement.h     SVGAnimatedNumber* bias() { return m_bias.get(); }
bias               38 Source/platform/graphics/filters/FEConvolveMatrix.cpp     float divisor, float bias, const IntPoint& targetOffset, EdgeModeType edgeMode,
bias               43 Source/platform/graphics/filters/FEConvolveMatrix.cpp     , m_bias(bias)
bias               55 Source/platform/graphics/filters/FEConvolveMatrix.cpp     float divisor, float bias, const IntPoint& targetOffset, EdgeModeType edgeMode,
bias               58 Source/platform/graphics/filters/FEConvolveMatrix.cpp     return adoptRef(new FEConvolveMatrix(filter, kernelSize, divisor, bias, targetOffset, edgeMode, kernelUnitLength,
bias              112 Source/platform/graphics/filters/FEConvolveMatrix.cpp bool FEConvolveMatrix::setBias(float bias)
bias              114 Source/platform/graphics/filters/FEConvolveMatrix.cpp     if (m_bias == bias)
bias              116 Source/platform/graphics/filters/FEConvolveMatrix.cpp     m_bias = bias;
bias              240 Source/platform/graphics/filters/FEConvolveMatrix.cpp ALWAYS_INLINE void setDestinationPixels(Uint8ClampedArray* image, int& pixel, float* totals, float divisor, float bias, Uint8ClampedArray* src)
bias              242 Source/platform/graphics/filters/FEConvolveMatrix.cpp     unsigned char maxAlpha = preserveAlphaValues ? 255 : clampRGBAValue(totals[3] / divisor + bias);
bias              244 Source/platform/graphics/filters/FEConvolveMatrix.cpp         image->set(pixel++, clampRGBAValue(totals[i] / divisor + bias, maxAlpha));
bias              304 Source/platform/graphics/filters/FEConvolveMatrix.cpp             setDestinationPixels<preserveAlphaValues>(paintingData.dstPixelArray, pixel, totals, m_divisor, paintingData.bias, paintingData.srcPixelArray);
bias              389 Source/platform/graphics/filters/FEConvolveMatrix.cpp             setDestinationPixels<preserveAlphaValues>(paintingData.dstPixelArray, pixel, totals, m_divisor, paintingData.bias, paintingData.srcPixelArray);
bias              453 Source/platform/graphics/filters/FEConvolveMatrix.cpp     paintingData.bias = m_bias * 255;
bias              530 Source/platform/graphics/filters/FEConvolveMatrix.cpp     SkScalar bias = SkFloatToScalar(m_bias);
bias              538 Source/platform/graphics/filters/FEConvolveMatrix.cpp     return adoptRef(new SkMatrixConvolutionImageFilter(kernelSize, kernel.get(), gain, bias, target, tileMode, convolveAlpha, input.get(), &cropRect));
bias               57 Source/platform/graphics/filters/FEConvolveMatrix.h     float bias() const;
bias               85 Source/platform/graphics/filters/FEConvolveMatrix.h         float bias;
bias              366 Source/wtf/DateMath.cpp     int32_t bias = timeZoneInformation.Bias + timeZoneInformation.StandardBias;
bias              367 Source/wtf/DateMath.cpp     return -bias * 60 * 1000;
bias               44 Source/wtf/GregorianDateTime.cpp     LONG bias = timeZoneInformation.Bias;
bias               46 Source/wtf/GregorianDateTime.cpp         bias += timeZoneInformation.DaylightBias;
bias               48 Source/wtf/GregorianDateTime.cpp         bias += timeZoneInformation.StandardBias;
bias               60 Source/wtf/GregorianDateTime.cpp     m_utcOffset = -bias * secondsPerMinute;