Coverage Report

Created: 2024-05-20 07:14

/src/skia/include/core/SkScalar.h
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 2006 The Android Open Source Project
3
 *
4
 * Use of this source code is governed by a BSD-style license that can be
5
 * found in the LICENSE file.
6
 */
7
8
#ifndef SkScalar_DEFINED
9
#define SkScalar_DEFINED
10
11
#include "include/private/base/SkAssert.h"
12
#include "include/private/base/SkFloatingPoint.h"
13
14
#include <cmath>
15
16
typedef float SkScalar;
17
18
270M
#define SK_Scalar1                  1.0f
19
3.47G
#define SK_ScalarHalf               0.5f
20
1.58M
#define SK_ScalarSqrt2              SK_FloatSqrt2
21
519k
#define SK_ScalarPI                 SK_FloatPI
22
#define SK_ScalarTanPIOver8         0.414213562f
23
843k
#define SK_ScalarRoot2Over2         0.707106781f
24
2.21G
#define SK_ScalarMax                3.402823466e+38f
25
246M
#define SK_ScalarMin                (-SK_ScalarMax)
26
3.26M
#define SK_ScalarInfinity           SK_FloatInfinity
27
291k
#define SK_ScalarNegativeInfinity   SK_FloatNegativeInfinity
28
1.22G
#define SK_ScalarNaN                SK_FloatNaN
29
30
955k
#define SkScalarFloorToScalar(x)    std::floor(x)
31
23.9k
#define SkScalarCeilToScalar(x)     std::ceil(x)
32
4.42M
#define SkScalarRoundToScalar(x)    sk_float_round(x)
33
64.2k
#define SkScalarTruncToScalar(x)    std::trunc(x)
34
35
845k
#define SkScalarFloorToInt(x)       sk_float_floor2int(x)
36
2.73M
#define SkScalarCeilToInt(x)        sk_float_ceil2int(x)
37
228M
#define SkScalarRoundToInt(x)       sk_float_round2int(x)
38
39
609M
#define SkScalarAbs(x)              std::fabs(x)
40
3.13k
#define SkScalarCopySign(x, y)      std::copysign(x, y)
41
25.6k
#define SkScalarMod(x, y)           std::fmod(x,y)
42
101M
#define SkScalarSqrt(x)             std::sqrt(x)
43
316k
#define SkScalarPow(b, e)           std::pow(b, e)
44
45
372k
#define SkScalarSin(radians)        ((float)std::sin(radians))
46
868k
#define SkScalarCos(radians)        ((float)std::cos(radians))
47
1.45k
#define SkScalarTan(radians)        ((float)std::tan(radians))
48
#define SkScalarASin(val)           ((float)std::asin(val))
49
163k
#define SkScalarACos(val)           ((float)std::acos(val))
50
6.17k
#define SkScalarATan2(y, x)         ((float)std::atan2(y,x))
51
#define SkScalarExp(x)              ((float)std::exp(x))
52
#define SkScalarLog(x)              ((float)std::log(x))
53
331
#define SkScalarLog2(x)             ((float)std::log2(x))
54
55
//////////////////////////////////////////////////////////////////////////////////////////////////
56
57
272M
#define SkIntToScalar(x)        static_cast<SkScalar>(x)
58
0
#define SkIntToFloat(x)         static_cast<float>(x)
59
38.6k
#define SkScalarTruncToInt(x)   sk_float_saturate2int(x)
60
61
#define SkScalarToFloat(x)      static_cast<float>(x)
62
#define SkFloatToScalar(x)      static_cast<SkScalar>(x)
63
202k
#define SkScalarToDouble(x)     static_cast<double>(x)
64
6.77G
#define SkDoubleToScalar(x)     sk_double_to_float(x)
65
66
/** Returns the fractional part of the scalar. */
67
64.2k
static inline SkScalar SkScalarFraction(SkScalar x) {
68
64.2k
    return x - SkScalarTruncToScalar(x);
69
64.2k
}
Unexecuted instantiation: FuzzImage.cpp:SkScalarFraction(float)
Unexecuted instantiation: Fuzz.cpp:SkScalarFraction(float)
Unexecuted instantiation: FuzzCommon.cpp:SkScalarFraction(float)
Unexecuted instantiation: CommandLineFlags.cpp:SkScalarFraction(float)
Unexecuted instantiation: BackendSurfaceFactory.cpp:SkScalarFraction(float)
Unexecuted instantiation: BackendTextureImageFactory.cpp:SkScalarFraction(float)
Unexecuted instantiation: FlushFinishTracker.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrContextFactory.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrTest.cpp:SkScalarFraction(float)
Unexecuted instantiation: ManagedBackendTexture.cpp:SkScalarFraction(float)
Unexecuted instantiation: MemoryCache.cpp:SkScalarFraction(float)
Unexecuted instantiation: ProtectedUtils.cpp:SkScalarFraction(float)
Unexecuted instantiation: ProxyUtils.cpp:SkScalarFraction(float)
Unexecuted instantiation: TestContext.cpp:SkScalarFraction(float)
Unexecuted instantiation: TestOps.cpp:SkScalarFraction(float)
Unexecuted instantiation: YUVUtils.cpp:SkScalarFraction(float)
Unexecuted instantiation: MockTestContext.cpp:SkScalarFraction(float)
Unexecuted instantiation: TextBlobTools.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkTestCanvas.cpp:SkScalarFraction(float)
Unexecuted instantiation: VkTestContext.cpp:SkScalarFraction(float)
Unexecuted instantiation: VkTestHelper.cpp:SkScalarFraction(float)
Unexecuted instantiation: VkTestMemoryAllocator.cpp:SkScalarFraction(float)
Unexecuted instantiation: VkTestUtils.cpp:SkScalarFraction(float)
Unexecuted instantiation: VkYcbcrSamplerHelper.cpp:SkScalarFraction(float)
Unexecuted instantiation: AtlasTextOpTools.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrAtlasTools.cpp:SkScalarFraction(float)
Unexecuted instantiation: ContextFactory.cpp:SkScalarFraction(float)
Unexecuted instantiation: GraphiteTestContext.cpp:SkScalarFraction(float)
Unexecuted instantiation: ProtectedUtils_Graphite.cpp:SkScalarFraction(float)
Unexecuted instantiation: UniqueKeyUtils.cpp:SkScalarFraction(float)
Unexecuted instantiation: GraphiteVulkanTestContext.cpp:SkScalarFraction(float)
Unexecuted instantiation: DDLPromiseImageHelper.cpp:SkScalarFraction(float)
Unexecuted instantiation: DDLTileHelper.cpp:SkScalarFraction(float)
Unexecuted instantiation: DecodeUtils.cpp:SkScalarFraction(float)
Unexecuted instantiation: EncodeUtils.cpp:SkScalarFraction(float)
Unexecuted instantiation: GpuToolUtils.cpp:SkScalarFraction(float)
Unexecuted instantiation: MSKPPlayer.cpp:SkScalarFraction(float)
Unexecuted instantiation: Resources.cpp:SkScalarFraction(float)
Unexecuted instantiation: RuntimeBlendUtils.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkMetaData.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSharingProc.cpp:SkScalarFraction(float)
Unexecuted instantiation: TestFontDataProvider.cpp:SkScalarFraction(float)
Unexecuted instantiation: ToolUtils.cpp:SkScalarFraction(float)
Unexecuted instantiation: UrlDataManager.cpp:SkScalarFraction(float)
Unexecuted instantiation: DebugCanvas.cpp:SkScalarFraction(float)
Unexecuted instantiation: DebugLayerManager.cpp:SkScalarFraction(float)
Unexecuted instantiation: DrawCommand.cpp:SkScalarFraction(float)
Unexecuted instantiation: JsonWriteBuffer.cpp:SkScalarFraction(float)
Unexecuted instantiation: FontToolUtils.cpp:SkScalarFraction(float)
Unexecuted instantiation: RandomScalerContext.cpp:SkScalarFraction(float)
Unexecuted instantiation: TestFontMgr.cpp:SkScalarFraction(float)
Unexecuted instantiation: TestSVGTypeface.cpp:SkScalarFraction(float)
Unexecuted instantiation: TestTypeface.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkTextBlobTrace.cpp:SkScalarFraction(float)
Unexecuted instantiation: Timer.cpp:SkScalarFraction(float)
Unexecuted instantiation: SvgPathExtractor.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkAutoPixmapStorage.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkBitmap.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkBlendMode.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkBlendModeBlender.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkCanvas.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkCanvasPriv.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkCanvas_Raster.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkChecksum.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkColor.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkColorFilter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkColorSpace.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkColorSpaceXformSteps.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkConvertPixels.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkData.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkDevice.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkDrawable.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkFlattenable.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkFont.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkFontMgr.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkGeometry.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkGlyph.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkImageFilter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkImageFilterCache.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkImageFilterTypes.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkImageGenerator.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkImageInfo.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkKnownRuntimeEffects.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkLatticeIter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkLocalMatrixImageFilter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkM44.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkMD5.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkMallocPixelRef.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkMask.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkMatrix.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkMatrixInvert.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkMipmap.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkMipmapHQDownSampler.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPaint.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPaintPriv.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPath.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPathBuilder.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPathEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPathRef.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPathUtils.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPicture.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPictureData.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPictureFlat.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPicturePlayback.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPictureRecord.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPictureRecorder.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPixelRef.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPixmap.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPoint.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkRRect.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkRSXform.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkRasterPipeline.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkReadBuffer.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkReadPixelsRec.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkRecord.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkRecordDraw.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkRecordOpts.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkRecordedDrawable.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkRecorder.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkRecords.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkRect.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkRegion.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkRegion_path.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkResourceCache.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkRuntimeEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkScalerContext.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkScan_Path.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSpecialImage.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkStream.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkStrikeCache.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkStrikeSpec.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkString.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkStringUtils.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkStrokeRec.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSwizzler_opts.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSwizzler_opts_hsw.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSwizzler_opts_ssse3.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkTextBlob.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkTypeface.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkTypefaceCache.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkUnPreMultiply.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkVertices.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkWriteBuffer.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkWritePixelsRec.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkWriter32.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkYUVAInfo.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkYUVAPixmaps.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkYUVMath.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkImage.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkImage_Lazy.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkImage_Raster.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkImage_RasterFactories.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSurface.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSurface_Base.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSurface_Raster.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkTiledImageUtils.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkColorFilterShader.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkColorShader.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkImageShader.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkRuntimeShader.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkShader.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkShaderBase.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkWorkingColorSpaceShader.cpp:SkScalarFraction(float)
Unexecuted instantiation: GlyphRun.cpp:SkScalarFraction(float)
Unexecuted instantiation: SlugFromBuffer.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkOpBuilder.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkOpContour.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkOpEdgeBuilder.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkOpSegment.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkOpSpan.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPathOpsConic.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPathOpsCubic.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPathOpsCurve.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPathOpsDebug.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPathOpsLine.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPathOpsOp.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPathOpsQuad.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPathOpsRect.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPathOpsSimplify.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPathOpsTypes.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPathOpsWinding.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPathWriter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkReduceOrder.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkCustomTypeface.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkJSON.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkJSONWriter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkMatrix22.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkMultiPictureDocument.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkNWayCanvas.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkOSPath.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPaintFilterCanvas.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkParse.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPatchUtils.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkShadowUtils.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkBlenders.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkLinearGradient.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkBlendModeColorFilter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkColorFilterBase.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkComposeColorFilter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkGaussianColorFilter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkMatrixColorFilter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkRuntimeColorFilter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkWorkingFormatColorFilter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkCodec.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkCodecImageGenerator.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkImageGenerator_FromEncoded.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPixmapUtils.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSampler.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkBmpCodec.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkBmpMaskCodec.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkBmpRLECodec.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkBmpStandardCodec.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkWbmpCodec.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLAnalysis.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLCompiler.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLErrorReporter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLInliner.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLMangler.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLModuleLoader.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLParser.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLCheckProgramStructure.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLFinalizationChecks.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLGetReturnComplexity.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLHasSideEffects.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLIsConstantExpression.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLProgramUsage.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLReturnsInputAlpha.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLSymbolTableStackBuilder.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLRasterPipelineBuilder.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLRasterPipelineCodeGenerator.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLBlock.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLExpressionStatement.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLFieldAccess.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLForStatement.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLFunctionCall.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLFunctionDeclaration.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLFunctionDefinition.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLIfStatement.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLIndexExpression.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLInterfaceBlock.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLProgram.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLSetting.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLStructDefinition.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLSwitchStatement.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLSymbol.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLSymbolTable.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLType.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLVarDeclarations.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLVariable.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLDebugTracePriv.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLAddConstToVarModifiers.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLEliminateDeadFunctions.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLEliminateDeadGlobalVariables.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLEliminateDeadLocalVariables.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLEliminateEmptyStatements.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLEliminateUnnecessaryBraces.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLEliminateUnreachableCode.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLFindAndDeclareBuiltinFunctions.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLFindAndDeclareBuiltinStructs.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLFindAndDeclareBuiltinVariables.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLHoistSwitchVarDeclarationsAtTopLevel.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLRenamePrivateSymbols.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLReplaceConstVarsWithLiterals.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkGlobalInitialization_default.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkOSFile_stdio.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkOSFile_posix.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkFontMgr_custom_empty.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrAuditTrail.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrBackendSurface.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrCanvas.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrCaps.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrColorInfo.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrColorSpaceXform.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrContext_Base.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrDeferredDisplayList.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrDeferredDisplayListRecorder.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrDirectContext.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrDirectContextPriv.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrDrawOpAtlas.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrDrawingManager.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrFragmentProcessor.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrGeometryProcessor.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrGpu.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrGpuBuffer.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrGpuResource.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrImageContext.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrImageInfo.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrOpFlushState.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrOpsRenderPass.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrPersistentCacheUtils.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrPipeline.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrProcessor.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrProcessorAnalysis.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrProcessorSet.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrProgramInfo.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrPromiseImageTexture.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrProxyProvider.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrRecordingContext.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrRecordingContextPriv.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrRenderTargetProxy.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrRenderTask.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrRenderTaskCluster.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrResourceAllocator.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrResourceCache.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrResourceProvider.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrRingBuffer.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrShaderCaps.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrStagingBufferManager.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrStencilSettings.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrSurface.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrSurfaceCharacterization.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrSurfaceProxy.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrSurfaceProxyView.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrTestUtils.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrTexture.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrTextureProxy.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrTextureRenderTargetProxy.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrTextureResolveRenderTask.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrThreadSafeCache.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrThreadSafePipelineBuilder.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrTransferFromRenderTask.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrWaitRenderTask.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrWritePixelsRenderTask.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrXferProcessor.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrYUVABackendTextures.cpp:SkScalarFraction(float)
Unexecuted instantiation: PathRendererChain.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkGr.cpp:SkScalarFraction(float)
Unexecuted instantiation: SurfaceContext.cpp:SkScalarFraction(float)
Unexecuted instantiation: SurfaceDrawContext.cpp:SkScalarFraction(float)
Unexecuted instantiation: SurfaceFillContext.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrBicubicEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrBlendFragmentProcessor.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrCustomXfermode.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrDisableColorXP.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrMatrixEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrPorterDuffXferProcessor.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrSkSLFP.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrTextureEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrQuad.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrQuadUtils.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrShape.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrStyledShape.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrGLSLBlend.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrGLSLProgramBuilder.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrGLSLProgramDataManager.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrGLSLShaderBuilder.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrGLSLUniformHandler.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrGLSLVarying.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrGLSLVertexGeoBuilder.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrImageUtils.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrTextureGenerator.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkImage_Ganesh.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkImage_GaneshBase.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkImage_GaneshFactories.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkImage_GaneshYUVA.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkImage_LazyTexture.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkImage_RasterPinnable.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSpecialImage_Ganesh.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrMockGpu.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrMockTypes.cpp:SkScalarFraction(float)
Unexecuted instantiation: AAConvexPathRenderer.cpp:SkScalarFraction(float)
Unexecuted instantiation: AAHairLinePathRenderer.cpp:SkScalarFraction(float)
Unexecuted instantiation: AALinearizingConvexPathRenderer.cpp:SkScalarFraction(float)
Unexecuted instantiation: AtlasPathRenderer.cpp:SkScalarFraction(float)
Unexecuted instantiation: AtlasRenderTask.cpp:SkScalarFraction(float)
Unexecuted instantiation: AtlasTextOp.cpp:SkScalarFraction(float)
Unexecuted instantiation: ClearOp.cpp:SkScalarFraction(float)
Unexecuted instantiation: DashLinePathRenderer.cpp:SkScalarFraction(float)
Unexecuted instantiation: DashOp.cpp:SkScalarFraction(float)
Unexecuted instantiation: DefaultPathRenderer.cpp:SkScalarFraction(float)
Unexecuted instantiation: DrawAtlasOp.cpp:SkScalarFraction(float)
Unexecuted instantiation: DrawAtlasPathOp.cpp:SkScalarFraction(float)
Unexecuted instantiation: DrawMeshOp.cpp:SkScalarFraction(float)
Unexecuted instantiation: DrawableOp.cpp:SkScalarFraction(float)
Unexecuted instantiation: FillRRectOp.cpp:SkScalarFraction(float)
Unexecuted instantiation: FillRectOp.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrMeshDrawOp.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrOp.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrOvalOpFactory.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrSimpleMeshDrawOpHelper.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrSimpleMeshDrawOpHelperWithStencil.cpp:SkScalarFraction(float)
Unexecuted instantiation: LatticeOp.cpp:SkScalarFraction(float)
Unexecuted instantiation: OpsTask.cpp:SkScalarFraction(float)
Unexecuted instantiation: PathStencilCoverOp.cpp:SkScalarFraction(float)
Unexecuted instantiation: QuadPerEdgeAA.cpp:SkScalarFraction(float)
Unexecuted instantiation: RegionOp.cpp:SkScalarFraction(float)
Unexecuted instantiation: ShadowRRectOp.cpp:SkScalarFraction(float)
Unexecuted instantiation: SmallPathAtlasMgr.cpp:SkScalarFraction(float)
Unexecuted instantiation: SmallPathRenderer.cpp:SkScalarFraction(float)
Unexecuted instantiation: SmallPathShapeData.cpp:SkScalarFraction(float)
SoftwarePathRenderer.cpp:SkScalarFraction(float)
Line
Count
Source
67
4
static inline SkScalar SkScalarFraction(SkScalar x) {
68
4
    return x - SkScalarTruncToScalar(x);
69
4
}
Unexecuted instantiation: StrokeRectOp.cpp:SkScalarFraction(float)
Unexecuted instantiation: TessellationPathRenderer.cpp:SkScalarFraction(float)
TextureOp.cpp:SkScalarFraction(float)
Line
Count
Source
67
63.5k
static inline SkScalar SkScalarFraction(SkScalar x) {
68
63.5k
    return x - SkScalarTruncToScalar(x);
69
63.5k
}
Unexecuted instantiation: TriangulatingPathRenderer.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSurface_Ganesh.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrPathTessellationShader.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrTessellationShader.cpp:SkScalarFraction(float)
Unexecuted instantiation: PathTessellator.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrAtlasManager.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrVkBackendSurface.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrVkDirectContext.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrVkGpu.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrVkImage.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrVkImageView.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrVkMSAALoadManager.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrVkOpsRenderPass.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrVkPipeline.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrVkPipelineState.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrVkPipelineStateCache.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrVkPipelineStateDataManager.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrVkRenderPass.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrVkRenderTarget.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrVkResourceProvider.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrVkSampler.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrVkSamplerYcbcrConversion.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrVkSemaphore.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrVkTexture.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrVkTextureRenderTarget.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrVkUtil.cpp:SkScalarFraction(float)
Unexecuted instantiation: BackendTexture.cpp:SkScalarFraction(float)
Unexecuted instantiation: Context.cpp:SkScalarFraction(float)
Unexecuted instantiation: GlobalCache.cpp:SkScalarFraction(float)
Unexecuted instantiation: ImageFactories.cpp:SkScalarFraction(float)
Unexecuted instantiation: Image_Graphite.cpp:SkScalarFraction(float)
Unexecuted instantiation: Image_YUVA_Graphite.cpp:SkScalarFraction(float)
Unexecuted instantiation: QueueManager.cpp:SkScalarFraction(float)
Unexecuted instantiation: Recorder.cpp:SkScalarFraction(float)
Unexecuted instantiation: Recording.cpp:SkScalarFraction(float)
Unexecuted instantiation: RendererProvider.cpp:SkScalarFraction(float)
Unexecuted instantiation: Resource.cpp:SkScalarFraction(float)
Unexecuted instantiation: ResourceCache.cpp:SkScalarFraction(float)
Unexecuted instantiation: ResourceProvider.cpp:SkScalarFraction(float)
Unexecuted instantiation: ScratchResourceManager.cpp:SkScalarFraction(float)
Unexecuted instantiation: SharedContext.cpp:SkScalarFraction(float)
Unexecuted instantiation: Surface_Graphite.cpp:SkScalarFraction(float)
Unexecuted instantiation: Texture.cpp:SkScalarFraction(float)
Unexecuted instantiation: TextureInfo.cpp:SkScalarFraction(float)
Unexecuted instantiation: TextureProxy.cpp:SkScalarFraction(float)
Unexecuted instantiation: TextureUtils.cpp:SkScalarFraction(float)
Unexecuted instantiation: UploadBufferManager.cpp:SkScalarFraction(float)
Unexecuted instantiation: YUVABackendTextures.cpp:SkScalarFraction(float)
Unexecuted instantiation: AnalyticBlurRenderStep.cpp:SkScalarFraction(float)
Unexecuted instantiation: AnalyticRRectRenderStep.cpp:SkScalarFraction(float)
Unexecuted instantiation: BitmapTextRenderStep.cpp:SkScalarFraction(float)
Unexecuted instantiation: CoverBoundsRenderStep.cpp:SkScalarFraction(float)
Unexecuted instantiation: CoverageMaskRenderStep.cpp:SkScalarFraction(float)
Unexecuted instantiation: GraphiteVertexFiller.cpp:SkScalarFraction(float)
Unexecuted instantiation: MiddleOutFanRenderStep.cpp:SkScalarFraction(float)
Unexecuted instantiation: PerEdgeAAQuadRenderStep.cpp:SkScalarFraction(float)
Unexecuted instantiation: SDFTextRenderStep.cpp:SkScalarFraction(float)
Unexecuted instantiation: TessellateCurvesRenderStep.cpp:SkScalarFraction(float)
Unexecuted instantiation: TessellateStrokesRenderStep.cpp:SkScalarFraction(float)
Unexecuted instantiation: TessellateWedgesRenderStep.cpp:SkScalarFraction(float)
Unexecuted instantiation: VerticesRenderStep.cpp:SkScalarFraction(float)
Unexecuted instantiation: CopyTask.cpp:SkScalarFraction(float)
Unexecuted instantiation: SynchronizeToCpuTask.cpp:SkScalarFraction(float)
Unexecuted instantiation: TaskList.cpp:SkScalarFraction(float)
Unexecuted instantiation: UploadTask.cpp:SkScalarFraction(float)
Unexecuted instantiation: TextAtlasManager.cpp:SkScalarFraction(float)
Unexecuted instantiation: VulkanGraphiteUtils.cpp:SkScalarFraction(float)
Unexecuted instantiation: VulkanQueueManager.cpp:SkScalarFraction(float)
Unexecuted instantiation: VulkanSharedContext.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPngEncoderImpl.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkHeifCodec.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkJpegCodec.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkJpegDecoderMgr.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkJpegMetadataDecoderImpl.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkJpegSourceMgr.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkJpegUtility.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkJpegXmp.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkIcoCodec.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPngCodec.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkRawCodec.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkWebpCodec.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkWuffsCodec.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkXmp.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkFontHost_FreeType.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkFontHost_FreeType_common.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkFontMgr_custom.cpp:SkScalarFraction(float)
Unexecuted instantiation: AtlasTypes.cpp:SkScalarFraction(float)
Unexecuted instantiation: Blend.cpp:SkScalarFraction(float)
Unexecuted instantiation: BlendFormula.cpp:SkScalarFraction(float)
Unexecuted instantiation: BlurUtils.cpp:SkScalarFraction(float)
Unexecuted instantiation: DataUtils.cpp:SkScalarFraction(float)
Unexecuted instantiation: DitherUtils.cpp:SkScalarFraction(float)
Unexecuted instantiation: PipelineUtils.cpp:SkScalarFraction(float)
Unexecuted instantiation: ResourceKey.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkBackingFit.cpp:SkScalarFraction(float)
Unexecuted instantiation: Swizzle.cpp:SkScalarFraction(float)
Unexecuted instantiation: FixedCountBufferUtils.cpp:SkScalarFraction(float)
Unexecuted instantiation: Tessellation.cpp:SkScalarFraction(float)
Unexecuted instantiation: DistanceFieldAdjustTable.cpp:SkScalarFraction(float)
Unexecuted instantiation: GlyphVector.cpp:SkScalarFraction(float)
Unexecuted instantiation: SDFTControl.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkChromeRemoteGlyphCache.cpp:SkScalarFraction(float)
Unexecuted instantiation: Slug.cpp:SkScalarFraction(float)
Unexecuted instantiation: SlugImpl.cpp:SkScalarFraction(float)
Unexecuted instantiation: StrikeCache.cpp:SkScalarFraction(float)
Unexecuted instantiation: SubRunContainer.cpp:SkScalarFraction(float)
Unexecuted instantiation: TextBlob.cpp:SkScalarFraction(float)
Unexecuted instantiation: TextBlobRedrawCoordinator.cpp:SkScalarFraction(float)
Unexecuted instantiation: VertexFiller.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLPipelineStageCodeGenerator.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLSPIRVCodeGenerator.cpp:SkScalarFraction(float)
Unexecuted instantiation: VulkanAMDMemoryAllocator.cpp:SkScalarFraction(float)
Unexecuted instantiation: VulkanExtensions.cpp:SkScalarFraction(float)
Unexecuted instantiation: VulkanInterface.cpp:SkScalarFraction(float)
Unexecuted instantiation: VulkanUtilsPriv.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkJpegMultiPicture.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkJpegSegmentScan.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkAAClip.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkBBHFactory.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkBigPicture.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkBitmapCache.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkBitmapDevice.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkBitmapProcState_opts.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkBitmapProcState_opts_ssse3.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkBlitter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkBlitter_A8.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkBlitter_ARGB32.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkBlurMask.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkBlurMaskFilterImpl.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkCompressedDataUtils.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkCubicClipper.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkDescriptor.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkDistanceFieldGen.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkDocument.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkDraw.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkDrawBase.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkDrawShadowInfo.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkDraw_atlas.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkDraw_text.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkDraw_vertices.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkEdge.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkEdgeBuilder.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkEdgeClipper.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkFontDescriptor.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkFontMetricsPriv.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkFont_serial.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkGlyphRunPainter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkGraphics.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkLineClipper.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkMaskBlurFilter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkMaskCache.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkMaskFilter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkMaskGamma.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkMesh.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkMipmapAccessor.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkMipmapBuilder.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkOpts.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPath_serial.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPixmapDraw.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkRTree.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkRasterClip.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkRasterPipelineBlitter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkRuntimeBlender.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkScalar.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkScan.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkScan_AntiPath.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkScan_Antihair.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkScan_Hairline.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkStrike.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkStroke.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkStrokerPriv.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkTypeface_remote.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkVertState.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkYUVPlanesCache.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkImage_Base.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkImage_Picture.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPictureImageGenerator.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkRescaleAndReadPixels.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkBitmapProcShader.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkBlendShader.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkCoordClampShader.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkEmptyShader.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkLocalMatrixShader.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPerlinNoiseShaderImpl.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPictureShader.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkTransformShader.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkTriColorShader.cpp:SkScalarFraction(float)
Unexecuted instantiation: StrikeForGPU.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkAddIntersections.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkDConicLineIntersection.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkDCubicLineIntersection.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkDLineIntersection.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkDQuadLineIntersection.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkIntersections.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkOpAngle.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkOpCoincidence.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkOpCubicHull.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPathOpsAsWinding.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPathOpsCommon.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPathOpsTSect.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkDashPath.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkShaderUtils.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkShadowTessellator.cpp:SkScalarFraction(float)
Unexecuted instantiation: Sk1DPathEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: Sk2DPathEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkCornerPathEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkDashPathEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkDiscretePathEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkEmbossMaskFilter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkShaderMaskFilterImpl.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkTrimPathEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkConicalGradient.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkGradientBaseShader.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkRadialGradient.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSweepGradient.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkColorSpaceXformColorFilter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkTableColorFilter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkBlendImageFilter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkBlurImageFilter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkColorFilterImageFilter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkComposeImageFilter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkCropImageFilter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkDisplacementMapImageFilter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkDropShadowImageFilter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkImageImageFilter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkLightingImageFilter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkMagnifierImageFilter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkMatrixConvolutionImageFilter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkMatrixTransformImageFilter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkMergeImageFilter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkMorphologyImageFilter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPictureImageFilter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkRuntimeImageFilter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkShaderImageFilter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkColorPalette.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkExif.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkMaskSwizzler.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSwizzler.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkTiffUtility.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkBmpBaseCodec.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkEncoder.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkICC.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLBuiltinTypes.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLIntrinsicList.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLUtil.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLCanExitWithoutReturningValue.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLGetLoopUnrollInfo.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLIsDynamicallyUniformExpression.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkEncodedInfo.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkParseEncodedOrigin.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkOTUtils.cpp:SkScalarFraction(float)
Unexecuted instantiation: Device.cpp:SkScalarFraction(float)
Unexecuted instantiation: Device_drawTexture.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrAttachment.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrBackendTextureImageGenerator.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrBackendUtils.cpp:SkScalarFraction(float)
GrBlurUtils.cpp:SkScalarFraction(float)
Line
Count
Source
67
700
static inline SkScalar SkScalarFraction(SkScalar x) {
68
700
    return x - SkScalarTruncToScalar(x);
69
700
}
Unexecuted instantiation: GrBufferAllocPool.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrBufferTransferRenderTask.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrBufferUpdateRenderTask.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrClientMappedBufferManager.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrContextThreadSafeProxy.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrCopyRenderTask.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrDDLContext.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrDDLTask.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrDataUtils.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrDefaultGeoProcFactory.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrDistanceFieldGenFromVector.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrDrawOpTest.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrDynamicAtlas.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrEagerVertexAllocator.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrFixedClip.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrFragmentProcessors.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrMeshDrawTarget.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrOnFlushResourceProvider.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrPaint.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrProcessorUnitTest.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrRenderTarget.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrSWMaskHelper.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrShaderVar.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrStyle.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrUniformDataManager.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrUtil.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrVertexChunkArray.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrYUVATextureProxies.cpp:SkScalarFraction(float)
Unexecuted instantiation: PathRenderer.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrBezierEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrBitmapTextGeoProc.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrColorTableEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrCoverageSetOpXP.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrDistanceFieldGeoProc.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrModulateAtlasCoverageEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrPerlinNoise2Effect.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrRRectEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrShadowGeoProc.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrYUVtoRGBEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrAAConvexTessellator.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrAATriangulator.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrPathUtils.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrTriangulator.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrGLSLFragmentShaderBuilder.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrGradientShader.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrMockCaps.cpp:SkScalarFraction(float)
Unexecuted instantiation: AtlasInstancedHelper.cpp:SkScalarFraction(float)
Unexecuted instantiation: PathInnerTriangulateOp.cpp:SkScalarFraction(float)
Unexecuted instantiation: PathTessellateOp.cpp:SkScalarFraction(float)
Unexecuted instantiation: StrokeTessellateOp.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrStrokeTessellationShader.cpp:SkScalarFraction(float)
Unexecuted instantiation: StrokeTessellator.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrVkBuffer.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrVkCaps.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrVkCommandBuffer.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrVkCommandPool.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrVkContextThreadSafeProxy.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrVkDescriptorPool.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrVkDescriptorSetManager.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrVkFramebuffer.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrVkPipelineStateBuilder.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrVkUniformHandler.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrVkVaryingHandler.cpp:SkScalarFraction(float)
Unexecuted instantiation: AtlasProvider.cpp:SkScalarFraction(float)
Unexecuted instantiation: Buffer.cpp:SkScalarFraction(float)
Unexecuted instantiation: BufferManager.cpp:SkScalarFraction(float)
Unexecuted instantiation: Caps.cpp:SkScalarFraction(float)
Unexecuted instantiation: ClientMappedBufferManager.cpp:SkScalarFraction(float)
Unexecuted instantiation: CommandBuffer.cpp:SkScalarFraction(float)
Unexecuted instantiation: ComputePathAtlas.cpp:SkScalarFraction(float)
Unexecuted instantiation: ContextUtils.cpp:SkScalarFraction(float)
Unexecuted instantiation: DrawAtlas.cpp:SkScalarFraction(float)
Unexecuted instantiation: DrawContext.cpp:SkScalarFraction(float)
Unexecuted instantiation: DrawList.cpp:SkScalarFraction(float)
Unexecuted instantiation: DrawPass.cpp:SkScalarFraction(float)
Unexecuted instantiation: DrawWriter.cpp:SkScalarFraction(float)
Unexecuted instantiation: GpuWorkSubmission.cpp:SkScalarFraction(float)
Unexecuted instantiation: Image_Base_Graphite.cpp:SkScalarFraction(float)
Unexecuted instantiation: KeyContext.cpp:SkScalarFraction(float)
Unexecuted instantiation: PaintParams.cpp:SkScalarFraction(float)
Unexecuted instantiation: PaintParamsKey.cpp:SkScalarFraction(float)
Unexecuted instantiation: PathAtlas.cpp:SkScalarFraction(float)
Unexecuted instantiation: PipelineData.cpp:SkScalarFraction(float)
Unexecuted instantiation: ProxyCache.cpp:SkScalarFraction(float)
Unexecuted instantiation: RasterPathAtlas.cpp:SkScalarFraction(float)
Unexecuted instantiation: RasterPathUtils.cpp:SkScalarFraction(float)
Unexecuted instantiation: RenderPassDesc.cpp:SkScalarFraction(float)
Unexecuted instantiation: Renderer.cpp:SkScalarFraction(float)
Unexecuted instantiation: ShaderCodeDictionary.cpp:SkScalarFraction(float)
Unexecuted instantiation: SpecialImage_Graphite.cpp:SkScalarFraction(float)
Unexecuted instantiation: UniformManager.cpp:SkScalarFraction(float)
Unexecuted instantiation: DispatchGroup.cpp:SkScalarFraction(float)
Unexecuted instantiation: AnalyticBlurMask.cpp:SkScalarFraction(float)
Unexecuted instantiation: IntersectionTree.cpp:SkScalarFraction(float)
Unexecuted instantiation: Shape.cpp:SkScalarFraction(float)
Unexecuted instantiation: Transform.cpp:SkScalarFraction(float)
Unexecuted instantiation: ClearBuffersTask.cpp:SkScalarFraction(float)
Unexecuted instantiation: ComputeTask.cpp:SkScalarFraction(float)
Unexecuted instantiation: DrawTask.cpp:SkScalarFraction(float)
Unexecuted instantiation: RenderPassTask.cpp:SkScalarFraction(float)
Unexecuted instantiation: VulkanBuffer.cpp:SkScalarFraction(float)
Unexecuted instantiation: VulkanCaps.cpp:SkScalarFraction(float)
Unexecuted instantiation: VulkanCommandBuffer.cpp:SkScalarFraction(float)
Unexecuted instantiation: VulkanGraphiteTypes.cpp:SkScalarFraction(float)
Unexecuted instantiation: VulkanRenderPass.cpp:SkScalarFraction(float)
Unexecuted instantiation: VulkanResourceProvider.cpp:SkScalarFraction(float)
Unexecuted instantiation: VulkanSampler.cpp:SkScalarFraction(float)
Unexecuted instantiation: VulkanSamplerYcbcrConversion.cpp:SkScalarFraction(float)
Unexecuted instantiation: VulkanTexture.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkOpts_hsw.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkOpts_skx.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkDOM.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkXMLParser.cpp:SkScalarFraction(float)
Unexecuted instantiation: TiledTextureUtils.cpp:SkScalarFraction(float)
Unexecuted instantiation: SDFMaskFilter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkAnalyticEdge.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkBitmapProcState.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkBitmapProcState_matrixProcs.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkBlitMask_opts.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkBlitMask_opts_ssse3.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkBlitRow_D32.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkBlitRow_opts.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkBlitRow_opts_hsw.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkBlitter_Sprite.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkColorTable.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPathMeasure.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPoint3.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkScan_AAAPath.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSpriteBlitter_ARGB32.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPolyUtils.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkEmbossMask.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkOTTable_name.cpp:SkScalarFraction(float)
Unexecuted instantiation: ClipStack.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrProgramDesc.cpp:SkScalarFraction(float)
Unexecuted instantiation: StencilMaskHelper.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrConvexPolyEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrOvalEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrGradientBitmapCache.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrVkDescriptorSet.cpp:SkScalarFraction(float)
Unexecuted instantiation: ClipStack_graphite.cpp:SkScalarFraction(float)
Unexecuted instantiation: KeyHelpers.cpp:SkScalarFraction(float)
Unexecuted instantiation: RuntimeEffectDictionary.cpp:SkScalarFraction(float)
Unexecuted instantiation: VulkanDescriptorPool.cpp:SkScalarFraction(float)
Unexecuted instantiation: VulkanDescriptorSet.cpp:SkScalarFraction(float)
Unexecuted instantiation: VulkanFramebuffer.cpp:SkScalarFraction(float)
Unexecuted instantiation: VulkanGraphicsPipeline.cpp:SkScalarFraction(float)
Unexecuted instantiation: VulkanImageView.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkAlphaRuns.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkContourMeasure.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGDOM.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGEllipse.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGFe.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGFeBlend.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGFeColorMatrix.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGFeComponentTransfer.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGFeComposite.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGFeDisplacementMap.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGFeFlood.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGFeGaussianBlur.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGFeImage.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGFeLightSource.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGFeLighting.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGFeMerge.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGFeMorphology.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGFeOffset.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGFeTurbulence.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGFilter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGFilterContext.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGImage.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGLine.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGLinearGradient.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGMask.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGNode.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGPath.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGPattern.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGPoly.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGRadialGradient.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGRect.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGRenderContext.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGSVG.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGShape.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGStop.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGText.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGTransformableNode.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGUse.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGAttribute.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGAttributeParser.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGCircle.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGClipPath.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGContainer.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGGradient.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkShaper.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkShaper_factory.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkShaper_primitive.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkShaper_skunicode.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkShaper_harfbuzz.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkUnicode_icu.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkUnicode_icu_bidi.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkBidiFactory_icu_full.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkParseColor.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkParsePath.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkUnicode.cpp:SkScalarFraction(float)
Unexecuted instantiation: FuzzTextBlobDeserialize.cpp:SkScalarFraction(float)
Unexecuted instantiation: FuzzGradients.cpp:SkScalarFraction(float)
Unexecuted instantiation: FuzzSVG.cpp:SkScalarFraction(float)
Unexecuted instantiation: FuzzCanvas.cpp:SkScalarFraction(float)
Unexecuted instantiation: FuzzNullCanvas.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkNullCanvas.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkColorMatrixFilter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkHighContrastFilter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPDFDocument.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPDFFont.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPDFFormXObject.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPDFMakeCIDGlyphWidthsArray.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPDFMakeToUnicodeCmap.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPDFMetadata.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPDFSubsetFont.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPDFTag.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPDFType1Font.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPDFTypes.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPDFUtils.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGCanvas.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSVGDevice.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkAnnotation.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkClipStack.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkClipStackDevice.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkDeflate.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPDFBitmap.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPDFDevice.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPDFGraphicStackState.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPDFGraphicState.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPDFResourceDict.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPDFShader.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkXMLWriter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkClipStackUtils.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkJpegEncoderImpl.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkClusterator.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkKeyedImage.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPDFGradientShader.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkJPEGWriteUtility.cpp:SkScalarFraction(float)
Unexecuted instantiation: FuzzImageFilterDeserialize.cpp:SkScalarFraction(float)
Unexecuted instantiation: FuzzJSON.cpp:SkScalarFraction(float)
Unexecuted instantiation: FuzzPrecompile.cpp:SkScalarFraction(float)
Unexecuted instantiation: FactoryFunctions.cpp:SkScalarFraction(float)
Unexecuted instantiation: Precompile.cpp:SkScalarFraction(float)
Unexecuted instantiation: PublicPrecompile.cpp:SkScalarFraction(float)
Unexecuted instantiation: FuzzEncoders.cpp:SkScalarFraction(float)
Unexecuted instantiation: FuzzWEBPEncoder.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkWebpEncoderImpl.cpp:SkScalarFraction(float)
Unexecuted instantiation: FuzzQuadRoots.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLCheckSymbolTableCorrectness.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrManagedResource.cpp:SkScalarFraction(float)
Unexecuted instantiation: GrMemoryPool.cpp:SkScalarFraction(float)
Unexecuted instantiation: FuzzCreateDDL.cpp:SkScalarFraction(float)
Unexecuted instantiation: FuzzAPICreateDDL.cpp:SkScalarFraction(float)
Unexecuted instantiation: FuzzSkParagraph.cpp:SkScalarFraction(float)
Unexecuted instantiation: FontCollection.cpp:SkScalarFraction(float)
Unexecuted instantiation: ParagraphBuilderImpl.cpp:SkScalarFraction(float)
Unexecuted instantiation: ParagraphCache.cpp:SkScalarFraction(float)
Unexecuted instantiation: ParagraphImpl.cpp:SkScalarFraction(float)
Unexecuted instantiation: ParagraphPainterImpl.cpp:SkScalarFraction(float)
Unexecuted instantiation: ParagraphStyle.cpp:SkScalarFraction(float)
Unexecuted instantiation: Run.cpp:SkScalarFraction(float)
Unexecuted instantiation: TextLine.cpp:SkScalarFraction(float)
Unexecuted instantiation: TextShadow.cpp:SkScalarFraction(float)
Unexecuted instantiation: TextStyle.cpp:SkScalarFraction(float)
Unexecuted instantiation: TextWrapper.cpp:SkScalarFraction(float)
Unexecuted instantiation: TypefaceFontProvider.cpp:SkScalarFraction(float)
Unexecuted instantiation: Decorations.cpp:SkScalarFraction(float)
Unexecuted instantiation: FontArguments.cpp:SkScalarFraction(float)
Unexecuted instantiation: OneLineShaper.cpp:SkScalarFraction(float)
Unexecuted instantiation: FuzzRegionSetPath.cpp:SkScalarFraction(float)
Unexecuted instantiation: FuzzPathMeasure.cpp:SkScalarFraction(float)
Unexecuted instantiation: FuzzDDLThreading.cpp:SkScalarFraction(float)
Unexecuted instantiation: FuzzAPISVGCanvas.cpp:SkScalarFraction(float)
Unexecuted instantiation: FuzzRegionDeserialize.cpp:SkScalarFraction(float)
Unexecuted instantiation: FuzzPNGEncoder.cpp:SkScalarFraction(float)
Unexecuted instantiation: FuzzRasterN32Canvas.cpp:SkScalarFraction(float)
Unexecuted instantiation: FuzzRegionOp.cpp:SkScalarFraction(float)
Unexecuted instantiation: FuzzPathop.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkPathOpsTightBounds.cpp:SkScalarFraction(float)
Unexecuted instantiation: FuzzSkDescriptorDeserialize.cpp:SkScalarFraction(float)
Unexecuted instantiation: FuzzPolyUtils.cpp:SkScalarFraction(float)
Unexecuted instantiation: FuzzCOLRv1.cpp:SkScalarFraction(float)
Unexecuted instantiation: FuzzPathDeserialize.cpp:SkScalarFraction(float)
Unexecuted instantiation: FuzzSkottieJSON.cpp:SkScalarFraction(float)
Unexecuted instantiation: Skottie.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkottieJson.cpp:SkScalarFraction(float)
Unexecuted instantiation: SlotManager.cpp:SkScalarFraction(float)
Unexecuted instantiation: Animator.cpp:SkScalarFraction(float)
Unexecuted instantiation: ScalarKeyframeAnimator.cpp:SkScalarFraction(float)
Unexecuted instantiation: VectorKeyframeAnimator.cpp:SkScalarFraction(float)
Unexecuted instantiation: TextLayer.cpp:SkScalarFraction(float)
Unexecuted instantiation: Font.cpp:SkScalarFraction(float)
Unexecuted instantiation: TextAdapter.cpp:SkScalarFraction(float)
Unexecuted instantiation: TextAnimator.cpp:SkScalarFraction(float)
Unexecuted instantiation: TextShaper.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkResources.cpp:SkScalarFraction(float)
Unexecuted instantiation: Composition.cpp:SkScalarFraction(float)
Unexecuted instantiation: Layer.cpp:SkScalarFraction(float)
Unexecuted instantiation: Path.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkottieProperty.cpp:SkScalarFraction(float)
Unexecuted instantiation: KeyframeAnimator.cpp:SkScalarFraction(float)
Unexecuted instantiation: ShapeKeyframeAnimator.cpp:SkScalarFraction(float)
Unexecuted instantiation: TextKeyframeAnimator.cpp:SkScalarFraction(float)
Unexecuted instantiation: Vec2KeyframeAnimator.cpp:SkScalarFraction(float)
Unexecuted instantiation: Effects.cpp:SkScalarFraction(float)
Unexecuted instantiation: FillEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: FractalNoiseEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: GaussianBlurEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: GlowStyles.cpp:SkScalarFraction(float)
Unexecuted instantiation: GradientEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: HueSaturationEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: InvertEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: LevelsEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: LinearWipeEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: MotionBlurEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: MotionTileEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: RadialWipeEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: ShadowStyles.cpp:SkScalarFraction(float)
Unexecuted instantiation: SharpenEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: ShiftChannelsEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSLEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: SphereEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: ThresholdEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: TintEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: TransformEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: TritoneEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: VenetianBlindsEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: AudioLayer.cpp:SkScalarFraction(float)
Unexecuted instantiation: FootageLayer.cpp:SkScalarFraction(float)
Unexecuted instantiation: NullLayer.cpp:SkScalarFraction(float)
Unexecuted instantiation: PrecompLayer.cpp:SkScalarFraction(float)
Unexecuted instantiation: SolidLayer.cpp:SkScalarFraction(float)
Unexecuted instantiation: ShapeLayer.cpp:SkScalarFraction(float)
Unexecuted instantiation: TrimPaths.cpp:SkScalarFraction(float)
Unexecuted instantiation: RangeSelector.cpp:SkScalarFraction(float)
Unexecuted instantiation: TextValue.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkAnimCodecPlayer.cpp:SkScalarFraction(float)
Unexecuted instantiation: BlendModes.cpp:SkScalarFraction(float)
Unexecuted instantiation: Camera.cpp:SkScalarFraction(float)
Unexecuted instantiation: BlackAndWhiteEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: BrightnessContrastEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: BulgeEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: CCTonerEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: CornerPinEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: DirectionalBlur.cpp:SkScalarFraction(float)
Unexecuted instantiation: DisplacementMapEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: DropShadowEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: Ellipse.cpp:SkScalarFraction(float)
Unexecuted instantiation: FillStroke.cpp:SkScalarFraction(float)
Unexecuted instantiation: Gradient.cpp:SkScalarFraction(float)
Unexecuted instantiation: MergePaths.cpp:SkScalarFraction(float)
Unexecuted instantiation: OffsetPaths.cpp:SkScalarFraction(float)
Unexecuted instantiation: Polystar.cpp:SkScalarFraction(float)
Unexecuted instantiation: PuckerBloat.cpp:SkScalarFraction(float)
Unexecuted instantiation: Rectangle.cpp:SkScalarFraction(float)
Unexecuted instantiation: Repeater.cpp:SkScalarFraction(float)
Unexecuted instantiation: RoundCorners.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkCubicMap.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSGClipEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSGColorFilter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSGDraw.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSGEffectNode.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSGGeometryEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSGGeometryNode.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSGGradient.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSGGroup.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSGImage.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSGMaskEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSGMerge.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSGNode.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSGOpacityEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSGPaint.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSGPath.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSGRect.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSGRenderEffect.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSGRenderNode.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSGTransform.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSGInvalidationController.cpp:SkScalarFraction(float)
Unexecuted instantiation: FuzzAnimatedImage.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkAnimatedImage.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkAndroidCodec.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkAndroidCodecAdapter.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSampledCodec.cpp:SkScalarFraction(float)
Unexecuted instantiation: FuzzIncrementalImage.cpp:SkScalarFraction(float)
Unexecuted instantiation: FuzzAPIImageFilter.cpp:SkScalarFraction(float)
Unexecuted instantiation: FuzzMockGPUCanvas.cpp:SkScalarFraction(float)
Unexecuted instantiation: FuzzDrawFunctions.cpp:SkScalarFraction(float)
Unexecuted instantiation: SkSurface_Null.cpp:SkScalarFraction(float)
Unexecuted instantiation: FuzzTriangulation.cpp:SkScalarFraction(float)
Unexecuted instantiation: FuzzAndroidCodec.cpp:SkScalarFraction(float)
Unexecuted instantiation: FuzzJPEGEncoder.cpp:SkScalarFraction(float)
Unexecuted instantiation: FuzzSKP.cpp:SkScalarFraction(float)
Unexecuted instantiation: FuzzCubicRoots.cpp:SkScalarFraction(float)
70
71
63.6k
static inline SkScalar SkScalarSquare(SkScalar x) { return x * x; }
Unexecuted instantiation: FuzzImage.cpp:SkScalarSquare(float)
Unexecuted instantiation: Fuzz.cpp:SkScalarSquare(float)
Unexecuted instantiation: FuzzCommon.cpp:SkScalarSquare(float)
Unexecuted instantiation: CommandLineFlags.cpp:SkScalarSquare(float)
Unexecuted instantiation: BackendSurfaceFactory.cpp:SkScalarSquare(float)
Unexecuted instantiation: BackendTextureImageFactory.cpp:SkScalarSquare(float)
Unexecuted instantiation: FlushFinishTracker.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrContextFactory.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrTest.cpp:SkScalarSquare(float)
Unexecuted instantiation: ManagedBackendTexture.cpp:SkScalarSquare(float)
Unexecuted instantiation: MemoryCache.cpp:SkScalarSquare(float)
Unexecuted instantiation: ProtectedUtils.cpp:SkScalarSquare(float)
Unexecuted instantiation: ProxyUtils.cpp:SkScalarSquare(float)
Unexecuted instantiation: TestContext.cpp:SkScalarSquare(float)
Unexecuted instantiation: TestOps.cpp:SkScalarSquare(float)
Unexecuted instantiation: YUVUtils.cpp:SkScalarSquare(float)
Unexecuted instantiation: MockTestContext.cpp:SkScalarSquare(float)
Unexecuted instantiation: TextBlobTools.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkTestCanvas.cpp:SkScalarSquare(float)
Unexecuted instantiation: VkTestContext.cpp:SkScalarSquare(float)
Unexecuted instantiation: VkTestHelper.cpp:SkScalarSquare(float)
Unexecuted instantiation: VkTestMemoryAllocator.cpp:SkScalarSquare(float)
Unexecuted instantiation: VkTestUtils.cpp:SkScalarSquare(float)
Unexecuted instantiation: VkYcbcrSamplerHelper.cpp:SkScalarSquare(float)
Unexecuted instantiation: AtlasTextOpTools.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrAtlasTools.cpp:SkScalarSquare(float)
Unexecuted instantiation: ContextFactory.cpp:SkScalarSquare(float)
Unexecuted instantiation: GraphiteTestContext.cpp:SkScalarSquare(float)
Unexecuted instantiation: ProtectedUtils_Graphite.cpp:SkScalarSquare(float)
Unexecuted instantiation: UniqueKeyUtils.cpp:SkScalarSquare(float)
Unexecuted instantiation: GraphiteVulkanTestContext.cpp:SkScalarSquare(float)
Unexecuted instantiation: DDLPromiseImageHelper.cpp:SkScalarSquare(float)
Unexecuted instantiation: DDLTileHelper.cpp:SkScalarSquare(float)
Unexecuted instantiation: DecodeUtils.cpp:SkScalarSquare(float)
Unexecuted instantiation: EncodeUtils.cpp:SkScalarSquare(float)
Unexecuted instantiation: GpuToolUtils.cpp:SkScalarSquare(float)
Unexecuted instantiation: MSKPPlayer.cpp:SkScalarSquare(float)
Unexecuted instantiation: Resources.cpp:SkScalarSquare(float)
Unexecuted instantiation: RuntimeBlendUtils.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkMetaData.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSharingProc.cpp:SkScalarSquare(float)
Unexecuted instantiation: TestFontDataProvider.cpp:SkScalarSquare(float)
Unexecuted instantiation: ToolUtils.cpp:SkScalarSquare(float)
Unexecuted instantiation: UrlDataManager.cpp:SkScalarSquare(float)
Unexecuted instantiation: DebugCanvas.cpp:SkScalarSquare(float)
Unexecuted instantiation: DebugLayerManager.cpp:SkScalarSquare(float)
Unexecuted instantiation: DrawCommand.cpp:SkScalarSquare(float)
Unexecuted instantiation: JsonWriteBuffer.cpp:SkScalarSquare(float)
Unexecuted instantiation: FontToolUtils.cpp:SkScalarSquare(float)
Unexecuted instantiation: RandomScalerContext.cpp:SkScalarSquare(float)
Unexecuted instantiation: TestFontMgr.cpp:SkScalarSquare(float)
Unexecuted instantiation: TestSVGTypeface.cpp:SkScalarSquare(float)
Unexecuted instantiation: TestTypeface.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkTextBlobTrace.cpp:SkScalarSquare(float)
Unexecuted instantiation: Timer.cpp:SkScalarSquare(float)
Unexecuted instantiation: SvgPathExtractor.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkAutoPixmapStorage.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkBitmap.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkBlendMode.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkBlendModeBlender.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkCanvas.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkCanvasPriv.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkCanvas_Raster.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkChecksum.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkColor.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkColorFilter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkColorSpace.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkColorSpaceXformSteps.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkConvertPixels.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkData.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkDevice.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkDrawable.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkFlattenable.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkFont.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkFontMgr.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkGeometry.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkGlyph.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkImageFilter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkImageFilterCache.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkImageFilterTypes.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkImageGenerator.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkImageInfo.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkKnownRuntimeEffects.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkLatticeIter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkLocalMatrixImageFilter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkM44.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkMD5.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkMallocPixelRef.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkMask.cpp:SkScalarSquare(float)
SkMatrix.cpp:SkScalarSquare(float)
Line
Count
Source
71
9.82k
static inline SkScalar SkScalarSquare(SkScalar x) { return x * x; }
Unexecuted instantiation: SkMatrixInvert.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkMipmap.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkMipmapHQDownSampler.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPaint.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPaintPriv.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPath.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPathBuilder.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPathEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPathRef.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPathUtils.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPicture.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPictureData.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPictureFlat.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPicturePlayback.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPictureRecord.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPictureRecorder.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPixelRef.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPixmap.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPoint.cpp:SkScalarSquare(float)
SkRRect.cpp:SkScalarSquare(float)
Line
Count
Source
71
1.64k
static inline SkScalar SkScalarSquare(SkScalar x) { return x * x; }
Unexecuted instantiation: SkRSXform.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkRasterPipeline.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkReadBuffer.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkReadPixelsRec.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkRecord.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkRecordDraw.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkRecordOpts.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkRecordedDrawable.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkRecorder.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkRecords.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkRect.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkRegion.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkRegion_path.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkResourceCache.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkRuntimeEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkScalerContext.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkScan_Path.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSpecialImage.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkStream.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkStrikeCache.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkStrikeSpec.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkString.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkStringUtils.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkStrokeRec.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSwizzler_opts.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSwizzler_opts_hsw.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSwizzler_opts_ssse3.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkTextBlob.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkTypeface.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkTypefaceCache.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkUnPreMultiply.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkVertices.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkWriteBuffer.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkWritePixelsRec.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkWriter32.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkYUVAInfo.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkYUVAPixmaps.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkYUVMath.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkImage.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkImage_Lazy.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkImage_Raster.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkImage_RasterFactories.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSurface.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSurface_Base.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSurface_Raster.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkTiledImageUtils.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkColorFilterShader.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkColorShader.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkImageShader.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkRuntimeShader.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkShader.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkShaderBase.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkWorkingColorSpaceShader.cpp:SkScalarSquare(float)
Unexecuted instantiation: GlyphRun.cpp:SkScalarSquare(float)
Unexecuted instantiation: SlugFromBuffer.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkOpBuilder.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkOpContour.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkOpEdgeBuilder.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkOpSegment.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkOpSpan.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPathOpsConic.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPathOpsCubic.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPathOpsCurve.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPathOpsDebug.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPathOpsLine.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPathOpsOp.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPathOpsQuad.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPathOpsRect.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPathOpsSimplify.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPathOpsTypes.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPathOpsWinding.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPathWriter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkReduceOrder.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkCustomTypeface.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkJSON.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkJSONWriter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkMatrix22.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkMultiPictureDocument.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkNWayCanvas.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkOSPath.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPaintFilterCanvas.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkParse.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPatchUtils.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkShadowUtils.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkBlenders.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkLinearGradient.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkBlendModeColorFilter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkColorFilterBase.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkComposeColorFilter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkGaussianColorFilter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkMatrixColorFilter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkRuntimeColorFilter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkWorkingFormatColorFilter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkCodec.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkCodecImageGenerator.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkImageGenerator_FromEncoded.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPixmapUtils.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSampler.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkBmpCodec.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkBmpMaskCodec.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkBmpRLECodec.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkBmpStandardCodec.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkWbmpCodec.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLAnalysis.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLCompiler.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLErrorReporter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLInliner.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLMangler.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLModuleLoader.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLParser.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLCheckProgramStructure.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLFinalizationChecks.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLGetReturnComplexity.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLHasSideEffects.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLIsConstantExpression.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLProgramUsage.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLReturnsInputAlpha.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLSymbolTableStackBuilder.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLRasterPipelineBuilder.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLRasterPipelineCodeGenerator.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLBlock.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLExpressionStatement.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLFieldAccess.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLForStatement.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLFunctionCall.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLFunctionDeclaration.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLFunctionDefinition.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLIfStatement.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLIndexExpression.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLInterfaceBlock.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLProgram.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLSetting.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLStructDefinition.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLSwitchStatement.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLSymbol.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLSymbolTable.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLType.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLVarDeclarations.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLVariable.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLDebugTracePriv.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLAddConstToVarModifiers.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLEliminateDeadFunctions.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLEliminateDeadGlobalVariables.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLEliminateDeadLocalVariables.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLEliminateEmptyStatements.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLEliminateUnnecessaryBraces.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLEliminateUnreachableCode.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLFindAndDeclareBuiltinFunctions.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLFindAndDeclareBuiltinStructs.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLFindAndDeclareBuiltinVariables.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLHoistSwitchVarDeclarationsAtTopLevel.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLRenamePrivateSymbols.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLReplaceConstVarsWithLiterals.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkGlobalInitialization_default.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkOSFile_stdio.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkOSFile_posix.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkFontMgr_custom_empty.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrAuditTrail.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrBackendSurface.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrCanvas.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrCaps.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrColorInfo.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrColorSpaceXform.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrContext_Base.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrDeferredDisplayList.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrDeferredDisplayListRecorder.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrDirectContext.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrDirectContextPriv.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrDrawOpAtlas.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrDrawingManager.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrFragmentProcessor.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrGeometryProcessor.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrGpu.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrGpuBuffer.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrGpuResource.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrImageContext.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrImageInfo.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrOpFlushState.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrOpsRenderPass.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrPersistentCacheUtils.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrPipeline.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrProcessor.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrProcessorAnalysis.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrProcessorSet.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrProgramInfo.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrPromiseImageTexture.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrProxyProvider.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrRecordingContext.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrRecordingContextPriv.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrRenderTargetProxy.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrRenderTask.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrRenderTaskCluster.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrResourceAllocator.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrResourceCache.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrResourceProvider.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrRingBuffer.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrShaderCaps.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrStagingBufferManager.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrStencilSettings.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrSurface.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrSurfaceCharacterization.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrSurfaceProxy.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrSurfaceProxyView.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrTestUtils.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrTexture.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrTextureProxy.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrTextureRenderTargetProxy.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrTextureResolveRenderTask.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrThreadSafeCache.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrThreadSafePipelineBuilder.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrTransferFromRenderTask.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrWaitRenderTask.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrWritePixelsRenderTask.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrXferProcessor.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrYUVABackendTextures.cpp:SkScalarSquare(float)
Unexecuted instantiation: PathRendererChain.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkGr.cpp:SkScalarSquare(float)
Unexecuted instantiation: SurfaceContext.cpp:SkScalarSquare(float)
Unexecuted instantiation: SurfaceDrawContext.cpp:SkScalarSquare(float)
Unexecuted instantiation: SurfaceFillContext.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrBicubicEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrBlendFragmentProcessor.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrCustomXfermode.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrDisableColorXP.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrMatrixEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrPorterDuffXferProcessor.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrSkSLFP.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrTextureEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrQuad.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrQuadUtils.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrShape.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrStyledShape.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrGLSLBlend.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrGLSLProgramBuilder.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrGLSLProgramDataManager.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrGLSLShaderBuilder.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrGLSLUniformHandler.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrGLSLVarying.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrGLSLVertexGeoBuilder.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrImageUtils.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrTextureGenerator.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkImage_Ganesh.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkImage_GaneshBase.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkImage_GaneshFactories.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkImage_GaneshYUVA.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkImage_LazyTexture.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkImage_RasterPinnable.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSpecialImage_Ganesh.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrMockGpu.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrMockTypes.cpp:SkScalarSquare(float)
Unexecuted instantiation: AAConvexPathRenderer.cpp:SkScalarSquare(float)
Unexecuted instantiation: AAHairLinePathRenderer.cpp:SkScalarSquare(float)
Unexecuted instantiation: AALinearizingConvexPathRenderer.cpp:SkScalarSquare(float)
Unexecuted instantiation: AtlasPathRenderer.cpp:SkScalarSquare(float)
Unexecuted instantiation: AtlasRenderTask.cpp:SkScalarSquare(float)
Unexecuted instantiation: AtlasTextOp.cpp:SkScalarSquare(float)
Unexecuted instantiation: ClearOp.cpp:SkScalarSquare(float)
Unexecuted instantiation: DashLinePathRenderer.cpp:SkScalarSquare(float)
Unexecuted instantiation: DashOp.cpp:SkScalarSquare(float)
Unexecuted instantiation: DefaultPathRenderer.cpp:SkScalarSquare(float)
Unexecuted instantiation: DrawAtlasOp.cpp:SkScalarSquare(float)
Unexecuted instantiation: DrawAtlasPathOp.cpp:SkScalarSquare(float)
Unexecuted instantiation: DrawMeshOp.cpp:SkScalarSquare(float)
Unexecuted instantiation: DrawableOp.cpp:SkScalarSquare(float)
Unexecuted instantiation: FillRRectOp.cpp:SkScalarSquare(float)
Unexecuted instantiation: FillRectOp.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrMeshDrawOp.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrOp.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrOvalOpFactory.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrSimpleMeshDrawOpHelper.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrSimpleMeshDrawOpHelperWithStencil.cpp:SkScalarSquare(float)
Unexecuted instantiation: LatticeOp.cpp:SkScalarSquare(float)
Unexecuted instantiation: OpsTask.cpp:SkScalarSquare(float)
Unexecuted instantiation: PathStencilCoverOp.cpp:SkScalarSquare(float)
Unexecuted instantiation: QuadPerEdgeAA.cpp:SkScalarSquare(float)
Unexecuted instantiation: RegionOp.cpp:SkScalarSquare(float)
Unexecuted instantiation: ShadowRRectOp.cpp:SkScalarSquare(float)
Unexecuted instantiation: SmallPathAtlasMgr.cpp:SkScalarSquare(float)
Unexecuted instantiation: SmallPathRenderer.cpp:SkScalarSquare(float)
Unexecuted instantiation: SmallPathShapeData.cpp:SkScalarSquare(float)
Unexecuted instantiation: SoftwarePathRenderer.cpp:SkScalarSquare(float)
Unexecuted instantiation: StrokeRectOp.cpp:SkScalarSquare(float)
Unexecuted instantiation: TessellationPathRenderer.cpp:SkScalarSquare(float)
Unexecuted instantiation: TextureOp.cpp:SkScalarSquare(float)
Unexecuted instantiation: TriangulatingPathRenderer.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSurface_Ganesh.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrPathTessellationShader.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrTessellationShader.cpp:SkScalarSquare(float)
Unexecuted instantiation: PathTessellator.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrAtlasManager.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrVkBackendSurface.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrVkDirectContext.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrVkGpu.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrVkImage.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrVkImageView.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrVkMSAALoadManager.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrVkOpsRenderPass.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrVkPipeline.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrVkPipelineState.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrVkPipelineStateCache.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrVkPipelineStateDataManager.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrVkRenderPass.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrVkRenderTarget.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrVkResourceProvider.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrVkSampler.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrVkSamplerYcbcrConversion.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrVkSemaphore.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrVkTexture.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrVkTextureRenderTarget.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrVkUtil.cpp:SkScalarSquare(float)
Unexecuted instantiation: BackendTexture.cpp:SkScalarSquare(float)
Unexecuted instantiation: Context.cpp:SkScalarSquare(float)
Unexecuted instantiation: GlobalCache.cpp:SkScalarSquare(float)
Unexecuted instantiation: ImageFactories.cpp:SkScalarSquare(float)
Unexecuted instantiation: Image_Graphite.cpp:SkScalarSquare(float)
Unexecuted instantiation: Image_YUVA_Graphite.cpp:SkScalarSquare(float)
Unexecuted instantiation: QueueManager.cpp:SkScalarSquare(float)
Unexecuted instantiation: Recorder.cpp:SkScalarSquare(float)
Unexecuted instantiation: Recording.cpp:SkScalarSquare(float)
Unexecuted instantiation: RendererProvider.cpp:SkScalarSquare(float)
Unexecuted instantiation: Resource.cpp:SkScalarSquare(float)
Unexecuted instantiation: ResourceCache.cpp:SkScalarSquare(float)
Unexecuted instantiation: ResourceProvider.cpp:SkScalarSquare(float)
Unexecuted instantiation: ScratchResourceManager.cpp:SkScalarSquare(float)
Unexecuted instantiation: SharedContext.cpp:SkScalarSquare(float)
Unexecuted instantiation: Surface_Graphite.cpp:SkScalarSquare(float)
Unexecuted instantiation: Texture.cpp:SkScalarSquare(float)
Unexecuted instantiation: TextureInfo.cpp:SkScalarSquare(float)
Unexecuted instantiation: TextureProxy.cpp:SkScalarSquare(float)
Unexecuted instantiation: TextureUtils.cpp:SkScalarSquare(float)
Unexecuted instantiation: UploadBufferManager.cpp:SkScalarSquare(float)
Unexecuted instantiation: YUVABackendTextures.cpp:SkScalarSquare(float)
Unexecuted instantiation: AnalyticBlurRenderStep.cpp:SkScalarSquare(float)
Unexecuted instantiation: AnalyticRRectRenderStep.cpp:SkScalarSquare(float)
Unexecuted instantiation: BitmapTextRenderStep.cpp:SkScalarSquare(float)
Unexecuted instantiation: CoverBoundsRenderStep.cpp:SkScalarSquare(float)
Unexecuted instantiation: CoverageMaskRenderStep.cpp:SkScalarSquare(float)
Unexecuted instantiation: GraphiteVertexFiller.cpp:SkScalarSquare(float)
Unexecuted instantiation: MiddleOutFanRenderStep.cpp:SkScalarSquare(float)
Unexecuted instantiation: PerEdgeAAQuadRenderStep.cpp:SkScalarSquare(float)
Unexecuted instantiation: SDFTextRenderStep.cpp:SkScalarSquare(float)
Unexecuted instantiation: TessellateCurvesRenderStep.cpp:SkScalarSquare(float)
Unexecuted instantiation: TessellateStrokesRenderStep.cpp:SkScalarSquare(float)
Unexecuted instantiation: TessellateWedgesRenderStep.cpp:SkScalarSquare(float)
Unexecuted instantiation: VerticesRenderStep.cpp:SkScalarSquare(float)
Unexecuted instantiation: CopyTask.cpp:SkScalarSquare(float)
Unexecuted instantiation: SynchronizeToCpuTask.cpp:SkScalarSquare(float)
Unexecuted instantiation: TaskList.cpp:SkScalarSquare(float)
Unexecuted instantiation: UploadTask.cpp:SkScalarSquare(float)
Unexecuted instantiation: TextAtlasManager.cpp:SkScalarSquare(float)
Unexecuted instantiation: VulkanGraphiteUtils.cpp:SkScalarSquare(float)
Unexecuted instantiation: VulkanQueueManager.cpp:SkScalarSquare(float)
Unexecuted instantiation: VulkanSharedContext.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPngEncoderImpl.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkHeifCodec.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkJpegCodec.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkJpegDecoderMgr.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkJpegMetadataDecoderImpl.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkJpegSourceMgr.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkJpegUtility.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkJpegXmp.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkIcoCodec.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPngCodec.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkRawCodec.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkWebpCodec.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkWuffsCodec.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkXmp.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkFontHost_FreeType.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkFontHost_FreeType_common.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkFontMgr_custom.cpp:SkScalarSquare(float)
Unexecuted instantiation: AtlasTypes.cpp:SkScalarSquare(float)
Unexecuted instantiation: Blend.cpp:SkScalarSquare(float)
Unexecuted instantiation: BlendFormula.cpp:SkScalarSquare(float)
Unexecuted instantiation: BlurUtils.cpp:SkScalarSquare(float)
Unexecuted instantiation: DataUtils.cpp:SkScalarSquare(float)
Unexecuted instantiation: DitherUtils.cpp:SkScalarSquare(float)
Unexecuted instantiation: PipelineUtils.cpp:SkScalarSquare(float)
Unexecuted instantiation: ResourceKey.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkBackingFit.cpp:SkScalarSquare(float)
Unexecuted instantiation: Swizzle.cpp:SkScalarSquare(float)
Unexecuted instantiation: FixedCountBufferUtils.cpp:SkScalarSquare(float)
Unexecuted instantiation: Tessellation.cpp:SkScalarSquare(float)
Unexecuted instantiation: DistanceFieldAdjustTable.cpp:SkScalarSquare(float)
Unexecuted instantiation: GlyphVector.cpp:SkScalarSquare(float)
Unexecuted instantiation: SDFTControl.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkChromeRemoteGlyphCache.cpp:SkScalarSquare(float)
Unexecuted instantiation: Slug.cpp:SkScalarSquare(float)
Unexecuted instantiation: SlugImpl.cpp:SkScalarSquare(float)
Unexecuted instantiation: StrikeCache.cpp:SkScalarSquare(float)
Unexecuted instantiation: SubRunContainer.cpp:SkScalarSquare(float)
Unexecuted instantiation: TextBlob.cpp:SkScalarSquare(float)
Unexecuted instantiation: TextBlobRedrawCoordinator.cpp:SkScalarSquare(float)
Unexecuted instantiation: VertexFiller.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLPipelineStageCodeGenerator.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLSPIRVCodeGenerator.cpp:SkScalarSquare(float)
Unexecuted instantiation: VulkanAMDMemoryAllocator.cpp:SkScalarSquare(float)
Unexecuted instantiation: VulkanExtensions.cpp:SkScalarSquare(float)
Unexecuted instantiation: VulkanInterface.cpp:SkScalarSquare(float)
Unexecuted instantiation: VulkanUtilsPriv.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkJpegMultiPicture.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkJpegSegmentScan.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkAAClip.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkBBHFactory.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkBigPicture.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkBitmapCache.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkBitmapDevice.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkBitmapProcState_opts.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkBitmapProcState_opts_ssse3.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkBlitter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkBlitter_A8.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkBlitter_ARGB32.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkBlurMask.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkBlurMaskFilterImpl.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkCompressedDataUtils.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkCubicClipper.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkDescriptor.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkDistanceFieldGen.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkDocument.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkDraw.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkDrawBase.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkDrawShadowInfo.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkDraw_atlas.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkDraw_text.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkDraw_vertices.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkEdge.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkEdgeBuilder.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkEdgeClipper.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkFontDescriptor.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkFontMetricsPriv.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkFont_serial.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkGlyphRunPainter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkGraphics.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkLineClipper.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkMaskBlurFilter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkMaskCache.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkMaskFilter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkMaskGamma.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkMesh.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkMipmapAccessor.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkMipmapBuilder.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkOpts.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPath_serial.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPixmapDraw.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkRTree.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkRasterClip.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkRasterPipelineBlitter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkRuntimeBlender.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkScalar.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkScan.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkScan_AntiPath.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkScan_Antihair.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkScan_Hairline.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkStrike.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkStroke.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkStrokerPriv.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkTypeface_remote.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkVertState.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkYUVPlanesCache.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkImage_Base.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkImage_Picture.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPictureImageGenerator.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkRescaleAndReadPixels.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkBitmapProcShader.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkBlendShader.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkCoordClampShader.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkEmptyShader.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkLocalMatrixShader.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPerlinNoiseShaderImpl.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPictureShader.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkTransformShader.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkTriColorShader.cpp:SkScalarSquare(float)
Unexecuted instantiation: StrikeForGPU.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkAddIntersections.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkDConicLineIntersection.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkDCubicLineIntersection.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkDLineIntersection.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkDQuadLineIntersection.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkIntersections.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkOpAngle.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkOpCoincidence.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkOpCubicHull.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPathOpsAsWinding.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPathOpsCommon.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPathOpsTSect.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkDashPath.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkShaderUtils.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkShadowTessellator.cpp:SkScalarSquare(float)
Unexecuted instantiation: Sk1DPathEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: Sk2DPathEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkCornerPathEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkDashPathEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkDiscretePathEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkEmbossMaskFilter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkShaderMaskFilterImpl.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkTrimPathEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkConicalGradient.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkGradientBaseShader.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkRadialGradient.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSweepGradient.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkColorSpaceXformColorFilter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkTableColorFilter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkBlendImageFilter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkBlurImageFilter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkColorFilterImageFilter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkComposeImageFilter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkCropImageFilter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkDisplacementMapImageFilter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkDropShadowImageFilter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkImageImageFilter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkLightingImageFilter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkMagnifierImageFilter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkMatrixConvolutionImageFilter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkMatrixTransformImageFilter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkMergeImageFilter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkMorphologyImageFilter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPictureImageFilter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkRuntimeImageFilter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkShaderImageFilter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkColorPalette.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkExif.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkMaskSwizzler.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSwizzler.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkTiffUtility.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkBmpBaseCodec.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkEncoder.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkICC.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLBuiltinTypes.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLIntrinsicList.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLUtil.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLCanExitWithoutReturningValue.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLGetLoopUnrollInfo.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLIsDynamicallyUniformExpression.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkEncodedInfo.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkParseEncodedOrigin.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkOTUtils.cpp:SkScalarSquare(float)
Unexecuted instantiation: Device.cpp:SkScalarSquare(float)
Unexecuted instantiation: Device_drawTexture.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrAttachment.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrBackendTextureImageGenerator.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrBackendUtils.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrBlurUtils.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrBufferAllocPool.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrBufferTransferRenderTask.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrBufferUpdateRenderTask.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrClientMappedBufferManager.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrContextThreadSafeProxy.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrCopyRenderTask.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrDDLContext.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrDDLTask.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrDataUtils.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrDefaultGeoProcFactory.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrDistanceFieldGenFromVector.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrDrawOpTest.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrDynamicAtlas.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrEagerVertexAllocator.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrFixedClip.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrFragmentProcessors.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrMeshDrawTarget.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrOnFlushResourceProvider.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrPaint.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrProcessorUnitTest.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrRenderTarget.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrSWMaskHelper.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrShaderVar.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrStyle.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrUniformDataManager.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrUtil.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrVertexChunkArray.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrYUVATextureProxies.cpp:SkScalarSquare(float)
Unexecuted instantiation: PathRenderer.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrBezierEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrBitmapTextGeoProc.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrColorTableEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrCoverageSetOpXP.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrDistanceFieldGeoProc.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrModulateAtlasCoverageEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrPerlinNoise2Effect.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrRRectEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrShadowGeoProc.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrYUVtoRGBEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrAAConvexTessellator.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrAATriangulator.cpp:SkScalarSquare(float)
GrPathUtils.cpp:SkScalarSquare(float)
Line
Count
Source
71
52.2k
static inline SkScalar SkScalarSquare(SkScalar x) { return x * x; }
Unexecuted instantiation: GrTriangulator.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrGLSLFragmentShaderBuilder.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrGradientShader.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrMockCaps.cpp:SkScalarSquare(float)
Unexecuted instantiation: AtlasInstancedHelper.cpp:SkScalarSquare(float)
Unexecuted instantiation: PathInnerTriangulateOp.cpp:SkScalarSquare(float)
Unexecuted instantiation: PathTessellateOp.cpp:SkScalarSquare(float)
Unexecuted instantiation: StrokeTessellateOp.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrStrokeTessellationShader.cpp:SkScalarSquare(float)
Unexecuted instantiation: StrokeTessellator.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrVkBuffer.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrVkCaps.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrVkCommandBuffer.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrVkCommandPool.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrVkContextThreadSafeProxy.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrVkDescriptorPool.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrVkDescriptorSetManager.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrVkFramebuffer.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrVkPipelineStateBuilder.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrVkUniformHandler.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrVkVaryingHandler.cpp:SkScalarSquare(float)
Unexecuted instantiation: AtlasProvider.cpp:SkScalarSquare(float)
Unexecuted instantiation: Buffer.cpp:SkScalarSquare(float)
Unexecuted instantiation: BufferManager.cpp:SkScalarSquare(float)
Unexecuted instantiation: Caps.cpp:SkScalarSquare(float)
Unexecuted instantiation: ClientMappedBufferManager.cpp:SkScalarSquare(float)
Unexecuted instantiation: CommandBuffer.cpp:SkScalarSquare(float)
Unexecuted instantiation: ComputePathAtlas.cpp:SkScalarSquare(float)
Unexecuted instantiation: ContextUtils.cpp:SkScalarSquare(float)
Unexecuted instantiation: DrawAtlas.cpp:SkScalarSquare(float)
Unexecuted instantiation: DrawContext.cpp:SkScalarSquare(float)
Unexecuted instantiation: DrawList.cpp:SkScalarSquare(float)
Unexecuted instantiation: DrawPass.cpp:SkScalarSquare(float)
Unexecuted instantiation: DrawWriter.cpp:SkScalarSquare(float)
Unexecuted instantiation: GpuWorkSubmission.cpp:SkScalarSquare(float)
Unexecuted instantiation: Image_Base_Graphite.cpp:SkScalarSquare(float)
Unexecuted instantiation: KeyContext.cpp:SkScalarSquare(float)
Unexecuted instantiation: PaintParams.cpp:SkScalarSquare(float)
Unexecuted instantiation: PaintParamsKey.cpp:SkScalarSquare(float)
Unexecuted instantiation: PathAtlas.cpp:SkScalarSquare(float)
Unexecuted instantiation: PipelineData.cpp:SkScalarSquare(float)
Unexecuted instantiation: ProxyCache.cpp:SkScalarSquare(float)
Unexecuted instantiation: RasterPathAtlas.cpp:SkScalarSquare(float)
Unexecuted instantiation: RasterPathUtils.cpp:SkScalarSquare(float)
Unexecuted instantiation: RenderPassDesc.cpp:SkScalarSquare(float)
Unexecuted instantiation: Renderer.cpp:SkScalarSquare(float)
Unexecuted instantiation: ShaderCodeDictionary.cpp:SkScalarSquare(float)
Unexecuted instantiation: SpecialImage_Graphite.cpp:SkScalarSquare(float)
Unexecuted instantiation: UniformManager.cpp:SkScalarSquare(float)
Unexecuted instantiation: DispatchGroup.cpp:SkScalarSquare(float)
Unexecuted instantiation: AnalyticBlurMask.cpp:SkScalarSquare(float)
Unexecuted instantiation: IntersectionTree.cpp:SkScalarSquare(float)
Unexecuted instantiation: Shape.cpp:SkScalarSquare(float)
Unexecuted instantiation: Transform.cpp:SkScalarSquare(float)
Unexecuted instantiation: ClearBuffersTask.cpp:SkScalarSquare(float)
Unexecuted instantiation: ComputeTask.cpp:SkScalarSquare(float)
Unexecuted instantiation: DrawTask.cpp:SkScalarSquare(float)
Unexecuted instantiation: RenderPassTask.cpp:SkScalarSquare(float)
Unexecuted instantiation: VulkanBuffer.cpp:SkScalarSquare(float)
Unexecuted instantiation: VulkanCaps.cpp:SkScalarSquare(float)
Unexecuted instantiation: VulkanCommandBuffer.cpp:SkScalarSquare(float)
Unexecuted instantiation: VulkanGraphiteTypes.cpp:SkScalarSquare(float)
Unexecuted instantiation: VulkanRenderPass.cpp:SkScalarSquare(float)
Unexecuted instantiation: VulkanResourceProvider.cpp:SkScalarSquare(float)
Unexecuted instantiation: VulkanSampler.cpp:SkScalarSquare(float)
Unexecuted instantiation: VulkanSamplerYcbcrConversion.cpp:SkScalarSquare(float)
Unexecuted instantiation: VulkanTexture.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkOpts_hsw.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkOpts_skx.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkDOM.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkXMLParser.cpp:SkScalarSquare(float)
Unexecuted instantiation: TiledTextureUtils.cpp:SkScalarSquare(float)
Unexecuted instantiation: SDFMaskFilter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkAnalyticEdge.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkBitmapProcState.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkBitmapProcState_matrixProcs.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkBlitMask_opts.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkBlitMask_opts_ssse3.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkBlitRow_D32.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkBlitRow_opts.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkBlitRow_opts_hsw.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkBlitter_Sprite.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkColorTable.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPathMeasure.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPoint3.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkScan_AAAPath.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSpriteBlitter_ARGB32.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPolyUtils.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkEmbossMask.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkOTTable_name.cpp:SkScalarSquare(float)
Unexecuted instantiation: ClipStack.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrProgramDesc.cpp:SkScalarSquare(float)
Unexecuted instantiation: StencilMaskHelper.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrConvexPolyEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrOvalEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrGradientBitmapCache.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrVkDescriptorSet.cpp:SkScalarSquare(float)
Unexecuted instantiation: ClipStack_graphite.cpp:SkScalarSquare(float)
Unexecuted instantiation: KeyHelpers.cpp:SkScalarSquare(float)
Unexecuted instantiation: RuntimeEffectDictionary.cpp:SkScalarSquare(float)
Unexecuted instantiation: VulkanDescriptorPool.cpp:SkScalarSquare(float)
Unexecuted instantiation: VulkanDescriptorSet.cpp:SkScalarSquare(float)
Unexecuted instantiation: VulkanFramebuffer.cpp:SkScalarSquare(float)
Unexecuted instantiation: VulkanGraphicsPipeline.cpp:SkScalarSquare(float)
Unexecuted instantiation: VulkanImageView.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkAlphaRuns.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkContourMeasure.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGDOM.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGEllipse.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGFe.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGFeBlend.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGFeColorMatrix.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGFeComponentTransfer.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGFeComposite.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGFeDisplacementMap.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGFeFlood.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGFeGaussianBlur.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGFeImage.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGFeLightSource.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGFeLighting.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGFeMerge.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGFeMorphology.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGFeOffset.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGFeTurbulence.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGFilter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGFilterContext.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGImage.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGLine.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGLinearGradient.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGMask.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGNode.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGPath.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGPattern.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGPoly.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGRadialGradient.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGRect.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGRenderContext.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGSVG.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGShape.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGStop.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGText.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGTransformableNode.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGUse.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGAttribute.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGAttributeParser.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGCircle.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGClipPath.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGContainer.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGGradient.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkShaper.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkShaper_factory.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkShaper_primitive.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkShaper_skunicode.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkShaper_harfbuzz.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkUnicode_icu.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkUnicode_icu_bidi.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkBidiFactory_icu_full.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkParseColor.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkParsePath.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkUnicode.cpp:SkScalarSquare(float)
Unexecuted instantiation: FuzzTextBlobDeserialize.cpp:SkScalarSquare(float)
Unexecuted instantiation: FuzzGradients.cpp:SkScalarSquare(float)
Unexecuted instantiation: FuzzSVG.cpp:SkScalarSquare(float)
Unexecuted instantiation: FuzzCanvas.cpp:SkScalarSquare(float)
Unexecuted instantiation: FuzzNullCanvas.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkNullCanvas.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkColorMatrixFilter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkHighContrastFilter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPDFDocument.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPDFFont.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPDFFormXObject.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPDFMakeCIDGlyphWidthsArray.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPDFMakeToUnicodeCmap.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPDFMetadata.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPDFSubsetFont.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPDFTag.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPDFType1Font.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPDFTypes.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPDFUtils.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGCanvas.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSVGDevice.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkAnnotation.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkClipStack.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkClipStackDevice.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkDeflate.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPDFBitmap.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPDFDevice.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPDFGraphicStackState.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPDFGraphicState.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPDFResourceDict.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPDFShader.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkXMLWriter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkClipStackUtils.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkJpegEncoderImpl.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkClusterator.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkKeyedImage.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPDFGradientShader.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkJPEGWriteUtility.cpp:SkScalarSquare(float)
Unexecuted instantiation: FuzzImageFilterDeserialize.cpp:SkScalarSquare(float)
Unexecuted instantiation: FuzzJSON.cpp:SkScalarSquare(float)
Unexecuted instantiation: FuzzPrecompile.cpp:SkScalarSquare(float)
Unexecuted instantiation: FactoryFunctions.cpp:SkScalarSquare(float)
Unexecuted instantiation: Precompile.cpp:SkScalarSquare(float)
Unexecuted instantiation: PublicPrecompile.cpp:SkScalarSquare(float)
Unexecuted instantiation: FuzzEncoders.cpp:SkScalarSquare(float)
Unexecuted instantiation: FuzzWEBPEncoder.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkWebpEncoderImpl.cpp:SkScalarSquare(float)
Unexecuted instantiation: FuzzQuadRoots.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLCheckSymbolTableCorrectness.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrManagedResource.cpp:SkScalarSquare(float)
Unexecuted instantiation: GrMemoryPool.cpp:SkScalarSquare(float)
Unexecuted instantiation: FuzzCreateDDL.cpp:SkScalarSquare(float)
Unexecuted instantiation: FuzzAPICreateDDL.cpp:SkScalarSquare(float)
Unexecuted instantiation: FuzzSkParagraph.cpp:SkScalarSquare(float)
Unexecuted instantiation: FontCollection.cpp:SkScalarSquare(float)
Unexecuted instantiation: ParagraphBuilderImpl.cpp:SkScalarSquare(float)
Unexecuted instantiation: ParagraphCache.cpp:SkScalarSquare(float)
Unexecuted instantiation: ParagraphImpl.cpp:SkScalarSquare(float)
Unexecuted instantiation: ParagraphPainterImpl.cpp:SkScalarSquare(float)
Unexecuted instantiation: ParagraphStyle.cpp:SkScalarSquare(float)
Unexecuted instantiation: Run.cpp:SkScalarSquare(float)
Unexecuted instantiation: TextLine.cpp:SkScalarSquare(float)
Unexecuted instantiation: TextShadow.cpp:SkScalarSquare(float)
Unexecuted instantiation: TextStyle.cpp:SkScalarSquare(float)
Unexecuted instantiation: TextWrapper.cpp:SkScalarSquare(float)
Unexecuted instantiation: TypefaceFontProvider.cpp:SkScalarSquare(float)
Unexecuted instantiation: Decorations.cpp:SkScalarSquare(float)
Unexecuted instantiation: FontArguments.cpp:SkScalarSquare(float)
Unexecuted instantiation: OneLineShaper.cpp:SkScalarSquare(float)
Unexecuted instantiation: FuzzRegionSetPath.cpp:SkScalarSquare(float)
Unexecuted instantiation: FuzzPathMeasure.cpp:SkScalarSquare(float)
Unexecuted instantiation: FuzzDDLThreading.cpp:SkScalarSquare(float)
Unexecuted instantiation: FuzzAPISVGCanvas.cpp:SkScalarSquare(float)
Unexecuted instantiation: FuzzRegionDeserialize.cpp:SkScalarSquare(float)
Unexecuted instantiation: FuzzPNGEncoder.cpp:SkScalarSquare(float)
Unexecuted instantiation: FuzzRasterN32Canvas.cpp:SkScalarSquare(float)
Unexecuted instantiation: FuzzRegionOp.cpp:SkScalarSquare(float)
Unexecuted instantiation: FuzzPathop.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkPathOpsTightBounds.cpp:SkScalarSquare(float)
Unexecuted instantiation: FuzzSkDescriptorDeserialize.cpp:SkScalarSquare(float)
Unexecuted instantiation: FuzzPolyUtils.cpp:SkScalarSquare(float)
Unexecuted instantiation: FuzzCOLRv1.cpp:SkScalarSquare(float)
Unexecuted instantiation: FuzzPathDeserialize.cpp:SkScalarSquare(float)
Unexecuted instantiation: FuzzSkottieJSON.cpp:SkScalarSquare(float)
Unexecuted instantiation: Skottie.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkottieJson.cpp:SkScalarSquare(float)
Unexecuted instantiation: SlotManager.cpp:SkScalarSquare(float)
Unexecuted instantiation: Animator.cpp:SkScalarSquare(float)
Unexecuted instantiation: ScalarKeyframeAnimator.cpp:SkScalarSquare(float)
Unexecuted instantiation: VectorKeyframeAnimator.cpp:SkScalarSquare(float)
Unexecuted instantiation: TextLayer.cpp:SkScalarSquare(float)
Unexecuted instantiation: Font.cpp:SkScalarSquare(float)
Unexecuted instantiation: TextAdapter.cpp:SkScalarSquare(float)
Unexecuted instantiation: TextAnimator.cpp:SkScalarSquare(float)
Unexecuted instantiation: TextShaper.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkResources.cpp:SkScalarSquare(float)
Unexecuted instantiation: Composition.cpp:SkScalarSquare(float)
Unexecuted instantiation: Layer.cpp:SkScalarSquare(float)
Unexecuted instantiation: Path.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkottieProperty.cpp:SkScalarSquare(float)
Unexecuted instantiation: KeyframeAnimator.cpp:SkScalarSquare(float)
Unexecuted instantiation: ShapeKeyframeAnimator.cpp:SkScalarSquare(float)
Unexecuted instantiation: TextKeyframeAnimator.cpp:SkScalarSquare(float)
Unexecuted instantiation: Vec2KeyframeAnimator.cpp:SkScalarSquare(float)
Unexecuted instantiation: Effects.cpp:SkScalarSquare(float)
Unexecuted instantiation: FillEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: FractalNoiseEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: GaussianBlurEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: GlowStyles.cpp:SkScalarSquare(float)
Unexecuted instantiation: GradientEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: HueSaturationEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: InvertEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: LevelsEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: LinearWipeEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: MotionBlurEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: MotionTileEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: RadialWipeEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: ShadowStyles.cpp:SkScalarSquare(float)
Unexecuted instantiation: SharpenEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: ShiftChannelsEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSLEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: SphereEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: ThresholdEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: TintEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: TransformEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: TritoneEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: VenetianBlindsEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: AudioLayer.cpp:SkScalarSquare(float)
Unexecuted instantiation: FootageLayer.cpp:SkScalarSquare(float)
Unexecuted instantiation: NullLayer.cpp:SkScalarSquare(float)
Unexecuted instantiation: PrecompLayer.cpp:SkScalarSquare(float)
Unexecuted instantiation: SolidLayer.cpp:SkScalarSquare(float)
Unexecuted instantiation: ShapeLayer.cpp:SkScalarSquare(float)
Unexecuted instantiation: TrimPaths.cpp:SkScalarSquare(float)
Unexecuted instantiation: RangeSelector.cpp:SkScalarSquare(float)
Unexecuted instantiation: TextValue.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkAnimCodecPlayer.cpp:SkScalarSquare(float)
Unexecuted instantiation: BlendModes.cpp:SkScalarSquare(float)
Unexecuted instantiation: Camera.cpp:SkScalarSquare(float)
Unexecuted instantiation: BlackAndWhiteEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: BrightnessContrastEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: BulgeEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: CCTonerEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: CornerPinEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: DirectionalBlur.cpp:SkScalarSquare(float)
Unexecuted instantiation: DisplacementMapEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: DropShadowEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: Ellipse.cpp:SkScalarSquare(float)
Unexecuted instantiation: FillStroke.cpp:SkScalarSquare(float)
Unexecuted instantiation: Gradient.cpp:SkScalarSquare(float)
Unexecuted instantiation: MergePaths.cpp:SkScalarSquare(float)
Unexecuted instantiation: OffsetPaths.cpp:SkScalarSquare(float)
Unexecuted instantiation: Polystar.cpp:SkScalarSquare(float)
Unexecuted instantiation: PuckerBloat.cpp:SkScalarSquare(float)
Unexecuted instantiation: Rectangle.cpp:SkScalarSquare(float)
Unexecuted instantiation: Repeater.cpp:SkScalarSquare(float)
Unexecuted instantiation: RoundCorners.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkCubicMap.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSGClipEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSGColorFilter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSGDraw.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSGEffectNode.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSGGeometryEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSGGeometryNode.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSGGradient.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSGGroup.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSGImage.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSGMaskEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSGMerge.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSGNode.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSGOpacityEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSGPaint.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSGPath.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSGRect.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSGRenderEffect.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSGRenderNode.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSGTransform.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSGInvalidationController.cpp:SkScalarSquare(float)
Unexecuted instantiation: FuzzAnimatedImage.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkAnimatedImage.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkAndroidCodec.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkAndroidCodecAdapter.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSampledCodec.cpp:SkScalarSquare(float)
Unexecuted instantiation: FuzzIncrementalImage.cpp:SkScalarSquare(float)
Unexecuted instantiation: FuzzAPIImageFilter.cpp:SkScalarSquare(float)
Unexecuted instantiation: FuzzMockGPUCanvas.cpp:SkScalarSquare(float)
Unexecuted instantiation: FuzzDrawFunctions.cpp:SkScalarSquare(float)
Unexecuted instantiation: SkSurface_Null.cpp:SkScalarSquare(float)
Unexecuted instantiation: FuzzTriangulation.cpp:SkScalarSquare(float)
Unexecuted instantiation: FuzzAndroidCodec.cpp:SkScalarSquare(float)
Unexecuted instantiation: FuzzJPEGEncoder.cpp:SkScalarSquare(float)
Unexecuted instantiation: FuzzSKP.cpp:SkScalarSquare(float)
Unexecuted instantiation: FuzzCubicRoots.cpp:SkScalarSquare(float)
72
73
85.3M
#define SkScalarInvert(x)           (SK_Scalar1 / (x))
74
3.27G
#define SkScalarAve(a, b)           (((a) + (b)) * SK_ScalarHalf)
75
126M
#define SkScalarHalf(a)             ((a) * SK_ScalarHalf)
76
77
362k
#define SkDegreesToRadians(degrees) ((degrees) * (SK_ScalarPI / 180))
78
2.40k
#define SkRadiansToDegrees(radians) ((radians) * (180 / SK_ScalarPI))
79
80
49.6k
static inline bool SkScalarIsInt(SkScalar x) {
81
49.6k
    return x == SkScalarFloorToScalar(x);
82
49.6k
}
Unexecuted instantiation: FuzzImage.cpp:SkScalarIsInt(float)
Unexecuted instantiation: Fuzz.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FuzzCommon.cpp:SkScalarIsInt(float)
Unexecuted instantiation: CommandLineFlags.cpp:SkScalarIsInt(float)
Unexecuted instantiation: BackendSurfaceFactory.cpp:SkScalarIsInt(float)
Unexecuted instantiation: BackendTextureImageFactory.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FlushFinishTracker.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrContextFactory.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrTest.cpp:SkScalarIsInt(float)
Unexecuted instantiation: ManagedBackendTexture.cpp:SkScalarIsInt(float)
Unexecuted instantiation: MemoryCache.cpp:SkScalarIsInt(float)
Unexecuted instantiation: ProtectedUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: ProxyUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: TestContext.cpp:SkScalarIsInt(float)
Unexecuted instantiation: TestOps.cpp:SkScalarIsInt(float)
Unexecuted instantiation: YUVUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: MockTestContext.cpp:SkScalarIsInt(float)
Unexecuted instantiation: TextBlobTools.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkTestCanvas.cpp:SkScalarIsInt(float)
Unexecuted instantiation: VkTestContext.cpp:SkScalarIsInt(float)
Unexecuted instantiation: VkTestHelper.cpp:SkScalarIsInt(float)
Unexecuted instantiation: VkTestMemoryAllocator.cpp:SkScalarIsInt(float)
Unexecuted instantiation: VkTestUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: VkYcbcrSamplerHelper.cpp:SkScalarIsInt(float)
Unexecuted instantiation: AtlasTextOpTools.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrAtlasTools.cpp:SkScalarIsInt(float)
Unexecuted instantiation: ContextFactory.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GraphiteTestContext.cpp:SkScalarIsInt(float)
Unexecuted instantiation: ProtectedUtils_Graphite.cpp:SkScalarIsInt(float)
Unexecuted instantiation: UniqueKeyUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GraphiteVulkanTestContext.cpp:SkScalarIsInt(float)
Unexecuted instantiation: DDLPromiseImageHelper.cpp:SkScalarIsInt(float)
Unexecuted instantiation: DDLTileHelper.cpp:SkScalarIsInt(float)
Unexecuted instantiation: DecodeUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: EncodeUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GpuToolUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: MSKPPlayer.cpp:SkScalarIsInt(float)
Unexecuted instantiation: Resources.cpp:SkScalarIsInt(float)
Unexecuted instantiation: RuntimeBlendUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkMetaData.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSharingProc.cpp:SkScalarIsInt(float)
Unexecuted instantiation: TestFontDataProvider.cpp:SkScalarIsInt(float)
Unexecuted instantiation: ToolUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: UrlDataManager.cpp:SkScalarIsInt(float)
Unexecuted instantiation: DebugCanvas.cpp:SkScalarIsInt(float)
Unexecuted instantiation: DebugLayerManager.cpp:SkScalarIsInt(float)
Unexecuted instantiation: DrawCommand.cpp:SkScalarIsInt(float)
Unexecuted instantiation: JsonWriteBuffer.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FontToolUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: RandomScalerContext.cpp:SkScalarIsInt(float)
Unexecuted instantiation: TestFontMgr.cpp:SkScalarIsInt(float)
Unexecuted instantiation: TestSVGTypeface.cpp:SkScalarIsInt(float)
Unexecuted instantiation: TestTypeface.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkTextBlobTrace.cpp:SkScalarIsInt(float)
Unexecuted instantiation: Timer.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SvgPathExtractor.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkAutoPixmapStorage.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkBitmap.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkBlendMode.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkBlendModeBlender.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkCanvas.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkCanvasPriv.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkCanvas_Raster.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkChecksum.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkColor.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkColorFilter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkColorSpace.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkColorSpaceXformSteps.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkConvertPixels.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkData.cpp:SkScalarIsInt(float)
SkDevice.cpp:SkScalarIsInt(float)
Line
Count
Source
80
28.3k
static inline bool SkScalarIsInt(SkScalar x) {
81
28.3k
    return x == SkScalarFloorToScalar(x);
82
28.3k
}
Unexecuted instantiation: SkDrawable.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkFlattenable.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkFont.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkFontMgr.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkGeometry.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkGlyph.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkImageFilter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkImageFilterCache.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkImageFilterTypes.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkImageGenerator.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkImageInfo.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkKnownRuntimeEffects.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkLatticeIter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkLocalMatrixImageFilter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkM44.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkMD5.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkMallocPixelRef.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkMask.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkMatrix.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkMatrixInvert.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkMipmap.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkMipmapHQDownSampler.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPaint.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPaintPriv.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPath.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPathBuilder.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPathEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPathRef.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPathUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPicture.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPictureData.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPictureFlat.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPicturePlayback.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPictureRecord.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPictureRecorder.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPixelRef.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPixmap.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPoint.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkRRect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkRSXform.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkRasterPipeline.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkReadBuffer.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkReadPixelsRec.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkRecord.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkRecordDraw.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkRecordOpts.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkRecordedDrawable.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkRecorder.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkRecords.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkRect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkRegion.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkRegion_path.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkResourceCache.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkRuntimeEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkScalerContext.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkScan_Path.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSpecialImage.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkStream.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkStrikeCache.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkStrikeSpec.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkString.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkStringUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkStrokeRec.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSwizzler_opts.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSwizzler_opts_hsw.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSwizzler_opts_ssse3.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkTextBlob.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkTypeface.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkTypefaceCache.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkUnPreMultiply.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkVertices.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkWriteBuffer.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkWritePixelsRec.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkWriter32.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkYUVAInfo.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkYUVAPixmaps.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkYUVMath.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkImage.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkImage_Lazy.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkImage_Raster.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkImage_RasterFactories.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSurface.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSurface_Base.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSurface_Raster.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkTiledImageUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkColorFilterShader.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkColorShader.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkImageShader.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkRuntimeShader.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkShader.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkShaderBase.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkWorkingColorSpaceShader.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GlyphRun.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SlugFromBuffer.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkOpBuilder.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkOpContour.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkOpEdgeBuilder.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkOpSegment.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkOpSpan.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPathOpsConic.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPathOpsCubic.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPathOpsCurve.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPathOpsDebug.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPathOpsLine.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPathOpsOp.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPathOpsQuad.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPathOpsRect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPathOpsSimplify.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPathOpsTypes.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPathOpsWinding.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPathWriter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkReduceOrder.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkCustomTypeface.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkJSON.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkJSONWriter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkMatrix22.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkMultiPictureDocument.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkNWayCanvas.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkOSPath.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPaintFilterCanvas.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkParse.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPatchUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkShadowUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkBlenders.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkLinearGradient.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkBlendModeColorFilter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkColorFilterBase.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkComposeColorFilter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkGaussianColorFilter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkMatrixColorFilter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkRuntimeColorFilter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkWorkingFormatColorFilter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkCodec.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkCodecImageGenerator.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkImageGenerator_FromEncoded.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPixmapUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSampler.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkBmpCodec.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkBmpMaskCodec.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkBmpRLECodec.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkBmpStandardCodec.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkWbmpCodec.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLAnalysis.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLCompiler.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLErrorReporter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLInliner.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLMangler.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLModuleLoader.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLParser.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLCheckProgramStructure.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLFinalizationChecks.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLGetReturnComplexity.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLHasSideEffects.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLIsConstantExpression.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLProgramUsage.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLReturnsInputAlpha.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLSymbolTableStackBuilder.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLRasterPipelineBuilder.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLRasterPipelineCodeGenerator.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLBlock.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLExpressionStatement.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLFieldAccess.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLForStatement.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLFunctionCall.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLFunctionDeclaration.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLFunctionDefinition.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLIfStatement.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLIndexExpression.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLInterfaceBlock.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLProgram.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLSetting.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLStructDefinition.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLSwitchStatement.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLSymbol.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLSymbolTable.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLType.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLVarDeclarations.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLVariable.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLDebugTracePriv.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLAddConstToVarModifiers.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLEliminateDeadFunctions.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLEliminateDeadGlobalVariables.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLEliminateDeadLocalVariables.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLEliminateEmptyStatements.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLEliminateUnnecessaryBraces.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLEliminateUnreachableCode.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLFindAndDeclareBuiltinFunctions.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLFindAndDeclareBuiltinStructs.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLFindAndDeclareBuiltinVariables.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLHoistSwitchVarDeclarationsAtTopLevel.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLRenamePrivateSymbols.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLReplaceConstVarsWithLiterals.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkGlobalInitialization_default.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkOSFile_stdio.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkOSFile_posix.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkFontMgr_custom_empty.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrAuditTrail.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrBackendSurface.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrCanvas.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrCaps.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrColorInfo.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrColorSpaceXform.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrContext_Base.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrDeferredDisplayList.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrDeferredDisplayListRecorder.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrDirectContext.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrDirectContextPriv.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrDrawOpAtlas.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrDrawingManager.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrFragmentProcessor.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrGeometryProcessor.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrGpu.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrGpuBuffer.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrGpuResource.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrImageContext.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrImageInfo.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrOpFlushState.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrOpsRenderPass.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrPersistentCacheUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrPipeline.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrProcessor.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrProcessorAnalysis.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrProcessorSet.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrProgramInfo.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrPromiseImageTexture.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrProxyProvider.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrRecordingContext.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrRecordingContextPriv.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrRenderTargetProxy.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrRenderTask.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrRenderTaskCluster.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrResourceAllocator.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrResourceCache.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrResourceProvider.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrRingBuffer.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrShaderCaps.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrStagingBufferManager.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrStencilSettings.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrSurface.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrSurfaceCharacterization.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrSurfaceProxy.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrSurfaceProxyView.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrTestUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrTexture.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrTextureProxy.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrTextureRenderTargetProxy.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrTextureResolveRenderTask.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrThreadSafeCache.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrThreadSafePipelineBuilder.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrTransferFromRenderTask.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrWaitRenderTask.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrWritePixelsRenderTask.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrXferProcessor.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrYUVABackendTextures.cpp:SkScalarIsInt(float)
Unexecuted instantiation: PathRendererChain.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkGr.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SurfaceContext.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SurfaceDrawContext.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SurfaceFillContext.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrBicubicEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrBlendFragmentProcessor.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrCustomXfermode.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrDisableColorXP.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrMatrixEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrPorterDuffXferProcessor.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrSkSLFP.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrTextureEffect.cpp:SkScalarIsInt(float)
GrQuad.cpp:SkScalarIsInt(float)
Line
Count
Source
80
17.4k
static inline bool SkScalarIsInt(SkScalar x) {
81
17.4k
    return x == SkScalarFloorToScalar(x);
82
17.4k
}
Unexecuted instantiation: GrQuadUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrShape.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrStyledShape.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrGLSLBlend.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrGLSLProgramBuilder.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrGLSLProgramDataManager.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrGLSLShaderBuilder.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrGLSLUniformHandler.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrGLSLVarying.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrGLSLVertexGeoBuilder.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrImageUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrTextureGenerator.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkImage_Ganesh.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkImage_GaneshBase.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkImage_GaneshFactories.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkImage_GaneshYUVA.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkImage_LazyTexture.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkImage_RasterPinnable.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSpecialImage_Ganesh.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrMockGpu.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrMockTypes.cpp:SkScalarIsInt(float)
Unexecuted instantiation: AAConvexPathRenderer.cpp:SkScalarIsInt(float)
Unexecuted instantiation: AAHairLinePathRenderer.cpp:SkScalarIsInt(float)
Unexecuted instantiation: AALinearizingConvexPathRenderer.cpp:SkScalarIsInt(float)
Unexecuted instantiation: AtlasPathRenderer.cpp:SkScalarIsInt(float)
Unexecuted instantiation: AtlasRenderTask.cpp:SkScalarIsInt(float)
Unexecuted instantiation: AtlasTextOp.cpp:SkScalarIsInt(float)
Unexecuted instantiation: ClearOp.cpp:SkScalarIsInt(float)
Unexecuted instantiation: DashLinePathRenderer.cpp:SkScalarIsInt(float)
Unexecuted instantiation: DashOp.cpp:SkScalarIsInt(float)
Unexecuted instantiation: DefaultPathRenderer.cpp:SkScalarIsInt(float)
Unexecuted instantiation: DrawAtlasOp.cpp:SkScalarIsInt(float)
Unexecuted instantiation: DrawAtlasPathOp.cpp:SkScalarIsInt(float)
Unexecuted instantiation: DrawMeshOp.cpp:SkScalarIsInt(float)
Unexecuted instantiation: DrawableOp.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FillRRectOp.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FillRectOp.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrMeshDrawOp.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrOp.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrOvalOpFactory.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrSimpleMeshDrawOpHelper.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrSimpleMeshDrawOpHelperWithStencil.cpp:SkScalarIsInt(float)
Unexecuted instantiation: LatticeOp.cpp:SkScalarIsInt(float)
Unexecuted instantiation: OpsTask.cpp:SkScalarIsInt(float)
Unexecuted instantiation: PathStencilCoverOp.cpp:SkScalarIsInt(float)
Unexecuted instantiation: QuadPerEdgeAA.cpp:SkScalarIsInt(float)
Unexecuted instantiation: RegionOp.cpp:SkScalarIsInt(float)
Unexecuted instantiation: ShadowRRectOp.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SmallPathAtlasMgr.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SmallPathRenderer.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SmallPathShapeData.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SoftwarePathRenderer.cpp:SkScalarIsInt(float)
Unexecuted instantiation: StrokeRectOp.cpp:SkScalarIsInt(float)
Unexecuted instantiation: TessellationPathRenderer.cpp:SkScalarIsInt(float)
Unexecuted instantiation: TextureOp.cpp:SkScalarIsInt(float)
Unexecuted instantiation: TriangulatingPathRenderer.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSurface_Ganesh.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrPathTessellationShader.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrTessellationShader.cpp:SkScalarIsInt(float)
Unexecuted instantiation: PathTessellator.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrAtlasManager.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrVkBackendSurface.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrVkDirectContext.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrVkGpu.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrVkImage.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrVkImageView.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrVkMSAALoadManager.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrVkOpsRenderPass.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrVkPipeline.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrVkPipelineState.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrVkPipelineStateCache.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrVkPipelineStateDataManager.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrVkRenderPass.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrVkRenderTarget.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrVkResourceProvider.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrVkSampler.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrVkSamplerYcbcrConversion.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrVkSemaphore.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrVkTexture.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrVkTextureRenderTarget.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrVkUtil.cpp:SkScalarIsInt(float)
Unexecuted instantiation: BackendTexture.cpp:SkScalarIsInt(float)
Unexecuted instantiation: Context.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GlobalCache.cpp:SkScalarIsInt(float)
Unexecuted instantiation: ImageFactories.cpp:SkScalarIsInt(float)
Unexecuted instantiation: Image_Graphite.cpp:SkScalarIsInt(float)
Unexecuted instantiation: Image_YUVA_Graphite.cpp:SkScalarIsInt(float)
Unexecuted instantiation: QueueManager.cpp:SkScalarIsInt(float)
Unexecuted instantiation: Recorder.cpp:SkScalarIsInt(float)
Unexecuted instantiation: Recording.cpp:SkScalarIsInt(float)
Unexecuted instantiation: RendererProvider.cpp:SkScalarIsInt(float)
Unexecuted instantiation: Resource.cpp:SkScalarIsInt(float)
Unexecuted instantiation: ResourceCache.cpp:SkScalarIsInt(float)
Unexecuted instantiation: ResourceProvider.cpp:SkScalarIsInt(float)
Unexecuted instantiation: ScratchResourceManager.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SharedContext.cpp:SkScalarIsInt(float)
Unexecuted instantiation: Surface_Graphite.cpp:SkScalarIsInt(float)
Unexecuted instantiation: Texture.cpp:SkScalarIsInt(float)
Unexecuted instantiation: TextureInfo.cpp:SkScalarIsInt(float)
Unexecuted instantiation: TextureProxy.cpp:SkScalarIsInt(float)
Unexecuted instantiation: TextureUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: UploadBufferManager.cpp:SkScalarIsInt(float)
Unexecuted instantiation: YUVABackendTextures.cpp:SkScalarIsInt(float)
Unexecuted instantiation: AnalyticBlurRenderStep.cpp:SkScalarIsInt(float)
Unexecuted instantiation: AnalyticRRectRenderStep.cpp:SkScalarIsInt(float)
Unexecuted instantiation: BitmapTextRenderStep.cpp:SkScalarIsInt(float)
Unexecuted instantiation: CoverBoundsRenderStep.cpp:SkScalarIsInt(float)
Unexecuted instantiation: CoverageMaskRenderStep.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GraphiteVertexFiller.cpp:SkScalarIsInt(float)
Unexecuted instantiation: MiddleOutFanRenderStep.cpp:SkScalarIsInt(float)
Unexecuted instantiation: PerEdgeAAQuadRenderStep.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SDFTextRenderStep.cpp:SkScalarIsInt(float)
Unexecuted instantiation: TessellateCurvesRenderStep.cpp:SkScalarIsInt(float)
Unexecuted instantiation: TessellateStrokesRenderStep.cpp:SkScalarIsInt(float)
Unexecuted instantiation: TessellateWedgesRenderStep.cpp:SkScalarIsInt(float)
Unexecuted instantiation: VerticesRenderStep.cpp:SkScalarIsInt(float)
Unexecuted instantiation: CopyTask.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SynchronizeToCpuTask.cpp:SkScalarIsInt(float)
Unexecuted instantiation: TaskList.cpp:SkScalarIsInt(float)
Unexecuted instantiation: UploadTask.cpp:SkScalarIsInt(float)
Unexecuted instantiation: TextAtlasManager.cpp:SkScalarIsInt(float)
Unexecuted instantiation: VulkanGraphiteUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: VulkanQueueManager.cpp:SkScalarIsInt(float)
Unexecuted instantiation: VulkanSharedContext.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPngEncoderImpl.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkHeifCodec.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkJpegCodec.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkJpegDecoderMgr.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkJpegMetadataDecoderImpl.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkJpegSourceMgr.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkJpegUtility.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkJpegXmp.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkIcoCodec.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPngCodec.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkRawCodec.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkWebpCodec.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkWuffsCodec.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkXmp.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkFontHost_FreeType.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkFontHost_FreeType_common.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkFontMgr_custom.cpp:SkScalarIsInt(float)
Unexecuted instantiation: AtlasTypes.cpp:SkScalarIsInt(float)
Unexecuted instantiation: Blend.cpp:SkScalarIsInt(float)
Unexecuted instantiation: BlendFormula.cpp:SkScalarIsInt(float)
Unexecuted instantiation: BlurUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: DataUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: DitherUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: PipelineUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: ResourceKey.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkBackingFit.cpp:SkScalarIsInt(float)
Unexecuted instantiation: Swizzle.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FixedCountBufferUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: Tessellation.cpp:SkScalarIsInt(float)
Unexecuted instantiation: DistanceFieldAdjustTable.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GlyphVector.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SDFTControl.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkChromeRemoteGlyphCache.cpp:SkScalarIsInt(float)
Unexecuted instantiation: Slug.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SlugImpl.cpp:SkScalarIsInt(float)
Unexecuted instantiation: StrikeCache.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SubRunContainer.cpp:SkScalarIsInt(float)
TextBlob.cpp:SkScalarIsInt(float)
Line
Count
Source
80
108
static inline bool SkScalarIsInt(SkScalar x) {
81
108
    return x == SkScalarFloorToScalar(x);
82
108
}
Unexecuted instantiation: TextBlobRedrawCoordinator.cpp:SkScalarIsInt(float)
VertexFiller.cpp:SkScalarIsInt(float)
Line
Count
Source
80
3.29k
static inline bool SkScalarIsInt(SkScalar x) {
81
3.29k
    return x == SkScalarFloorToScalar(x);
82
3.29k
}
Unexecuted instantiation: SkSLPipelineStageCodeGenerator.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLSPIRVCodeGenerator.cpp:SkScalarIsInt(float)
Unexecuted instantiation: VulkanAMDMemoryAllocator.cpp:SkScalarIsInt(float)
Unexecuted instantiation: VulkanExtensions.cpp:SkScalarIsInt(float)
Unexecuted instantiation: VulkanInterface.cpp:SkScalarIsInt(float)
Unexecuted instantiation: VulkanUtilsPriv.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkJpegMultiPicture.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkJpegSegmentScan.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkAAClip.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkBBHFactory.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkBigPicture.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkBitmapCache.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkBitmapDevice.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkBitmapProcState_opts.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkBitmapProcState_opts_ssse3.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkBlitter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkBlitter_A8.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkBlitter_ARGB32.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkBlurMask.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkBlurMaskFilterImpl.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkCompressedDataUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkCubicClipper.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkDescriptor.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkDistanceFieldGen.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkDocument.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkDraw.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkDrawBase.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkDrawShadowInfo.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkDraw_atlas.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkDraw_text.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkDraw_vertices.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkEdge.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkEdgeBuilder.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkEdgeClipper.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkFontDescriptor.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkFontMetricsPriv.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkFont_serial.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkGlyphRunPainter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkGraphics.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkLineClipper.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkMaskBlurFilter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkMaskCache.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkMaskFilter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkMaskGamma.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkMesh.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkMipmapAccessor.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkMipmapBuilder.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkOpts.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPath_serial.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPixmapDraw.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkRTree.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkRasterClip.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkRasterPipelineBlitter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkRuntimeBlender.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkScalar.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkScan.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkScan_AntiPath.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkScan_Antihair.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkScan_Hairline.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkStrike.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkStroke.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkStrokerPriv.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkTypeface_remote.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkVertState.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkYUVPlanesCache.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkImage_Base.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkImage_Picture.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPictureImageGenerator.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkRescaleAndReadPixels.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkBitmapProcShader.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkBlendShader.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkCoordClampShader.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkEmptyShader.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkLocalMatrixShader.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPerlinNoiseShaderImpl.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPictureShader.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkTransformShader.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkTriColorShader.cpp:SkScalarIsInt(float)
Unexecuted instantiation: StrikeForGPU.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkAddIntersections.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkDConicLineIntersection.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkDCubicLineIntersection.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkDLineIntersection.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkDQuadLineIntersection.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkIntersections.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkOpAngle.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkOpCoincidence.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkOpCubicHull.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPathOpsAsWinding.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPathOpsCommon.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPathOpsTSect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkDashPath.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkShaderUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkShadowTessellator.cpp:SkScalarIsInt(float)
Unexecuted instantiation: Sk1DPathEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: Sk2DPathEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkCornerPathEffect.cpp:SkScalarIsInt(float)
SkDashPathEffect.cpp:SkScalarIsInt(float)
Line
Count
Source
80
453
static inline bool SkScalarIsInt(SkScalar x) {
81
453
    return x == SkScalarFloorToScalar(x);
82
453
}
Unexecuted instantiation: SkDiscretePathEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkEmbossMaskFilter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkShaderMaskFilterImpl.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkTrimPathEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkConicalGradient.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkGradientBaseShader.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkRadialGradient.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSweepGradient.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkColorSpaceXformColorFilter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkTableColorFilter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkBlendImageFilter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkBlurImageFilter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkColorFilterImageFilter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkComposeImageFilter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkCropImageFilter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkDisplacementMapImageFilter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkDropShadowImageFilter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkImageImageFilter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkLightingImageFilter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkMagnifierImageFilter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkMatrixConvolutionImageFilter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkMatrixTransformImageFilter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkMergeImageFilter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkMorphologyImageFilter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPictureImageFilter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkRuntimeImageFilter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkShaderImageFilter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkColorPalette.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkExif.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkMaskSwizzler.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSwizzler.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkTiffUtility.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkBmpBaseCodec.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkEncoder.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkICC.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLBuiltinTypes.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLIntrinsicList.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLUtil.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLCanExitWithoutReturningValue.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLGetLoopUnrollInfo.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLIsDynamicallyUniformExpression.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkEncodedInfo.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkParseEncodedOrigin.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkOTUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: Device.cpp:SkScalarIsInt(float)
Unexecuted instantiation: Device_drawTexture.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrAttachment.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrBackendTextureImageGenerator.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrBackendUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrBlurUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrBufferAllocPool.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrBufferTransferRenderTask.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrBufferUpdateRenderTask.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrClientMappedBufferManager.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrContextThreadSafeProxy.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrCopyRenderTask.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrDDLContext.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrDDLTask.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrDataUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrDefaultGeoProcFactory.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrDistanceFieldGenFromVector.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrDrawOpTest.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrDynamicAtlas.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrEagerVertexAllocator.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrFixedClip.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrFragmentProcessors.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrMeshDrawTarget.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrOnFlushResourceProvider.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrPaint.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrProcessorUnitTest.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrRenderTarget.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrSWMaskHelper.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrShaderVar.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrStyle.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrUniformDataManager.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrUtil.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrVertexChunkArray.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrYUVATextureProxies.cpp:SkScalarIsInt(float)
Unexecuted instantiation: PathRenderer.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrBezierEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrBitmapTextGeoProc.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrColorTableEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrCoverageSetOpXP.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrDistanceFieldGeoProc.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrModulateAtlasCoverageEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrPerlinNoise2Effect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrRRectEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrShadowGeoProc.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrYUVtoRGBEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrAAConvexTessellator.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrAATriangulator.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrPathUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrTriangulator.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrGLSLFragmentShaderBuilder.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrGradientShader.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrMockCaps.cpp:SkScalarIsInt(float)
Unexecuted instantiation: AtlasInstancedHelper.cpp:SkScalarIsInt(float)
Unexecuted instantiation: PathInnerTriangulateOp.cpp:SkScalarIsInt(float)
Unexecuted instantiation: PathTessellateOp.cpp:SkScalarIsInt(float)
Unexecuted instantiation: StrokeTessellateOp.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrStrokeTessellationShader.cpp:SkScalarIsInt(float)
Unexecuted instantiation: StrokeTessellator.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrVkBuffer.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrVkCaps.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrVkCommandBuffer.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrVkCommandPool.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrVkContextThreadSafeProxy.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrVkDescriptorPool.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrVkDescriptorSetManager.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrVkFramebuffer.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrVkPipelineStateBuilder.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrVkUniformHandler.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrVkVaryingHandler.cpp:SkScalarIsInt(float)
Unexecuted instantiation: AtlasProvider.cpp:SkScalarIsInt(float)
Unexecuted instantiation: Buffer.cpp:SkScalarIsInt(float)
Unexecuted instantiation: BufferManager.cpp:SkScalarIsInt(float)
Unexecuted instantiation: Caps.cpp:SkScalarIsInt(float)
Unexecuted instantiation: ClientMappedBufferManager.cpp:SkScalarIsInt(float)
Unexecuted instantiation: CommandBuffer.cpp:SkScalarIsInt(float)
Unexecuted instantiation: ComputePathAtlas.cpp:SkScalarIsInt(float)
Unexecuted instantiation: ContextUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: DrawAtlas.cpp:SkScalarIsInt(float)
Unexecuted instantiation: DrawContext.cpp:SkScalarIsInt(float)
Unexecuted instantiation: DrawList.cpp:SkScalarIsInt(float)
Unexecuted instantiation: DrawPass.cpp:SkScalarIsInt(float)
Unexecuted instantiation: DrawWriter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GpuWorkSubmission.cpp:SkScalarIsInt(float)
Unexecuted instantiation: Image_Base_Graphite.cpp:SkScalarIsInt(float)
Unexecuted instantiation: KeyContext.cpp:SkScalarIsInt(float)
Unexecuted instantiation: PaintParams.cpp:SkScalarIsInt(float)
Unexecuted instantiation: PaintParamsKey.cpp:SkScalarIsInt(float)
Unexecuted instantiation: PathAtlas.cpp:SkScalarIsInt(float)
Unexecuted instantiation: PipelineData.cpp:SkScalarIsInt(float)
Unexecuted instantiation: ProxyCache.cpp:SkScalarIsInt(float)
Unexecuted instantiation: RasterPathAtlas.cpp:SkScalarIsInt(float)
Unexecuted instantiation: RasterPathUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: RenderPassDesc.cpp:SkScalarIsInt(float)
Unexecuted instantiation: Renderer.cpp:SkScalarIsInt(float)
Unexecuted instantiation: ShaderCodeDictionary.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SpecialImage_Graphite.cpp:SkScalarIsInt(float)
Unexecuted instantiation: UniformManager.cpp:SkScalarIsInt(float)
Unexecuted instantiation: DispatchGroup.cpp:SkScalarIsInt(float)
Unexecuted instantiation: AnalyticBlurMask.cpp:SkScalarIsInt(float)
Unexecuted instantiation: IntersectionTree.cpp:SkScalarIsInt(float)
Unexecuted instantiation: Shape.cpp:SkScalarIsInt(float)
Unexecuted instantiation: Transform.cpp:SkScalarIsInt(float)
Unexecuted instantiation: ClearBuffersTask.cpp:SkScalarIsInt(float)
Unexecuted instantiation: ComputeTask.cpp:SkScalarIsInt(float)
Unexecuted instantiation: DrawTask.cpp:SkScalarIsInt(float)
Unexecuted instantiation: RenderPassTask.cpp:SkScalarIsInt(float)
Unexecuted instantiation: VulkanBuffer.cpp:SkScalarIsInt(float)
Unexecuted instantiation: VulkanCaps.cpp:SkScalarIsInt(float)
Unexecuted instantiation: VulkanCommandBuffer.cpp:SkScalarIsInt(float)
Unexecuted instantiation: VulkanGraphiteTypes.cpp:SkScalarIsInt(float)
Unexecuted instantiation: VulkanRenderPass.cpp:SkScalarIsInt(float)
Unexecuted instantiation: VulkanResourceProvider.cpp:SkScalarIsInt(float)
Unexecuted instantiation: VulkanSampler.cpp:SkScalarIsInt(float)
Unexecuted instantiation: VulkanSamplerYcbcrConversion.cpp:SkScalarIsInt(float)
Unexecuted instantiation: VulkanTexture.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkOpts_hsw.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkOpts_skx.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkDOM.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkXMLParser.cpp:SkScalarIsInt(float)
Unexecuted instantiation: TiledTextureUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SDFMaskFilter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkAnalyticEdge.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkBitmapProcState.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkBitmapProcState_matrixProcs.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkBlitMask_opts.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkBlitMask_opts_ssse3.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkBlitRow_D32.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkBlitRow_opts.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkBlitRow_opts_hsw.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkBlitter_Sprite.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkColorTable.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPathMeasure.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPoint3.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkScan_AAAPath.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSpriteBlitter_ARGB32.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPolyUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkEmbossMask.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkOTTable_name.cpp:SkScalarIsInt(float)
Unexecuted instantiation: ClipStack.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrProgramDesc.cpp:SkScalarIsInt(float)
Unexecuted instantiation: StencilMaskHelper.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrConvexPolyEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrOvalEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrGradientBitmapCache.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrVkDescriptorSet.cpp:SkScalarIsInt(float)
Unexecuted instantiation: ClipStack_graphite.cpp:SkScalarIsInt(float)
Unexecuted instantiation: KeyHelpers.cpp:SkScalarIsInt(float)
Unexecuted instantiation: RuntimeEffectDictionary.cpp:SkScalarIsInt(float)
Unexecuted instantiation: VulkanDescriptorPool.cpp:SkScalarIsInt(float)
Unexecuted instantiation: VulkanDescriptorSet.cpp:SkScalarIsInt(float)
Unexecuted instantiation: VulkanFramebuffer.cpp:SkScalarIsInt(float)
Unexecuted instantiation: VulkanGraphicsPipeline.cpp:SkScalarIsInt(float)
Unexecuted instantiation: VulkanImageView.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkAlphaRuns.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkContourMeasure.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGDOM.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGEllipse.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGFe.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGFeBlend.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGFeColorMatrix.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGFeComponentTransfer.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGFeComposite.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGFeDisplacementMap.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGFeFlood.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGFeGaussianBlur.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGFeImage.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGFeLightSource.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGFeLighting.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGFeMerge.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGFeMorphology.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGFeOffset.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGFeTurbulence.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGFilter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGFilterContext.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGImage.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGLine.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGLinearGradient.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGMask.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGNode.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGPath.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGPattern.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGPoly.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGRadialGradient.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGRect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGRenderContext.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGSVG.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGShape.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGStop.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGText.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGTransformableNode.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGUse.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGAttribute.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGAttributeParser.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGCircle.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGClipPath.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGContainer.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGGradient.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkShaper.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkShaper_factory.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkShaper_primitive.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkShaper_skunicode.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkShaper_harfbuzz.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkUnicode_icu.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkUnicode_icu_bidi.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkBidiFactory_icu_full.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkParseColor.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkParsePath.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkUnicode.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FuzzTextBlobDeserialize.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FuzzGradients.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FuzzSVG.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FuzzCanvas.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FuzzNullCanvas.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkNullCanvas.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkColorMatrixFilter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkHighContrastFilter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPDFDocument.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPDFFont.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPDFFormXObject.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPDFMakeCIDGlyphWidthsArray.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPDFMakeToUnicodeCmap.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPDFMetadata.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPDFSubsetFont.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPDFTag.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPDFType1Font.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPDFTypes.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPDFUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGCanvas.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSVGDevice.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkAnnotation.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkClipStack.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkClipStackDevice.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkDeflate.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPDFBitmap.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPDFDevice.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPDFGraphicStackState.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPDFGraphicState.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPDFResourceDict.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPDFShader.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkXMLWriter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkClipStackUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkJpegEncoderImpl.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkClusterator.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkKeyedImage.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPDFGradientShader.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkJPEGWriteUtility.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FuzzImageFilterDeserialize.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FuzzJSON.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FuzzPrecompile.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FactoryFunctions.cpp:SkScalarIsInt(float)
Unexecuted instantiation: Precompile.cpp:SkScalarIsInt(float)
Unexecuted instantiation: PublicPrecompile.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FuzzEncoders.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FuzzWEBPEncoder.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkWebpEncoderImpl.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FuzzQuadRoots.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkGlyph.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLCheckSymbolTableCorrectness.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrBlurUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrManagedResource.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GrMemoryPool.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FuzzCreateDDL.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FuzzAPICreateDDL.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FuzzSkParagraph.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FontCollection.cpp:SkScalarIsInt(float)
Unexecuted instantiation: ParagraphBuilderImpl.cpp:SkScalarIsInt(float)
Unexecuted instantiation: ParagraphCache.cpp:SkScalarIsInt(float)
Unexecuted instantiation: ParagraphImpl.cpp:SkScalarIsInt(float)
Unexecuted instantiation: ParagraphPainterImpl.cpp:SkScalarIsInt(float)
Unexecuted instantiation: ParagraphStyle.cpp:SkScalarIsInt(float)
Unexecuted instantiation: Run.cpp:SkScalarIsInt(float)
Unexecuted instantiation: TextLine.cpp:SkScalarIsInt(float)
Unexecuted instantiation: TextShadow.cpp:SkScalarIsInt(float)
Unexecuted instantiation: TextStyle.cpp:SkScalarIsInt(float)
Unexecuted instantiation: TextWrapper.cpp:SkScalarIsInt(float)
Unexecuted instantiation: TypefaceFontProvider.cpp:SkScalarIsInt(float)
Unexecuted instantiation: Decorations.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FontArguments.cpp:SkScalarIsInt(float)
Unexecuted instantiation: OneLineShaper.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FuzzRegionSetPath.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FuzzPathMeasure.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FuzzDDLThreading.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FuzzAPISVGCanvas.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FuzzRegionDeserialize.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FuzzPNGEncoder.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FuzzRasterN32Canvas.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FuzzRegionOp.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FuzzPathop.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkPathOpsTightBounds.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FuzzSkDescriptorDeserialize.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FuzzPolyUtils.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FuzzCOLRv1.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FuzzPathDeserialize.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FuzzSkottieJSON.cpp:SkScalarIsInt(float)
Unexecuted instantiation: Skottie.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkottieJson.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SlotManager.cpp:SkScalarIsInt(float)
Unexecuted instantiation: Animator.cpp:SkScalarIsInt(float)
Unexecuted instantiation: ScalarKeyframeAnimator.cpp:SkScalarIsInt(float)
Unexecuted instantiation: VectorKeyframeAnimator.cpp:SkScalarIsInt(float)
Unexecuted instantiation: TextLayer.cpp:SkScalarIsInt(float)
Unexecuted instantiation: Font.cpp:SkScalarIsInt(float)
Unexecuted instantiation: TextAdapter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: TextAnimator.cpp:SkScalarIsInt(float)
Unexecuted instantiation: TextShaper.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkResources.cpp:SkScalarIsInt(float)
Unexecuted instantiation: Composition.cpp:SkScalarIsInt(float)
Unexecuted instantiation: Layer.cpp:SkScalarIsInt(float)
Unexecuted instantiation: Path.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkottieProperty.cpp:SkScalarIsInt(float)
Unexecuted instantiation: KeyframeAnimator.cpp:SkScalarIsInt(float)
Unexecuted instantiation: ShapeKeyframeAnimator.cpp:SkScalarIsInt(float)
Unexecuted instantiation: TextKeyframeAnimator.cpp:SkScalarIsInt(float)
Unexecuted instantiation: Vec2KeyframeAnimator.cpp:SkScalarIsInt(float)
Unexecuted instantiation: Effects.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FillEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FractalNoiseEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GaussianBlurEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GlowStyles.cpp:SkScalarIsInt(float)
Unexecuted instantiation: GradientEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: HueSaturationEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: InvertEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: LevelsEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: LinearWipeEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: MotionBlurEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: MotionTileEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: RadialWipeEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: ShadowStyles.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SharpenEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: ShiftChannelsEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSLEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SphereEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: ThresholdEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: TintEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: TransformEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: TritoneEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: VenetianBlindsEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: AudioLayer.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FootageLayer.cpp:SkScalarIsInt(float)
Unexecuted instantiation: NullLayer.cpp:SkScalarIsInt(float)
Unexecuted instantiation: PrecompLayer.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SolidLayer.cpp:SkScalarIsInt(float)
Unexecuted instantiation: ShapeLayer.cpp:SkScalarIsInt(float)
Unexecuted instantiation: TrimPaths.cpp:SkScalarIsInt(float)
Unexecuted instantiation: RangeSelector.cpp:SkScalarIsInt(float)
Unexecuted instantiation: TextValue.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkAnimCodecPlayer.cpp:SkScalarIsInt(float)
Unexecuted instantiation: BlendModes.cpp:SkScalarIsInt(float)
Unexecuted instantiation: Camera.cpp:SkScalarIsInt(float)
Unexecuted instantiation: BlackAndWhiteEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: BrightnessContrastEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: BulgeEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: CCTonerEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: CornerPinEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: DirectionalBlur.cpp:SkScalarIsInt(float)
Unexecuted instantiation: DisplacementMapEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: DropShadowEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: Ellipse.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FillStroke.cpp:SkScalarIsInt(float)
Unexecuted instantiation: Gradient.cpp:SkScalarIsInt(float)
Unexecuted instantiation: MergePaths.cpp:SkScalarIsInt(float)
Unexecuted instantiation: OffsetPaths.cpp:SkScalarIsInt(float)
Unexecuted instantiation: Polystar.cpp:SkScalarIsInt(float)
Unexecuted instantiation: PuckerBloat.cpp:SkScalarIsInt(float)
Unexecuted instantiation: Rectangle.cpp:SkScalarIsInt(float)
Unexecuted instantiation: Repeater.cpp:SkScalarIsInt(float)
Unexecuted instantiation: RoundCorners.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkCubicMap.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSGClipEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSGColorFilter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSGDraw.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSGEffectNode.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSGGeometryEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSGGeometryNode.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSGGradient.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSGGroup.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSGImage.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSGMaskEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSGMerge.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSGNode.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSGOpacityEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSGPaint.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSGPath.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSGRect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSGRenderEffect.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSGRenderNode.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSGTransform.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSGInvalidationController.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FuzzAnimatedImage.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkAnimatedImage.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkAndroidCodec.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkAndroidCodecAdapter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSampledCodec.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FuzzIncrementalImage.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FuzzAPIImageFilter.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FuzzMockGPUCanvas.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FuzzDrawFunctions.cpp:SkScalarIsInt(float)
Unexecuted instantiation: SkSurface_Null.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FuzzTriangulation.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FuzzAndroidCodec.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FuzzJPEGEncoder.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FuzzSKP.cpp:SkScalarIsInt(float)
Unexecuted instantiation: FuzzCubicRoots.cpp:SkScalarIsInt(float)
83
84
/**
85
 *  Returns -1 || 0 || 1 depending on the sign of value:
86
 *  -1 if x < 0
87
 *   0 if x == 0
88
 *   1 if x > 0
89
 */
90
5.13M
static inline int SkScalarSignAsInt(SkScalar x) {
91
5.13M
    return x < 0 ? -1 : (x > 0);
92
5.13M
}
Unexecuted instantiation: FuzzImage.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: Fuzz.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FuzzCommon.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: CommandLineFlags.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: BackendSurfaceFactory.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: BackendTextureImageFactory.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FlushFinishTracker.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrContextFactory.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrTest.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: ManagedBackendTexture.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: MemoryCache.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: ProtectedUtils.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: ProxyUtils.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: TestContext.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: TestOps.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: YUVUtils.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: MockTestContext.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: TextBlobTools.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkTestCanvas.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: VkTestContext.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: VkTestHelper.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: VkTestMemoryAllocator.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: VkTestUtils.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: VkYcbcrSamplerHelper.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: AtlasTextOpTools.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrAtlasTools.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: ContextFactory.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GraphiteTestContext.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: ProtectedUtils_Graphite.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: UniqueKeyUtils.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GraphiteVulkanTestContext.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: DDLPromiseImageHelper.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: DDLTileHelper.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: DecodeUtils.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: EncodeUtils.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GpuToolUtils.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: MSKPPlayer.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: Resources.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: RuntimeBlendUtils.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkMetaData.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSharingProc.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: TestFontDataProvider.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: ToolUtils.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: UrlDataManager.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: DebugCanvas.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: DebugLayerManager.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: DrawCommand.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: JsonWriteBuffer.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FontToolUtils.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: RandomScalerContext.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: TestFontMgr.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: TestSVGTypeface.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: TestTypeface.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkTextBlobTrace.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: Timer.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SvgPathExtractor.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkAutoPixmapStorage.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkBitmap.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkBlendMode.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkBlendModeBlender.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkCanvas.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkCanvasPriv.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkCanvas_Raster.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkChecksum.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkColor.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkColorFilter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkColorSpace.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkColorSpaceXformSteps.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkConvertPixels.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkData.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkDevice.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkDrawable.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkFlattenable.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkFont.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkFontMgr.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkGeometry.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkGlyph.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkImageFilter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkImageFilterCache.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkImageFilterTypes.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkImageGenerator.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkImageInfo.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkKnownRuntimeEffects.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkLatticeIter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkLocalMatrixImageFilter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkM44.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkMD5.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkMallocPixelRef.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkMask.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkMatrix.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkMatrixInvert.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkMipmap.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkMipmapHQDownSampler.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPaint.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPaintPriv.cpp:SkScalarSignAsInt(float)
SkPath.cpp:SkScalarSignAsInt(float)
Line
Count
Source
90
5.13M
static inline int SkScalarSignAsInt(SkScalar x) {
91
5.13M
    return x < 0 ? -1 : (x > 0);
92
5.13M
}
Unexecuted instantiation: SkPathBuilder.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPathEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPathRef.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPathUtils.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPicture.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPictureData.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPictureFlat.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPicturePlayback.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPictureRecord.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPictureRecorder.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPixelRef.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPixmap.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPoint.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkRRect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkRSXform.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkRasterPipeline.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkReadBuffer.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkReadPixelsRec.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkRecord.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkRecordDraw.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkRecordOpts.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkRecordedDrawable.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkRecorder.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkRecords.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkRect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkRegion.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkRegion_path.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkResourceCache.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkRuntimeEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkScalerContext.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkScan_Path.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSpecialImage.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkStream.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkStrikeCache.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkStrikeSpec.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkString.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkStringUtils.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkStrokeRec.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSwizzler_opts.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSwizzler_opts_hsw.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSwizzler_opts_ssse3.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkTextBlob.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkTypeface.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkTypefaceCache.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkUnPreMultiply.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkVertices.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkWriteBuffer.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkWritePixelsRec.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkWriter32.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkYUVAInfo.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkYUVAPixmaps.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkYUVMath.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkImage.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkImage_Lazy.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkImage_Raster.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkImage_RasterFactories.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSurface.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSurface_Base.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSurface_Raster.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkTiledImageUtils.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkColorFilterShader.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkColorShader.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkImageShader.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkRuntimeShader.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkShader.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkShaderBase.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkWorkingColorSpaceShader.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GlyphRun.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SlugFromBuffer.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkOpBuilder.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkOpContour.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkOpEdgeBuilder.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkOpSegment.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkOpSpan.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPathOpsConic.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPathOpsCubic.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPathOpsCurve.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPathOpsDebug.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPathOpsLine.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPathOpsOp.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPathOpsQuad.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPathOpsRect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPathOpsSimplify.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPathOpsTypes.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPathOpsWinding.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPathWriter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkReduceOrder.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkCustomTypeface.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkJSON.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkJSONWriter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkMatrix22.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkMultiPictureDocument.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkNWayCanvas.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkOSPath.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPaintFilterCanvas.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkParse.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPatchUtils.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkShadowUtils.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkBlenders.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkLinearGradient.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkBlendModeColorFilter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkColorFilterBase.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkComposeColorFilter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkGaussianColorFilter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkMatrixColorFilter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkRuntimeColorFilter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkWorkingFormatColorFilter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkCodec.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkCodecImageGenerator.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkImageGenerator_FromEncoded.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPixmapUtils.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSampler.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkBmpCodec.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkBmpMaskCodec.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkBmpRLECodec.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkBmpStandardCodec.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkWbmpCodec.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLAnalysis.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLCompiler.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLErrorReporter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLInliner.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLMangler.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLModuleLoader.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLParser.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLCheckProgramStructure.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLFinalizationChecks.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLGetReturnComplexity.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLHasSideEffects.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLIsConstantExpression.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLProgramUsage.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLReturnsInputAlpha.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLSymbolTableStackBuilder.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLRasterPipelineBuilder.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLRasterPipelineCodeGenerator.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLBlock.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLExpressionStatement.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLFieldAccess.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLForStatement.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLFunctionCall.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLFunctionDeclaration.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLFunctionDefinition.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLIfStatement.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLIndexExpression.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLInterfaceBlock.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLProgram.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLSetting.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLStructDefinition.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLSwitchStatement.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLSymbol.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLSymbolTable.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLType.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLVarDeclarations.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLVariable.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLDebugTracePriv.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLAddConstToVarModifiers.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLEliminateDeadFunctions.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLEliminateDeadGlobalVariables.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLEliminateDeadLocalVariables.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLEliminateEmptyStatements.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLEliminateUnnecessaryBraces.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLEliminateUnreachableCode.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLFindAndDeclareBuiltinFunctions.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLFindAndDeclareBuiltinStructs.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLFindAndDeclareBuiltinVariables.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLHoistSwitchVarDeclarationsAtTopLevel.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLRenamePrivateSymbols.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLReplaceConstVarsWithLiterals.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkGlobalInitialization_default.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkOSFile_stdio.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkOSFile_posix.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkFontMgr_custom_empty.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrAuditTrail.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrBackendSurface.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrCanvas.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrCaps.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrColorInfo.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrColorSpaceXform.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrContext_Base.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrDeferredDisplayList.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrDeferredDisplayListRecorder.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrDirectContext.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrDirectContextPriv.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrDrawOpAtlas.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrDrawingManager.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrFragmentProcessor.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrGeometryProcessor.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrGpu.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrGpuBuffer.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrGpuResource.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrImageContext.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrImageInfo.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrOpFlushState.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrOpsRenderPass.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrPersistentCacheUtils.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrPipeline.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrProcessor.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrProcessorAnalysis.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrProcessorSet.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrProgramInfo.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrPromiseImageTexture.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrProxyProvider.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrRecordingContext.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrRecordingContextPriv.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrRenderTargetProxy.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrRenderTask.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrRenderTaskCluster.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrResourceAllocator.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrResourceCache.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrResourceProvider.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrRingBuffer.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrShaderCaps.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrStagingBufferManager.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrStencilSettings.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrSurface.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrSurfaceCharacterization.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrSurfaceProxy.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrSurfaceProxyView.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrTestUtils.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrTexture.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrTextureProxy.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrTextureRenderTargetProxy.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrTextureResolveRenderTask.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrThreadSafeCache.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrThreadSafePipelineBuilder.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrTransferFromRenderTask.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrWaitRenderTask.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrWritePixelsRenderTask.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrXferProcessor.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrYUVABackendTextures.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: PathRendererChain.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkGr.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SurfaceContext.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SurfaceDrawContext.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SurfaceFillContext.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrBicubicEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrBlendFragmentProcessor.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrCustomXfermode.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrDisableColorXP.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrMatrixEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrPorterDuffXferProcessor.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrSkSLFP.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrTextureEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrQuad.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrQuadUtils.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrShape.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrStyledShape.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrGLSLBlend.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrGLSLProgramBuilder.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrGLSLProgramDataManager.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrGLSLShaderBuilder.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrGLSLUniformHandler.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrGLSLVarying.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrGLSLVertexGeoBuilder.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrImageUtils.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrTextureGenerator.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkImage_Ganesh.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkImage_GaneshBase.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkImage_GaneshFactories.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkImage_GaneshYUVA.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkImage_LazyTexture.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkImage_RasterPinnable.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSpecialImage_Ganesh.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrMockGpu.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrMockTypes.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: AAConvexPathRenderer.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: AAHairLinePathRenderer.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: AALinearizingConvexPathRenderer.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: AtlasPathRenderer.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: AtlasRenderTask.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: AtlasTextOp.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: ClearOp.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: DashLinePathRenderer.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: DashOp.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: DefaultPathRenderer.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: DrawAtlasOp.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: DrawAtlasPathOp.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: DrawMeshOp.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: DrawableOp.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FillRRectOp.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FillRectOp.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrMeshDrawOp.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrOp.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrOvalOpFactory.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrSimpleMeshDrawOpHelper.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrSimpleMeshDrawOpHelperWithStencil.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: LatticeOp.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: OpsTask.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: PathStencilCoverOp.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: QuadPerEdgeAA.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: RegionOp.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: ShadowRRectOp.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SmallPathAtlasMgr.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SmallPathRenderer.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SmallPathShapeData.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SoftwarePathRenderer.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: StrokeRectOp.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: TessellationPathRenderer.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: TextureOp.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: TriangulatingPathRenderer.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSurface_Ganesh.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrPathTessellationShader.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrTessellationShader.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: PathTessellator.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrAtlasManager.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrVkBackendSurface.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrVkDirectContext.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrVkGpu.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrVkImage.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrVkImageView.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrVkMSAALoadManager.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrVkOpsRenderPass.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrVkPipeline.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrVkPipelineState.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrVkPipelineStateCache.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrVkPipelineStateDataManager.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrVkRenderPass.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrVkRenderTarget.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrVkResourceProvider.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrVkSampler.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrVkSamplerYcbcrConversion.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrVkSemaphore.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrVkTexture.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrVkTextureRenderTarget.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrVkUtil.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: BackendTexture.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: Context.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GlobalCache.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: ImageFactories.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: Image_Graphite.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: Image_YUVA_Graphite.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: QueueManager.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: Recorder.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: Recording.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: RendererProvider.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: Resource.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: ResourceCache.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: ResourceProvider.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: ScratchResourceManager.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SharedContext.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: Surface_Graphite.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: Texture.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: TextureInfo.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: TextureProxy.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: TextureUtils.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: UploadBufferManager.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: YUVABackendTextures.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: AnalyticBlurRenderStep.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: AnalyticRRectRenderStep.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: BitmapTextRenderStep.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: CoverBoundsRenderStep.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: CoverageMaskRenderStep.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GraphiteVertexFiller.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: MiddleOutFanRenderStep.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: PerEdgeAAQuadRenderStep.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SDFTextRenderStep.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: TessellateCurvesRenderStep.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: TessellateStrokesRenderStep.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: TessellateWedgesRenderStep.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: VerticesRenderStep.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: CopyTask.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SynchronizeToCpuTask.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: TaskList.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: UploadTask.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: TextAtlasManager.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: VulkanGraphiteUtils.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: VulkanQueueManager.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: VulkanSharedContext.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPngEncoderImpl.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkHeifCodec.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkJpegCodec.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkJpegDecoderMgr.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkJpegMetadataDecoderImpl.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkJpegSourceMgr.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkJpegUtility.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkJpegXmp.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkIcoCodec.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPngCodec.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkRawCodec.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkWebpCodec.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkWuffsCodec.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkXmp.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkFontHost_FreeType.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkFontHost_FreeType_common.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkFontMgr_custom.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: AtlasTypes.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: Blend.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: BlendFormula.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: BlurUtils.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: DataUtils.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: DitherUtils.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: PipelineUtils.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: ResourceKey.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkBackingFit.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: Swizzle.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FixedCountBufferUtils.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: Tessellation.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: DistanceFieldAdjustTable.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GlyphVector.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SDFTControl.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkChromeRemoteGlyphCache.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: Slug.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SlugImpl.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: StrikeCache.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SubRunContainer.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: TextBlob.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: TextBlobRedrawCoordinator.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: VertexFiller.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLPipelineStageCodeGenerator.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLSPIRVCodeGenerator.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: VulkanAMDMemoryAllocator.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: VulkanExtensions.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: VulkanInterface.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: VulkanUtilsPriv.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkJpegMultiPicture.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkJpegSegmentScan.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkAAClip.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkBBHFactory.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkBigPicture.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkBitmapCache.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkBitmapDevice.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkBitmapProcState_opts.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkBitmapProcState_opts_ssse3.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkBlitter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkBlitter_A8.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkBlitter_ARGB32.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkBlurMask.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkBlurMaskFilterImpl.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkCompressedDataUtils.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkCubicClipper.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkDescriptor.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkDistanceFieldGen.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkDocument.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkDraw.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkDrawBase.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkDrawShadowInfo.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkDraw_atlas.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkDraw_text.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkDraw_vertices.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkEdge.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkEdgeBuilder.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkEdgeClipper.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkFontDescriptor.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkFontMetricsPriv.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkFont_serial.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkGlyphRunPainter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkGraphics.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkLineClipper.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkMaskBlurFilter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkMaskCache.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkMaskFilter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkMaskGamma.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkMesh.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkMipmapAccessor.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkMipmapBuilder.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkOpts.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPath_serial.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPixmapDraw.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkRTree.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkRasterClip.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkRasterPipelineBlitter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkRuntimeBlender.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkScalar.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkScan.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkScan_AntiPath.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkScan_Antihair.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkScan_Hairline.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkStrike.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkStroke.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkStrokerPriv.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkTypeface_remote.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkVertState.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkYUVPlanesCache.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkImage_Base.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkImage_Picture.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPictureImageGenerator.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkRescaleAndReadPixels.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkBitmapProcShader.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkBlendShader.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkCoordClampShader.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkEmptyShader.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkLocalMatrixShader.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPerlinNoiseShaderImpl.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPictureShader.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkTransformShader.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkTriColorShader.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: StrikeForGPU.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkAddIntersections.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkDConicLineIntersection.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkDCubicLineIntersection.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkDLineIntersection.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkDQuadLineIntersection.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkIntersections.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkOpAngle.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkOpCoincidence.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkOpCubicHull.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPathOpsAsWinding.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPathOpsCommon.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPathOpsTSect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkDashPath.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkShaderUtils.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkShadowTessellator.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: Sk1DPathEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: Sk2DPathEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkCornerPathEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkDashPathEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkDiscretePathEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkEmbossMaskFilter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkShaderMaskFilterImpl.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkTrimPathEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkConicalGradient.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkGradientBaseShader.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkRadialGradient.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSweepGradient.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkColorSpaceXformColorFilter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkTableColorFilter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkBlendImageFilter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkBlurImageFilter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkColorFilterImageFilter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkComposeImageFilter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkCropImageFilter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkDisplacementMapImageFilter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkDropShadowImageFilter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkImageImageFilter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkLightingImageFilter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkMagnifierImageFilter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkMatrixConvolutionImageFilter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkMatrixTransformImageFilter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkMergeImageFilter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkMorphologyImageFilter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPictureImageFilter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkRuntimeImageFilter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkShaderImageFilter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkColorPalette.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkExif.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkMaskSwizzler.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSwizzler.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkTiffUtility.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkBmpBaseCodec.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkEncoder.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkICC.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLBuiltinTypes.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLIntrinsicList.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLUtil.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLCanExitWithoutReturningValue.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLGetLoopUnrollInfo.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLIsDynamicallyUniformExpression.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkEncodedInfo.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkParseEncodedOrigin.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkOTUtils.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: Device.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: Device_drawTexture.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrAttachment.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrBackendTextureImageGenerator.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrBackendUtils.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrBlurUtils.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrBufferAllocPool.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrBufferTransferRenderTask.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrBufferUpdateRenderTask.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrClientMappedBufferManager.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrContextThreadSafeProxy.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrCopyRenderTask.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrDDLContext.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrDDLTask.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrDataUtils.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrDefaultGeoProcFactory.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrDistanceFieldGenFromVector.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrDrawOpTest.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrDynamicAtlas.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrEagerVertexAllocator.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrFixedClip.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrFragmentProcessors.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrMeshDrawTarget.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrOnFlushResourceProvider.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrPaint.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrProcessorUnitTest.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrRenderTarget.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrSWMaskHelper.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrShaderVar.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrStyle.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrUniformDataManager.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrUtil.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrVertexChunkArray.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrYUVATextureProxies.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: PathRenderer.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrBezierEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrBitmapTextGeoProc.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrColorTableEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrCoverageSetOpXP.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrDistanceFieldGeoProc.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrModulateAtlasCoverageEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrPerlinNoise2Effect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrRRectEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrShadowGeoProc.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrYUVtoRGBEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrAAConvexTessellator.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrAATriangulator.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrPathUtils.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrTriangulator.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrGLSLFragmentShaderBuilder.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrGradientShader.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrMockCaps.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: AtlasInstancedHelper.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: PathInnerTriangulateOp.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: PathTessellateOp.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: StrokeTessellateOp.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrStrokeTessellationShader.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: StrokeTessellator.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrVkBuffer.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrVkCaps.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrVkCommandBuffer.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrVkCommandPool.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrVkContextThreadSafeProxy.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrVkDescriptorPool.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrVkDescriptorSetManager.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrVkFramebuffer.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrVkPipelineStateBuilder.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrVkUniformHandler.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrVkVaryingHandler.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: AtlasProvider.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: Buffer.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: BufferManager.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: Caps.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: ClientMappedBufferManager.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: CommandBuffer.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: ComputePathAtlas.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: ContextUtils.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: DrawAtlas.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: DrawContext.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: DrawList.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: DrawPass.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: DrawWriter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GpuWorkSubmission.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: Image_Base_Graphite.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: KeyContext.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: PaintParams.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: PaintParamsKey.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: PathAtlas.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: PipelineData.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: ProxyCache.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: RasterPathAtlas.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: RasterPathUtils.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: RenderPassDesc.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: Renderer.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: ShaderCodeDictionary.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SpecialImage_Graphite.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: UniformManager.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: DispatchGroup.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: AnalyticBlurMask.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: IntersectionTree.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: Shape.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: Transform.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: ClearBuffersTask.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: ComputeTask.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: DrawTask.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: RenderPassTask.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: VulkanBuffer.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: VulkanCaps.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: VulkanCommandBuffer.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: VulkanGraphiteTypes.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: VulkanRenderPass.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: VulkanResourceProvider.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: VulkanSampler.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: VulkanSamplerYcbcrConversion.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: VulkanTexture.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkOpts_hsw.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkOpts_skx.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkDOM.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkXMLParser.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: TiledTextureUtils.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SDFMaskFilter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkAnalyticEdge.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkBitmapProcState.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkBitmapProcState_matrixProcs.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkBlitMask_opts.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkBlitMask_opts_ssse3.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkBlitRow_D32.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkBlitRow_opts.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkBlitRow_opts_hsw.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkBlitter_Sprite.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkColorTable.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPathMeasure.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPoint3.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkScan_AAAPath.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSpriteBlitter_ARGB32.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPolyUtils.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkEmbossMask.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkOTTable_name.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: ClipStack.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrProgramDesc.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: StencilMaskHelper.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrConvexPolyEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrOvalEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrGradientBitmapCache.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrVkDescriptorSet.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: ClipStack_graphite.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: KeyHelpers.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: RuntimeEffectDictionary.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: VulkanDescriptorPool.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: VulkanDescriptorSet.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: VulkanFramebuffer.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: VulkanGraphicsPipeline.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: VulkanImageView.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkAlphaRuns.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkContourMeasure.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGDOM.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGEllipse.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGFe.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGFeBlend.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGFeColorMatrix.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGFeComponentTransfer.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGFeComposite.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGFeDisplacementMap.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGFeFlood.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGFeGaussianBlur.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGFeImage.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGFeLightSource.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGFeLighting.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGFeMerge.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGFeMorphology.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGFeOffset.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGFeTurbulence.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGFilter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGFilterContext.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGImage.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGLine.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGLinearGradient.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGMask.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGNode.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGPath.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGPattern.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGPoly.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGRadialGradient.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGRect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGRenderContext.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGSVG.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGShape.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGStop.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGText.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGTransformableNode.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGUse.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGAttribute.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGAttributeParser.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGCircle.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGClipPath.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGContainer.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGGradient.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkShaper.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkShaper_factory.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkShaper_primitive.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkShaper_skunicode.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkShaper_harfbuzz.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkUnicode_icu.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkUnicode_icu_bidi.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkBidiFactory_icu_full.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkParseColor.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkParsePath.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkUnicode.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FuzzTextBlobDeserialize.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FuzzGradients.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FuzzSVG.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FuzzCanvas.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FuzzNullCanvas.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkNullCanvas.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkColorMatrixFilter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkHighContrastFilter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPDFDocument.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPDFFont.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPDFFormXObject.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPDFMakeCIDGlyphWidthsArray.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPDFMakeToUnicodeCmap.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPDFMetadata.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPDFSubsetFont.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPDFTag.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPDFType1Font.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPDFTypes.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPDFUtils.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGCanvas.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSVGDevice.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkAnnotation.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkClipStack.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkClipStackDevice.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkDeflate.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPDFBitmap.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPDFDevice.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPDFGraphicStackState.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPDFGraphicState.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPDFResourceDict.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPDFShader.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkXMLWriter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkClipStackUtils.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkJpegEncoderImpl.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkClusterator.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkKeyedImage.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPDFGradientShader.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkJPEGWriteUtility.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FuzzImageFilterDeserialize.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FuzzJSON.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FuzzPrecompile.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FactoryFunctions.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: Precompile.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: PublicPrecompile.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FuzzEncoders.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FuzzWEBPEncoder.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkWebpEncoderImpl.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FuzzQuadRoots.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLCheckSymbolTableCorrectness.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrManagedResource.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GrMemoryPool.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FuzzCreateDDL.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FuzzAPICreateDDL.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FuzzSkParagraph.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FontCollection.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: ParagraphBuilderImpl.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: ParagraphCache.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: ParagraphImpl.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: ParagraphPainterImpl.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: ParagraphStyle.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: Run.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: TextLine.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: TextShadow.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: TextStyle.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: TextWrapper.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: TypefaceFontProvider.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: Decorations.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FontArguments.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: OneLineShaper.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FuzzRegionSetPath.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FuzzPathMeasure.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FuzzDDLThreading.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FuzzAPISVGCanvas.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FuzzRegionDeserialize.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FuzzPNGEncoder.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FuzzRasterN32Canvas.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FuzzRegionOp.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FuzzPathop.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkPathOpsTightBounds.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FuzzSkDescriptorDeserialize.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FuzzPolyUtils.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FuzzCOLRv1.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FuzzPathDeserialize.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FuzzSkottieJSON.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: Skottie.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkottieJson.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SlotManager.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: Animator.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: ScalarKeyframeAnimator.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: VectorKeyframeAnimator.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: TextLayer.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: Font.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: TextAdapter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: TextAnimator.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: TextShaper.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkResources.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: Composition.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: Layer.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: Path.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkottieProperty.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: KeyframeAnimator.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: ShapeKeyframeAnimator.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: TextKeyframeAnimator.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: Vec2KeyframeAnimator.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: Effects.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FillEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FractalNoiseEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GaussianBlurEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GlowStyles.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: GradientEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: HueSaturationEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: InvertEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: LevelsEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: LinearWipeEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: MotionBlurEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: MotionTileEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: RadialWipeEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: ShadowStyles.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SharpenEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: ShiftChannelsEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSLEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SphereEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: ThresholdEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: TintEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: TransformEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: TritoneEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: VenetianBlindsEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: AudioLayer.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FootageLayer.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: NullLayer.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: PrecompLayer.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SolidLayer.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: ShapeLayer.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: TrimPaths.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: RangeSelector.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: TextValue.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkAnimCodecPlayer.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: BlendModes.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: Camera.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: BlackAndWhiteEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: BrightnessContrastEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: BulgeEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: CCTonerEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: CornerPinEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: DirectionalBlur.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: DisplacementMapEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: DropShadowEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: Ellipse.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FillStroke.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: Gradient.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: MergePaths.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: OffsetPaths.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: Polystar.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: PuckerBloat.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: Rectangle.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: Repeater.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: RoundCorners.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkCubicMap.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSGClipEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSGColorFilter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSGDraw.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSGEffectNode.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSGGeometryEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSGGeometryNode.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSGGradient.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSGGroup.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSGImage.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSGMaskEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSGMerge.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSGNode.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSGOpacityEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSGPaint.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSGPath.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSGRect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSGRenderEffect.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSGRenderNode.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSGTransform.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSGInvalidationController.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FuzzAnimatedImage.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkAnimatedImage.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkAndroidCodec.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkAndroidCodecAdapter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSampledCodec.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FuzzIncrementalImage.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FuzzAPIImageFilter.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FuzzMockGPUCanvas.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FuzzDrawFunctions.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: SkSurface_Null.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FuzzTriangulation.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FuzzAndroidCodec.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FuzzJPEGEncoder.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FuzzSKP.cpp:SkScalarSignAsInt(float)
Unexecuted instantiation: FuzzCubicRoots.cpp:SkScalarSignAsInt(float)
93
94
// Scalar result version of above
95
0
static inline SkScalar SkScalarSignAsScalar(SkScalar x) {
96
0
    return x < 0 ? -SK_Scalar1 : ((x > 0) ? SK_Scalar1 : 0);
97
0
}
Unexecuted instantiation: FuzzImage.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: Fuzz.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FuzzCommon.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: CommandLineFlags.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: BackendSurfaceFactory.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: BackendTextureImageFactory.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FlushFinishTracker.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrContextFactory.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrTest.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: ManagedBackendTexture.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: MemoryCache.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: ProtectedUtils.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: ProxyUtils.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: TestContext.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: TestOps.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: YUVUtils.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: MockTestContext.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: TextBlobTools.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkTestCanvas.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: VkTestContext.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: VkTestHelper.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: VkTestMemoryAllocator.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: VkTestUtils.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: VkYcbcrSamplerHelper.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: AtlasTextOpTools.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrAtlasTools.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: ContextFactory.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GraphiteTestContext.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: ProtectedUtils_Graphite.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: UniqueKeyUtils.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GraphiteVulkanTestContext.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: DDLPromiseImageHelper.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: DDLTileHelper.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: DecodeUtils.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: EncodeUtils.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GpuToolUtils.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: MSKPPlayer.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: Resources.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: RuntimeBlendUtils.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkMetaData.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSharingProc.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: TestFontDataProvider.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: ToolUtils.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: UrlDataManager.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: DebugCanvas.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: DebugLayerManager.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: DrawCommand.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: JsonWriteBuffer.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FontToolUtils.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: RandomScalerContext.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: TestFontMgr.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: TestSVGTypeface.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: TestTypeface.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkTextBlobTrace.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: Timer.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SvgPathExtractor.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkAutoPixmapStorage.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkBitmap.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkBlendMode.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkBlendModeBlender.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkCanvas.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkCanvasPriv.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkCanvas_Raster.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkChecksum.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkColor.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkColorFilter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkColorSpace.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkColorSpaceXformSteps.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkConvertPixels.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkData.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkDevice.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkDrawable.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkFlattenable.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkFont.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkFontMgr.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkGeometry.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkGlyph.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkImageFilter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkImageFilterCache.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkImageFilterTypes.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkImageGenerator.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkImageInfo.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkKnownRuntimeEffects.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkLatticeIter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkLocalMatrixImageFilter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkM44.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkMD5.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkMallocPixelRef.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkMask.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkMatrix.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkMatrixInvert.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkMipmap.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkMipmapHQDownSampler.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPaint.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPaintPriv.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPath.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPathBuilder.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPathEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPathRef.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPathUtils.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPicture.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPictureData.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPictureFlat.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPicturePlayback.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPictureRecord.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPictureRecorder.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPixelRef.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPixmap.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPoint.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkRRect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkRSXform.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkRasterPipeline.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkReadBuffer.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkReadPixelsRec.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkRecord.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkRecordDraw.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkRecordOpts.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkRecordedDrawable.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkRecorder.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkRecords.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkRect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkRegion.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkRegion_path.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkResourceCache.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkRuntimeEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkScalerContext.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkScan_Path.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSpecialImage.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkStream.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkStrikeCache.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkStrikeSpec.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkString.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkStringUtils.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkStrokeRec.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSwizzler_opts.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSwizzler_opts_hsw.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSwizzler_opts_ssse3.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkTextBlob.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkTypeface.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkTypefaceCache.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkUnPreMultiply.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkVertices.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkWriteBuffer.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkWritePixelsRec.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkWriter32.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkYUVAInfo.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkYUVAPixmaps.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkYUVMath.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkImage.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkImage_Lazy.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkImage_Raster.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkImage_RasterFactories.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSurface.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSurface_Base.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSurface_Raster.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkTiledImageUtils.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkColorFilterShader.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkColorShader.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkImageShader.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkRuntimeShader.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkShader.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkShaderBase.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkWorkingColorSpaceShader.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GlyphRun.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SlugFromBuffer.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkOpBuilder.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkOpContour.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkOpEdgeBuilder.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkOpSegment.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkOpSpan.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPathOpsConic.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPathOpsCubic.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPathOpsCurve.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPathOpsDebug.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPathOpsLine.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPathOpsOp.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPathOpsQuad.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPathOpsRect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPathOpsSimplify.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPathOpsTypes.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPathOpsWinding.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPathWriter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkReduceOrder.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkCustomTypeface.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkJSON.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkJSONWriter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkMatrix22.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkMultiPictureDocument.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkNWayCanvas.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkOSPath.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPaintFilterCanvas.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkParse.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPatchUtils.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkShadowUtils.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkBlenders.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkLinearGradient.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkBlendModeColorFilter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkColorFilterBase.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkComposeColorFilter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkGaussianColorFilter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkMatrixColorFilter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkRuntimeColorFilter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkWorkingFormatColorFilter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkCodec.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkCodecImageGenerator.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkImageGenerator_FromEncoded.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPixmapUtils.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSampler.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkBmpCodec.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkBmpMaskCodec.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkBmpRLECodec.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkBmpStandardCodec.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkWbmpCodec.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLAnalysis.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLCompiler.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLErrorReporter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLInliner.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLMangler.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLModuleLoader.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLParser.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLCheckProgramStructure.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLFinalizationChecks.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLGetReturnComplexity.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLHasSideEffects.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLIsConstantExpression.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLProgramUsage.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLReturnsInputAlpha.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLSymbolTableStackBuilder.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLRasterPipelineBuilder.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLRasterPipelineCodeGenerator.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLBlock.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLExpressionStatement.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLFieldAccess.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLForStatement.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLFunctionCall.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLFunctionDeclaration.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLFunctionDefinition.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLIfStatement.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLIndexExpression.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLInterfaceBlock.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLProgram.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLSetting.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLStructDefinition.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLSwitchStatement.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLSymbol.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLSymbolTable.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLType.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLVarDeclarations.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLVariable.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLDebugTracePriv.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLAddConstToVarModifiers.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLEliminateDeadFunctions.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLEliminateDeadGlobalVariables.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLEliminateDeadLocalVariables.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLEliminateEmptyStatements.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLEliminateUnnecessaryBraces.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLEliminateUnreachableCode.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLFindAndDeclareBuiltinFunctions.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLFindAndDeclareBuiltinStructs.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLFindAndDeclareBuiltinVariables.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLHoistSwitchVarDeclarationsAtTopLevel.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLRenamePrivateSymbols.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLReplaceConstVarsWithLiterals.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkGlobalInitialization_default.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkOSFile_stdio.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkOSFile_posix.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkFontMgr_custom_empty.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrAuditTrail.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrBackendSurface.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrCanvas.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrCaps.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrColorInfo.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrColorSpaceXform.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrContext_Base.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrDeferredDisplayList.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrDeferredDisplayListRecorder.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrDirectContext.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrDirectContextPriv.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrDrawOpAtlas.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrDrawingManager.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrFragmentProcessor.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrGeometryProcessor.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrGpu.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrGpuBuffer.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrGpuResource.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrImageContext.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrImageInfo.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrOpFlushState.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrOpsRenderPass.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrPersistentCacheUtils.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrPipeline.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrProcessor.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrProcessorAnalysis.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrProcessorSet.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrProgramInfo.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrPromiseImageTexture.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrProxyProvider.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrRecordingContext.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrRecordingContextPriv.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrRenderTargetProxy.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrRenderTask.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrRenderTaskCluster.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrResourceAllocator.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrResourceCache.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrResourceProvider.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrRingBuffer.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrShaderCaps.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrStagingBufferManager.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrStencilSettings.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrSurface.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrSurfaceCharacterization.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrSurfaceProxy.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrSurfaceProxyView.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrTestUtils.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrTexture.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrTextureProxy.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrTextureRenderTargetProxy.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrTextureResolveRenderTask.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrThreadSafeCache.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrThreadSafePipelineBuilder.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrTransferFromRenderTask.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrWaitRenderTask.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrWritePixelsRenderTask.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrXferProcessor.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrYUVABackendTextures.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: PathRendererChain.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkGr.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SurfaceContext.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SurfaceDrawContext.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SurfaceFillContext.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrBicubicEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrBlendFragmentProcessor.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrCustomXfermode.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrDisableColorXP.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrMatrixEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrPorterDuffXferProcessor.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrSkSLFP.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrTextureEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrQuad.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrQuadUtils.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrShape.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrStyledShape.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrGLSLBlend.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrGLSLProgramBuilder.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrGLSLProgramDataManager.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrGLSLShaderBuilder.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrGLSLUniformHandler.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrGLSLVarying.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrGLSLVertexGeoBuilder.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrImageUtils.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrTextureGenerator.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkImage_Ganesh.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkImage_GaneshBase.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkImage_GaneshFactories.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkImage_GaneshYUVA.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkImage_LazyTexture.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkImage_RasterPinnable.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSpecialImage_Ganesh.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrMockGpu.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrMockTypes.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: AAConvexPathRenderer.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: AAHairLinePathRenderer.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: AALinearizingConvexPathRenderer.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: AtlasPathRenderer.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: AtlasRenderTask.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: AtlasTextOp.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: ClearOp.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: DashLinePathRenderer.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: DashOp.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: DefaultPathRenderer.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: DrawAtlasOp.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: DrawAtlasPathOp.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: DrawMeshOp.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: DrawableOp.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FillRRectOp.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FillRectOp.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrMeshDrawOp.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrOp.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrOvalOpFactory.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrSimpleMeshDrawOpHelper.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrSimpleMeshDrawOpHelperWithStencil.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: LatticeOp.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: OpsTask.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: PathStencilCoverOp.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: QuadPerEdgeAA.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: RegionOp.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: ShadowRRectOp.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SmallPathAtlasMgr.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SmallPathRenderer.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SmallPathShapeData.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SoftwarePathRenderer.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: StrokeRectOp.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: TessellationPathRenderer.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: TextureOp.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: TriangulatingPathRenderer.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSurface_Ganesh.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrPathTessellationShader.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrTessellationShader.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: PathTessellator.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrAtlasManager.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrVkBackendSurface.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrVkDirectContext.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrVkGpu.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrVkImage.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrVkImageView.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrVkMSAALoadManager.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrVkOpsRenderPass.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrVkPipeline.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrVkPipelineState.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrVkPipelineStateCache.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrVkPipelineStateDataManager.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrVkRenderPass.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrVkRenderTarget.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrVkResourceProvider.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrVkSampler.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrVkSamplerYcbcrConversion.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrVkSemaphore.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrVkTexture.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrVkTextureRenderTarget.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrVkUtil.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: BackendTexture.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: Context.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GlobalCache.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: ImageFactories.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: Image_Graphite.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: Image_YUVA_Graphite.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: QueueManager.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: Recorder.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: Recording.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: RendererProvider.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: Resource.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: ResourceCache.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: ResourceProvider.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: ScratchResourceManager.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SharedContext.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: Surface_Graphite.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: Texture.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: TextureInfo.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: TextureProxy.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: TextureUtils.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: UploadBufferManager.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: YUVABackendTextures.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: AnalyticBlurRenderStep.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: AnalyticRRectRenderStep.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: BitmapTextRenderStep.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: CoverBoundsRenderStep.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: CoverageMaskRenderStep.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GraphiteVertexFiller.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: MiddleOutFanRenderStep.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: PerEdgeAAQuadRenderStep.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SDFTextRenderStep.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: TessellateCurvesRenderStep.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: TessellateStrokesRenderStep.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: TessellateWedgesRenderStep.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: VerticesRenderStep.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: CopyTask.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SynchronizeToCpuTask.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: TaskList.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: UploadTask.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: TextAtlasManager.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: VulkanGraphiteUtils.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: VulkanQueueManager.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: VulkanSharedContext.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPngEncoderImpl.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkHeifCodec.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkJpegCodec.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkJpegDecoderMgr.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkJpegMetadataDecoderImpl.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkJpegSourceMgr.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkJpegUtility.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkJpegXmp.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkIcoCodec.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPngCodec.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkRawCodec.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkWebpCodec.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkWuffsCodec.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkXmp.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkFontHost_FreeType.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkFontHost_FreeType_common.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkFontMgr_custom.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: AtlasTypes.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: Blend.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: BlendFormula.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: BlurUtils.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: DataUtils.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: DitherUtils.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: PipelineUtils.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: ResourceKey.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkBackingFit.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: Swizzle.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FixedCountBufferUtils.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: Tessellation.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: DistanceFieldAdjustTable.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GlyphVector.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SDFTControl.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkChromeRemoteGlyphCache.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: Slug.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SlugImpl.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: StrikeCache.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SubRunContainer.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: TextBlob.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: TextBlobRedrawCoordinator.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: VertexFiller.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLPipelineStageCodeGenerator.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLSPIRVCodeGenerator.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: VulkanAMDMemoryAllocator.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: VulkanExtensions.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: VulkanInterface.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: VulkanUtilsPriv.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkJpegMultiPicture.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkJpegSegmentScan.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkAAClip.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkBBHFactory.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkBigPicture.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkBitmapCache.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkBitmapDevice.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkBitmapProcState_opts.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkBitmapProcState_opts_ssse3.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkBlitter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkBlitter_A8.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkBlitter_ARGB32.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkBlurMask.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkBlurMaskFilterImpl.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkCompressedDataUtils.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkCubicClipper.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkDescriptor.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkDistanceFieldGen.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkDocument.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkDraw.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkDrawBase.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkDrawShadowInfo.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkDraw_atlas.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkDraw_text.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkDraw_vertices.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkEdge.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkEdgeBuilder.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkEdgeClipper.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkFontDescriptor.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkFontMetricsPriv.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkFont_serial.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkGlyphRunPainter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkGraphics.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkLineClipper.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkMaskBlurFilter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkMaskCache.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkMaskFilter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkMaskGamma.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkMesh.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkMipmapAccessor.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkMipmapBuilder.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkOpts.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPath_serial.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPixmapDraw.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkRTree.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkRasterClip.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkRasterPipelineBlitter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkRuntimeBlender.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkScalar.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkScan.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkScan_AntiPath.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkScan_Antihair.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkScan_Hairline.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkStrike.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkStroke.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkStrokerPriv.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkTypeface_remote.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkVertState.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkYUVPlanesCache.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkImage_Base.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkImage_Picture.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPictureImageGenerator.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkRescaleAndReadPixels.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkBitmapProcShader.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkBlendShader.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkCoordClampShader.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkEmptyShader.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkLocalMatrixShader.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPerlinNoiseShaderImpl.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPictureShader.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkTransformShader.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkTriColorShader.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: StrikeForGPU.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkAddIntersections.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkDConicLineIntersection.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkDCubicLineIntersection.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkDLineIntersection.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkDQuadLineIntersection.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkIntersections.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkOpAngle.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkOpCoincidence.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkOpCubicHull.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPathOpsAsWinding.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPathOpsCommon.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPathOpsTSect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkDashPath.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkShaderUtils.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkShadowTessellator.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: Sk1DPathEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: Sk2DPathEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkCornerPathEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkDashPathEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkDiscretePathEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkEmbossMaskFilter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkShaderMaskFilterImpl.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkTrimPathEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkConicalGradient.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkGradientBaseShader.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkRadialGradient.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSweepGradient.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkColorSpaceXformColorFilter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkTableColorFilter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkBlendImageFilter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkBlurImageFilter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkColorFilterImageFilter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkComposeImageFilter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkCropImageFilter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkDisplacementMapImageFilter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkDropShadowImageFilter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkImageImageFilter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkLightingImageFilter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkMagnifierImageFilter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkMatrixConvolutionImageFilter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkMatrixTransformImageFilter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkMergeImageFilter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkMorphologyImageFilter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPictureImageFilter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkRuntimeImageFilter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkShaderImageFilter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkColorPalette.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkExif.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkMaskSwizzler.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSwizzler.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkTiffUtility.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkBmpBaseCodec.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkEncoder.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkICC.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLBuiltinTypes.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLIntrinsicList.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLUtil.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLCanExitWithoutReturningValue.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLGetLoopUnrollInfo.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLIsDynamicallyUniformExpression.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkEncodedInfo.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkParseEncodedOrigin.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkOTUtils.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: Device.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: Device_drawTexture.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrAttachment.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrBackendTextureImageGenerator.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrBackendUtils.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrBlurUtils.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrBufferAllocPool.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrBufferTransferRenderTask.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrBufferUpdateRenderTask.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrClientMappedBufferManager.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrContextThreadSafeProxy.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrCopyRenderTask.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrDDLContext.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrDDLTask.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrDataUtils.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrDefaultGeoProcFactory.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrDistanceFieldGenFromVector.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrDrawOpTest.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrDynamicAtlas.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrEagerVertexAllocator.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrFixedClip.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrFragmentProcessors.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrMeshDrawTarget.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrOnFlushResourceProvider.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrPaint.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrProcessorUnitTest.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrRenderTarget.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrSWMaskHelper.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrShaderVar.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrStyle.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrUniformDataManager.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrUtil.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrVertexChunkArray.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrYUVATextureProxies.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: PathRenderer.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrBezierEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrBitmapTextGeoProc.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrColorTableEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrCoverageSetOpXP.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrDistanceFieldGeoProc.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrModulateAtlasCoverageEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrPerlinNoise2Effect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrRRectEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrShadowGeoProc.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrYUVtoRGBEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrAAConvexTessellator.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrAATriangulator.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrPathUtils.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrTriangulator.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrGLSLFragmentShaderBuilder.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrGradientShader.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrMockCaps.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: AtlasInstancedHelper.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: PathInnerTriangulateOp.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: PathTessellateOp.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: StrokeTessellateOp.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrStrokeTessellationShader.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: StrokeTessellator.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrVkBuffer.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrVkCaps.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrVkCommandBuffer.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrVkCommandPool.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrVkContextThreadSafeProxy.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrVkDescriptorPool.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrVkDescriptorSetManager.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrVkFramebuffer.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrVkPipelineStateBuilder.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrVkUniformHandler.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrVkVaryingHandler.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: AtlasProvider.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: Buffer.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: BufferManager.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: Caps.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: ClientMappedBufferManager.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: CommandBuffer.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: ComputePathAtlas.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: ContextUtils.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: DrawAtlas.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: DrawContext.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: DrawList.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: DrawPass.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: DrawWriter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GpuWorkSubmission.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: Image_Base_Graphite.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: KeyContext.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: PaintParams.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: PaintParamsKey.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: PathAtlas.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: PipelineData.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: ProxyCache.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: RasterPathAtlas.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: RasterPathUtils.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: RenderPassDesc.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: Renderer.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: ShaderCodeDictionary.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SpecialImage_Graphite.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: UniformManager.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: DispatchGroup.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: AnalyticBlurMask.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: IntersectionTree.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: Shape.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: Transform.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: ClearBuffersTask.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: ComputeTask.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: DrawTask.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: RenderPassTask.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: VulkanBuffer.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: VulkanCaps.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: VulkanCommandBuffer.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: VulkanGraphiteTypes.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: VulkanRenderPass.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: VulkanResourceProvider.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: VulkanSampler.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: VulkanSamplerYcbcrConversion.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: VulkanTexture.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkOpts_hsw.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkOpts_skx.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkDOM.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkXMLParser.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: TiledTextureUtils.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SDFMaskFilter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkAnalyticEdge.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkBitmapProcState.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkBitmapProcState_matrixProcs.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkBlitMask_opts.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkBlitMask_opts_ssse3.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkBlitRow_D32.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkBlitRow_opts.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkBlitRow_opts_hsw.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkBlitter_Sprite.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkColorTable.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPathMeasure.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPoint3.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkScan_AAAPath.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSpriteBlitter_ARGB32.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPolyUtils.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkEmbossMask.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkOTTable_name.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: ClipStack.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrProgramDesc.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: StencilMaskHelper.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrConvexPolyEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrOvalEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrGradientBitmapCache.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrVkDescriptorSet.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: ClipStack_graphite.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: KeyHelpers.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: RuntimeEffectDictionary.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: VulkanDescriptorPool.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: VulkanDescriptorSet.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: VulkanFramebuffer.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: VulkanGraphicsPipeline.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: VulkanImageView.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkAlphaRuns.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkContourMeasure.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGDOM.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGEllipse.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGFe.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGFeBlend.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGFeColorMatrix.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGFeComponentTransfer.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGFeComposite.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGFeDisplacementMap.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGFeFlood.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGFeGaussianBlur.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGFeImage.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGFeLightSource.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGFeLighting.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGFeMerge.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGFeMorphology.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGFeOffset.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGFeTurbulence.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGFilter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGFilterContext.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGImage.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGLine.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGLinearGradient.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGMask.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGNode.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGPath.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGPattern.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGPoly.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGRadialGradient.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGRect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGRenderContext.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGSVG.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGShape.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGStop.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGText.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGTransformableNode.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGUse.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGAttribute.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGAttributeParser.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGCircle.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGClipPath.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGContainer.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGGradient.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkShaper.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkShaper_factory.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkShaper_primitive.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkShaper_skunicode.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkShaper_harfbuzz.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkUnicode_icu.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkUnicode_icu_bidi.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkBidiFactory_icu_full.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkParseColor.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkParsePath.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkUnicode.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FuzzTextBlobDeserialize.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FuzzGradients.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FuzzSVG.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FuzzCanvas.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FuzzNullCanvas.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkNullCanvas.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkColorMatrixFilter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkHighContrastFilter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPDFDocument.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPDFFont.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPDFFormXObject.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPDFMakeCIDGlyphWidthsArray.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPDFMakeToUnicodeCmap.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPDFMetadata.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPDFSubsetFont.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPDFTag.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPDFType1Font.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPDFTypes.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPDFUtils.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGCanvas.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSVGDevice.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkAnnotation.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkClipStack.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkClipStackDevice.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkDeflate.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPDFBitmap.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPDFDevice.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPDFGraphicStackState.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPDFGraphicState.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPDFResourceDict.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPDFShader.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkXMLWriter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkClipStackUtils.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkJpegEncoderImpl.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkClusterator.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkKeyedImage.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPDFGradientShader.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkJPEGWriteUtility.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FuzzImageFilterDeserialize.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FuzzJSON.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FuzzPrecompile.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FactoryFunctions.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: Precompile.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: PublicPrecompile.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FuzzEncoders.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FuzzWEBPEncoder.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkWebpEncoderImpl.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FuzzQuadRoots.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLCheckSymbolTableCorrectness.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrManagedResource.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GrMemoryPool.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FuzzCreateDDL.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FuzzAPICreateDDL.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FuzzSkParagraph.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FontCollection.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: ParagraphBuilderImpl.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: ParagraphCache.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: ParagraphImpl.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: ParagraphPainterImpl.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: ParagraphStyle.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: Run.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: TextLine.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: TextShadow.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: TextStyle.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: TextWrapper.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: TypefaceFontProvider.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: Decorations.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FontArguments.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: OneLineShaper.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FuzzRegionSetPath.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FuzzPathMeasure.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FuzzDDLThreading.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FuzzAPISVGCanvas.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FuzzRegionDeserialize.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FuzzPNGEncoder.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FuzzRasterN32Canvas.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FuzzRegionOp.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FuzzPathop.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkPathOpsTightBounds.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FuzzSkDescriptorDeserialize.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FuzzPolyUtils.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FuzzCOLRv1.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FuzzPathDeserialize.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FuzzSkottieJSON.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: Skottie.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkottieJson.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SlotManager.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: Animator.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: ScalarKeyframeAnimator.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: VectorKeyframeAnimator.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: TextLayer.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: Font.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: TextAdapter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: TextAnimator.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: TextShaper.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkResources.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: Composition.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: Layer.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: Path.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkottieProperty.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: KeyframeAnimator.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: ShapeKeyframeAnimator.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: TextKeyframeAnimator.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: Vec2KeyframeAnimator.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: Effects.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FillEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FractalNoiseEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GaussianBlurEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GlowStyles.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: GradientEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: HueSaturationEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: InvertEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: LevelsEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: LinearWipeEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: MotionBlurEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: MotionTileEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: RadialWipeEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: ShadowStyles.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SharpenEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: ShiftChannelsEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSLEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SphereEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: ThresholdEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: TintEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: TransformEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: TritoneEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: VenetianBlindsEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: AudioLayer.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FootageLayer.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: NullLayer.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: PrecompLayer.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SolidLayer.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: ShapeLayer.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: TrimPaths.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: RangeSelector.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: TextValue.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkAnimCodecPlayer.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: BlendModes.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: Camera.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: BlackAndWhiteEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: BrightnessContrastEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: BulgeEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: CCTonerEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: CornerPinEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: DirectionalBlur.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: DisplacementMapEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: DropShadowEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: Ellipse.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FillStroke.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: Gradient.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: MergePaths.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: OffsetPaths.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: Polystar.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: PuckerBloat.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: Rectangle.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: Repeater.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: RoundCorners.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkCubicMap.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSGClipEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSGColorFilter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSGDraw.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSGEffectNode.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSGGeometryEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSGGeometryNode.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSGGradient.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSGGroup.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSGImage.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSGMaskEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSGMerge.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSGNode.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSGOpacityEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSGPaint.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSGPath.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSGRect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSGRenderEffect.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSGRenderNode.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSGTransform.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSGInvalidationController.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FuzzAnimatedImage.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkAnimatedImage.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkAndroidCodec.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkAndroidCodecAdapter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSampledCodec.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FuzzIncrementalImage.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FuzzAPIImageFilter.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FuzzMockGPUCanvas.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FuzzDrawFunctions.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: SkSurface_Null.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FuzzTriangulation.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FuzzAndroidCodec.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FuzzJPEGEncoder.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FuzzSKP.cpp:SkScalarSignAsScalar(float)
Unexecuted instantiation: FuzzCubicRoots.cpp:SkScalarSignAsScalar(float)
98
99
53.8M
#define SK_ScalarNearlyZero         (SK_Scalar1 / (1 << 12))
100
101
static inline bool SkScalarNearlyZero(SkScalar x,
102
297M
                                      SkScalar tolerance = SK_ScalarNearlyZero) {
103
297M
    SkASSERT(tolerance >= 0);
104
297M
    return SkScalarAbs(x) <= tolerance;
105
297M
}
Unexecuted instantiation: FuzzImage.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: Fuzz.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FuzzCommon.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: CommandLineFlags.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: BackendSurfaceFactory.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: BackendTextureImageFactory.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FlushFinishTracker.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrContextFactory.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrTest.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: ManagedBackendTexture.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: MemoryCache.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: ProtectedUtils.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: ProxyUtils.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: TestContext.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: TestOps.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: YUVUtils.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: MockTestContext.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: TextBlobTools.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkTestCanvas.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: VkTestContext.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: VkTestHelper.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: VkTestMemoryAllocator.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: VkTestUtils.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: VkYcbcrSamplerHelper.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: AtlasTextOpTools.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrAtlasTools.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: ContextFactory.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GraphiteTestContext.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: ProtectedUtils_Graphite.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: UniqueKeyUtils.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GraphiteVulkanTestContext.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: DDLPromiseImageHelper.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: DDLTileHelper.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: DecodeUtils.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: EncodeUtils.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GpuToolUtils.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: MSKPPlayer.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: Resources.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: RuntimeBlendUtils.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkMetaData.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSharingProc.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: TestFontDataProvider.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: ToolUtils.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: UrlDataManager.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: DebugCanvas.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: DebugLayerManager.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: DrawCommand.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: JsonWriteBuffer.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FontToolUtils.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: RandomScalerContext.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: TestFontMgr.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: TestSVGTypeface.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: TestTypeface.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkTextBlobTrace.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: Timer.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SvgPathExtractor.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkAutoPixmapStorage.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkBitmap.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkBlendMode.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkBlendModeBlender.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkCanvas.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkCanvasPriv.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkCanvas_Raster.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkChecksum.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkColor.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkColorFilter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkColorSpace.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkColorSpaceXformSteps.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkConvertPixels.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkData.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkDevice.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkDrawable.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkFlattenable.cpp:SkScalarNearlyZero(float, float)
SkFont.cpp:SkScalarNearlyZero(float, float)
Line
Count
Source
102
1.88k
                                      SkScalar tolerance = SK_ScalarNearlyZero) {
103
1.88k
    SkASSERT(tolerance >= 0);
104
1.88k
    return SkScalarAbs(x) <= tolerance;
105
1.88k
}
Unexecuted instantiation: SkFontMgr.cpp:SkScalarNearlyZero(float, float)
SkGeometry.cpp:SkScalarNearlyZero(float, float)
Line
Count
Source
102
886k
                                      SkScalar tolerance = SK_ScalarNearlyZero) {
103
886k
    SkASSERT(tolerance >= 0);
104
886k
    return SkScalarAbs(x) <= tolerance;
105
886k
}
Unexecuted instantiation: SkGlyph.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkImageFilter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkImageFilterCache.cpp:SkScalarNearlyZero(float, float)
SkImageFilterTypes.cpp:SkScalarNearlyZero(float, float)
Line
Count
Source
102
440
                                      SkScalar tolerance = SK_ScalarNearlyZero) {
103
440
    SkASSERT(tolerance >= 0);
104
440
    return SkScalarAbs(x) <= tolerance;
105
440
}
Unexecuted instantiation: SkImageGenerator.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkImageInfo.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkKnownRuntimeEffects.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkLatticeIter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkLocalMatrixImageFilter.cpp:SkScalarNearlyZero(float, float)
SkM44.cpp:SkScalarNearlyZero(float, float)
Line
Count
Source
102
4.75k
                                      SkScalar tolerance = SK_ScalarNearlyZero) {
103
4.75k
    SkASSERT(tolerance >= 0);
104
4.75k
    return SkScalarAbs(x) <= tolerance;
105
4.75k
}
Unexecuted instantiation: SkMD5.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkMallocPixelRef.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkMask.cpp:SkScalarNearlyZero(float, float)
SkMatrix.cpp:SkScalarNearlyZero(float, float)
Line
Count
Source
102
13.1M
                                      SkScalar tolerance = SK_ScalarNearlyZero) {
103
13.1M
    SkASSERT(tolerance >= 0);
104
13.1M
    return SkScalarAbs(x) <= tolerance;
105
13.1M
}
Unexecuted instantiation: SkMatrixInvert.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkMipmap.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkMipmapHQDownSampler.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPaint.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPaintPriv.cpp:SkScalarNearlyZero(float, float)
SkPath.cpp:SkScalarNearlyZero(float, float)
Line
Count
Source
102
96.9k
                                      SkScalar tolerance = SK_ScalarNearlyZero) {
103
96.9k
    SkASSERT(tolerance >= 0);
104
96.9k
    return SkScalarAbs(x) <= tolerance;
105
96.9k
}
Unexecuted instantiation: SkPathBuilder.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPathEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPathRef.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPathUtils.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPicture.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPictureData.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPictureFlat.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPicturePlayback.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPictureRecord.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPictureRecorder.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPixelRef.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPixmap.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPoint.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkRRect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkRSXform.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkRasterPipeline.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkReadBuffer.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkReadPixelsRec.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkRecord.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkRecordDraw.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkRecordOpts.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkRecordedDrawable.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkRecorder.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkRecords.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkRect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkRegion.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkRegion_path.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkResourceCache.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkRuntimeEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkScalerContext.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkScan_Path.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSpecialImage.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkStream.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkStrikeCache.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkStrikeSpec.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkString.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkStringUtils.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkStrokeRec.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSwizzler_opts.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSwizzler_opts_hsw.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSwizzler_opts_ssse3.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkTextBlob.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkTypeface.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkTypefaceCache.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkUnPreMultiply.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkVertices.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkWriteBuffer.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkWritePixelsRec.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkWriter32.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkYUVAInfo.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkYUVAPixmaps.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkYUVMath.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkImage.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkImage_Lazy.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkImage_Raster.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkImage_RasterFactories.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSurface.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSurface_Base.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSurface_Raster.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkTiledImageUtils.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkColorFilterShader.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkColorShader.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkImageShader.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkRuntimeShader.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkShader.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkShaderBase.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkWorkingColorSpaceShader.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GlyphRun.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SlugFromBuffer.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkOpBuilder.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkOpContour.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkOpEdgeBuilder.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkOpSegment.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkOpSpan.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPathOpsConic.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPathOpsCubic.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPathOpsCurve.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPathOpsDebug.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPathOpsLine.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPathOpsOp.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPathOpsQuad.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPathOpsRect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPathOpsSimplify.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPathOpsTypes.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPathOpsWinding.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPathWriter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkReduceOrder.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkCustomTypeface.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkJSON.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkJSONWriter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkMatrix22.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkMultiPictureDocument.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkNWayCanvas.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkOSPath.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPaintFilterCanvas.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkParse.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPatchUtils.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkShadowUtils.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkBlenders.cpp:SkScalarNearlyZero(float, float)
SkLinearGradient.cpp:SkScalarNearlyZero(float, float)
Line
Count
Source
102
6.45k
                                      SkScalar tolerance = SK_ScalarNearlyZero) {
103
6.45k
    SkASSERT(tolerance >= 0);
104
6.45k
    return SkScalarAbs(x) <= tolerance;
105
6.45k
}
Unexecuted instantiation: SkBlendModeColorFilter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkColorFilterBase.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkComposeColorFilter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkGaussianColorFilter.cpp:SkScalarNearlyZero(float, float)
SkMatrixColorFilter.cpp:SkScalarNearlyZero(float, float)
Line
Count
Source
102
193k
                                      SkScalar tolerance = SK_ScalarNearlyZero) {
103
193k
    SkASSERT(tolerance >= 0);
104
193k
    return SkScalarAbs(x) <= tolerance;
105
193k
}
Unexecuted instantiation: SkRuntimeColorFilter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkWorkingFormatColorFilter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkCodec.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkCodecImageGenerator.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkImageGenerator_FromEncoded.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPixmapUtils.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSampler.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkBmpCodec.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkBmpMaskCodec.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkBmpRLECodec.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkBmpStandardCodec.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkWbmpCodec.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLAnalysis.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLCompiler.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLErrorReporter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLInliner.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLMangler.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLModuleLoader.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLParser.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLCheckProgramStructure.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLFinalizationChecks.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLGetReturnComplexity.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLHasSideEffects.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLIsConstantExpression.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLProgramUsage.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLReturnsInputAlpha.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLSymbolTableStackBuilder.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLRasterPipelineBuilder.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLRasterPipelineCodeGenerator.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLBlock.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLExpressionStatement.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLFieldAccess.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLForStatement.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLFunctionCall.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLFunctionDeclaration.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLFunctionDefinition.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLIfStatement.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLIndexExpression.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLInterfaceBlock.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLProgram.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLSetting.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLStructDefinition.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLSwitchStatement.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLSymbol.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLSymbolTable.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLType.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLVarDeclarations.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLVariable.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLDebugTracePriv.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLAddConstToVarModifiers.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLEliminateDeadFunctions.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLEliminateDeadGlobalVariables.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLEliminateDeadLocalVariables.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLEliminateEmptyStatements.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLEliminateUnnecessaryBraces.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLEliminateUnreachableCode.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLFindAndDeclareBuiltinFunctions.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLFindAndDeclareBuiltinStructs.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLFindAndDeclareBuiltinVariables.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLHoistSwitchVarDeclarationsAtTopLevel.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLRenamePrivateSymbols.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLReplaceConstVarsWithLiterals.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkGlobalInitialization_default.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkOSFile_stdio.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkOSFile_posix.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkFontMgr_custom_empty.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrAuditTrail.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrBackendSurface.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrCanvas.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrCaps.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrColorInfo.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrColorSpaceXform.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrContext_Base.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrDeferredDisplayList.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrDeferredDisplayListRecorder.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrDirectContext.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrDirectContextPriv.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrDrawOpAtlas.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrDrawingManager.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrFragmentProcessor.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrGeometryProcessor.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrGpu.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrGpuBuffer.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrGpuResource.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrImageContext.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrImageInfo.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrOpFlushState.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrOpsRenderPass.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrPersistentCacheUtils.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrPipeline.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrProcessor.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrProcessorAnalysis.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrProcessorSet.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrProgramInfo.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrPromiseImageTexture.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrProxyProvider.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrRecordingContext.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrRecordingContextPriv.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrRenderTargetProxy.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrRenderTask.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrRenderTaskCluster.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrResourceAllocator.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrResourceCache.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrResourceProvider.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrRingBuffer.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrShaderCaps.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrStagingBufferManager.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrStencilSettings.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrSurface.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrSurfaceCharacterization.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrSurfaceProxy.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrSurfaceProxyView.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrTestUtils.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrTexture.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrTextureProxy.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrTextureRenderTargetProxy.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrTextureResolveRenderTask.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrThreadSafeCache.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrThreadSafePipelineBuilder.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrTransferFromRenderTask.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrWaitRenderTask.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrWritePixelsRenderTask.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrXferProcessor.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrYUVABackendTextures.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: PathRendererChain.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkGr.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SurfaceContext.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SurfaceDrawContext.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SurfaceFillContext.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrBicubicEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrBlendFragmentProcessor.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrCustomXfermode.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrDisableColorXP.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrMatrixEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrPorterDuffXferProcessor.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrSkSLFP.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrTextureEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrQuad.cpp:SkScalarNearlyZero(float, float)
GrQuadUtils.cpp:SkScalarNearlyZero(float, float)
Line
Count
Source
102
14
                                      SkScalar tolerance = SK_ScalarNearlyZero) {
103
14
    SkASSERT(tolerance >= 0);
104
14
    return SkScalarAbs(x) <= tolerance;
105
14
}
Unexecuted instantiation: GrShape.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrStyledShape.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrGLSLBlend.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrGLSLProgramBuilder.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrGLSLProgramDataManager.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrGLSLShaderBuilder.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrGLSLUniformHandler.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrGLSLVarying.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrGLSLVertexGeoBuilder.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrImageUtils.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrTextureGenerator.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkImage_Ganesh.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkImage_GaneshBase.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkImage_GaneshFactories.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkImage_GaneshYUVA.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkImage_LazyTexture.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkImage_RasterPinnable.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSpecialImage_Ganesh.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrMockGpu.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrMockTypes.cpp:SkScalarNearlyZero(float, float)
AAConvexPathRenderer.cpp:SkScalarNearlyZero(float, float)
Line
Count
Source
102
266
                                      SkScalar tolerance = SK_ScalarNearlyZero) {
103
266
    SkASSERT(tolerance >= 0);
104
266
    return SkScalarAbs(x) <= tolerance;
105
266
}
Unexecuted instantiation: AAHairLinePathRenderer.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: AALinearizingConvexPathRenderer.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: AtlasPathRenderer.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: AtlasRenderTask.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: AtlasTextOp.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: ClearOp.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: DashLinePathRenderer.cpp:SkScalarNearlyZero(float, float)
DashOp.cpp:SkScalarNearlyZero(float, float)
Line
Count
Source
102
6
                                      SkScalar tolerance = SK_ScalarNearlyZero) {
103
6
    SkASSERT(tolerance >= 0);
104
6
    return SkScalarAbs(x) <= tolerance;
105
6
}
Unexecuted instantiation: DefaultPathRenderer.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: DrawAtlasOp.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: DrawAtlasPathOp.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: DrawMeshOp.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: DrawableOp.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FillRRectOp.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FillRectOp.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrMeshDrawOp.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrOp.cpp:SkScalarNearlyZero(float, float)
GrOvalOpFactory.cpp:SkScalarNearlyZero(float, float)
Line
Count
Source
102
3
                                      SkScalar tolerance = SK_ScalarNearlyZero) {
103
3
    SkASSERT(tolerance >= 0);
104
3
    return SkScalarAbs(x) <= tolerance;
105
3
}
Unexecuted instantiation: GrSimpleMeshDrawOpHelper.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrSimpleMeshDrawOpHelperWithStencil.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: LatticeOp.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: OpsTask.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: PathStencilCoverOp.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: QuadPerEdgeAA.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: RegionOp.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: ShadowRRectOp.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SmallPathAtlasMgr.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SmallPathRenderer.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SmallPathShapeData.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SoftwarePathRenderer.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: StrokeRectOp.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: TessellationPathRenderer.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: TextureOp.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: TriangulatingPathRenderer.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSurface_Ganesh.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrPathTessellationShader.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrTessellationShader.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: PathTessellator.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrAtlasManager.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrVkBackendSurface.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrVkDirectContext.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrVkGpu.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrVkImage.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrVkImageView.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrVkMSAALoadManager.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrVkOpsRenderPass.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrVkPipeline.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrVkPipelineState.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrVkPipelineStateCache.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrVkPipelineStateDataManager.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrVkRenderPass.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrVkRenderTarget.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrVkResourceProvider.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrVkSampler.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrVkSamplerYcbcrConversion.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrVkSemaphore.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrVkTexture.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrVkTextureRenderTarget.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrVkUtil.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: BackendTexture.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: Context.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GlobalCache.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: ImageFactories.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: Image_Graphite.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: Image_YUVA_Graphite.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: QueueManager.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: Recorder.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: Recording.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: RendererProvider.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: Resource.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: ResourceCache.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: ResourceProvider.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: ScratchResourceManager.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SharedContext.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: Surface_Graphite.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: Texture.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: TextureInfo.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: TextureProxy.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: TextureUtils.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: UploadBufferManager.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: YUVABackendTextures.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: AnalyticBlurRenderStep.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: AnalyticRRectRenderStep.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: BitmapTextRenderStep.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: CoverBoundsRenderStep.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: CoverageMaskRenderStep.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GraphiteVertexFiller.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: MiddleOutFanRenderStep.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: PerEdgeAAQuadRenderStep.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SDFTextRenderStep.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: TessellateCurvesRenderStep.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: TessellateStrokesRenderStep.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: TessellateWedgesRenderStep.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: VerticesRenderStep.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: CopyTask.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SynchronizeToCpuTask.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: TaskList.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: UploadTask.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: TextAtlasManager.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: VulkanGraphiteUtils.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: VulkanQueueManager.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: VulkanSharedContext.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPngEncoderImpl.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkHeifCodec.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkJpegCodec.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkJpegDecoderMgr.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkJpegMetadataDecoderImpl.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkJpegSourceMgr.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkJpegUtility.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkJpegXmp.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkIcoCodec.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPngCodec.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkRawCodec.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkWebpCodec.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkWuffsCodec.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkXmp.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkFontHost_FreeType.cpp:SkScalarNearlyZero(float, float)
SkFontHost_FreeType_common.cpp:SkScalarNearlyZero(float, float)
Line
Count
Source
102
8
                                      SkScalar tolerance = SK_ScalarNearlyZero) {
103
8
    SkASSERT(tolerance >= 0);
104
8
    return SkScalarAbs(x) <= tolerance;
105
8
}
Unexecuted instantiation: SkFontMgr_custom.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: AtlasTypes.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: Blend.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: BlendFormula.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: BlurUtils.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: DataUtils.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: DitherUtils.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: PipelineUtils.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: ResourceKey.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkBackingFit.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: Swizzle.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FixedCountBufferUtils.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: Tessellation.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: DistanceFieldAdjustTable.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GlyphVector.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SDFTControl.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkChromeRemoteGlyphCache.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: Slug.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SlugImpl.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: StrikeCache.cpp:SkScalarNearlyZero(float, float)
SubRunContainer.cpp:SkScalarNearlyZero(float, float)
Line
Count
Source
102
5.91k
                                      SkScalar tolerance = SK_ScalarNearlyZero) {
103
5.91k
    SkASSERT(tolerance >= 0);
104
5.91k
    return SkScalarAbs(x) <= tolerance;
105
5.91k
}
Unexecuted instantiation: TextBlob.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: TextBlobRedrawCoordinator.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: VertexFiller.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLPipelineStageCodeGenerator.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLSPIRVCodeGenerator.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: VulkanAMDMemoryAllocator.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: VulkanExtensions.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: VulkanInterface.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: VulkanUtilsPriv.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkJpegMultiPicture.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkJpegSegmentScan.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkAAClip.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkBBHFactory.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkBigPicture.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkBitmapCache.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkBitmapDevice.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkBitmapProcState_opts.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkBitmapProcState_opts_ssse3.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkBlitter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkBlitter_A8.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkBlitter_ARGB32.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkBlurMask.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkBlurMaskFilterImpl.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkCompressedDataUtils.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkCubicClipper.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkDescriptor.cpp:SkScalarNearlyZero(float, float)
SkDistanceFieldGen.cpp:SkScalarNearlyZero(float, float)
Line
Count
Source
102
690k
                                      SkScalar tolerance = SK_ScalarNearlyZero) {
103
690k
    SkASSERT(tolerance >= 0);
104
690k
    return SkScalarAbs(x) <= tolerance;
105
690k
}
Unexecuted instantiation: SkDocument.cpp:SkScalarNearlyZero(float, float)
SkDraw.cpp:SkScalarNearlyZero(float, float)
Line
Count
Source
102
208
                                      SkScalar tolerance = SK_ScalarNearlyZero) {
103
208
    SkASSERT(tolerance >= 0);
104
208
    return SkScalarAbs(x) <= tolerance;
105
208
}
Unexecuted instantiation: SkDrawBase.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkDrawShadowInfo.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkDraw_atlas.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkDraw_text.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkDraw_vertices.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkEdge.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkEdgeBuilder.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkEdgeClipper.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkFontDescriptor.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkFontMetricsPriv.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkFont_serial.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkGlyphRunPainter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkGraphics.cpp:SkScalarNearlyZero(float, float)
SkLineClipper.cpp:SkScalarNearlyZero(float, float)
Line
Count
Source
102
87.4M
                                      SkScalar tolerance = SK_ScalarNearlyZero) {
103
87.4M
    SkASSERT(tolerance >= 0);
104
87.4M
    return SkScalarAbs(x) <= tolerance;
105
87.4M
}
Unexecuted instantiation: SkMaskBlurFilter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkMaskCache.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkMaskFilter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkMaskGamma.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkMesh.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkMipmapAccessor.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkMipmapBuilder.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkOpts.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPath_serial.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPixmapDraw.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkRTree.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkRasterClip.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkRasterPipelineBlitter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkRuntimeBlender.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkScalar.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkScan.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkScan_AntiPath.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkScan_Antihair.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkScan_Hairline.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkStrike.cpp:SkScalarNearlyZero(float, float)
SkStroke.cpp:SkScalarNearlyZero(float, float)
Line
Count
Source
102
14.4M
                                      SkScalar tolerance = SK_ScalarNearlyZero) {
103
14.4M
    SkASSERT(tolerance >= 0);
104
14.4M
    return SkScalarAbs(x) <= tolerance;
105
14.4M
}
SkStrokerPriv.cpp:SkScalarNearlyZero(float, float)
Line
Count
Source
102
2.78M
                                      SkScalar tolerance = SK_ScalarNearlyZero) {
103
2.78M
    SkASSERT(tolerance >= 0);
104
2.78M
    return SkScalarAbs(x) <= tolerance;
105
2.78M
}
Unexecuted instantiation: SkTypeface_remote.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkVertState.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkYUVPlanesCache.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkImage_Base.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkImage_Picture.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPictureImageGenerator.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkRescaleAndReadPixels.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkBitmapProcShader.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkBlendShader.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkCoordClampShader.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkEmptyShader.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkLocalMatrixShader.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPerlinNoiseShaderImpl.cpp:SkScalarNearlyZero(float, float)
SkPictureShader.cpp:SkScalarNearlyZero(float, float)
Line
Count
Source
102
201
                                      SkScalar tolerance = SK_ScalarNearlyZero) {
103
201
    SkASSERT(tolerance >= 0);
104
201
    return SkScalarAbs(x) <= tolerance;
105
201
}
Unexecuted instantiation: SkTransformShader.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkTriColorShader.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: StrikeForGPU.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkAddIntersections.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkDConicLineIntersection.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkDCubicLineIntersection.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkDLineIntersection.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkDQuadLineIntersection.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkIntersections.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkOpAngle.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkOpCoincidence.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkOpCubicHull.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPathOpsAsWinding.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPathOpsCommon.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPathOpsTSect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkDashPath.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkShaderUtils.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkShadowTessellator.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: Sk1DPathEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: Sk2DPathEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkCornerPathEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkDashPathEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkDiscretePathEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkEmbossMaskFilter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkShaderMaskFilterImpl.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkTrimPathEffect.cpp:SkScalarNearlyZero(float, float)
SkConicalGradient.cpp:SkScalarNearlyZero(float, float)
Line
Count
Source
102
35.1k
                                      SkScalar tolerance = SK_ScalarNearlyZero) {
103
35.1k
    SkASSERT(tolerance >= 0);
104
35.1k
    return SkScalarAbs(x) <= tolerance;
105
35.1k
}
Unexecuted instantiation: SkGradientBaseShader.cpp:SkScalarNearlyZero(float, float)
SkRadialGradient.cpp:SkScalarNearlyZero(float, float)
Line
Count
Source
102
933
                                      SkScalar tolerance = SK_ScalarNearlyZero) {
103
933
    SkASSERT(tolerance >= 0);
104
933
    return SkScalarAbs(x) <= tolerance;
105
933
}
Unexecuted instantiation: SkSweepGradient.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkColorSpaceXformColorFilter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkTableColorFilter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkBlendImageFilter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkBlurImageFilter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkColorFilterImageFilter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkComposeImageFilter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkCropImageFilter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkDisplacementMapImageFilter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkDropShadowImageFilter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkImageImageFilter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkLightingImageFilter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkMagnifierImageFilter.cpp:SkScalarNearlyZero(float, float)
SkMatrixConvolutionImageFilter.cpp:SkScalarNearlyZero(float, float)
Line
Count
Source
102
46
                                      SkScalar tolerance = SK_ScalarNearlyZero) {
103
46
    SkASSERT(tolerance >= 0);
104
46
    return SkScalarAbs(x) <= tolerance;
105
46
}
Unexecuted instantiation: SkMatrixTransformImageFilter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkMergeImageFilter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkMorphologyImageFilter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPictureImageFilter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkRuntimeImageFilter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkShaderImageFilter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkColorPalette.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkExif.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkMaskSwizzler.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSwizzler.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkTiffUtility.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkBmpBaseCodec.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkEncoder.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkICC.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLBuiltinTypes.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLIntrinsicList.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLUtil.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLCanExitWithoutReturningValue.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLGetLoopUnrollInfo.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLIsDynamicallyUniformExpression.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkEncodedInfo.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkParseEncodedOrigin.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkOTUtils.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: Device.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: Device_drawTexture.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrAttachment.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrBackendTextureImageGenerator.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrBackendUtils.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrBlurUtils.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrBufferAllocPool.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrBufferTransferRenderTask.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrBufferUpdateRenderTask.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrClientMappedBufferManager.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrContextThreadSafeProxy.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrCopyRenderTask.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrDDLContext.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrDDLTask.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrDataUtils.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrDefaultGeoProcFactory.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrDistanceFieldGenFromVector.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrDrawOpTest.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrDynamicAtlas.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrEagerVertexAllocator.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrFixedClip.cpp:SkScalarNearlyZero(float, float)
GrFragmentProcessors.cpp:SkScalarNearlyZero(float, float)
Line
Count
Source
102
24
                                      SkScalar tolerance = SK_ScalarNearlyZero) {
103
24
    SkASSERT(tolerance >= 0);
104
24
    return SkScalarAbs(x) <= tolerance;
105
24
}
Unexecuted instantiation: GrMeshDrawTarget.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrOnFlushResourceProvider.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrPaint.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrProcessorUnitTest.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrRenderTarget.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrSWMaskHelper.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrShaderVar.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrStyle.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrUniformDataManager.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrUtil.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrVertexChunkArray.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrYUVATextureProxies.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: PathRenderer.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrBezierEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrBitmapTextGeoProc.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrColorTableEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrCoverageSetOpXP.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrDistanceFieldGeoProc.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrModulateAtlasCoverageEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrPerlinNoise2Effect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrRRectEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrShadowGeoProc.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrYUVtoRGBEffect.cpp:SkScalarNearlyZero(float, float)
GrAAConvexTessellator.cpp:SkScalarNearlyZero(float, float)
Line
Count
Source
102
15.7k
                                      SkScalar tolerance = SK_ScalarNearlyZero) {
103
15.7k
    SkASSERT(tolerance >= 0);
104
15.7k
    return SkScalarAbs(x) <= tolerance;
105
15.7k
}
Unexecuted instantiation: GrAATriangulator.cpp:SkScalarNearlyZero(float, float)
GrPathUtils.cpp:SkScalarNearlyZero(float, float)
Line
Count
Source
102
533k
                                      SkScalar tolerance = SK_ScalarNearlyZero) {
103
533k
    SkASSERT(tolerance >= 0);
104
533k
    return SkScalarAbs(x) <= tolerance;
105
533k
}
Unexecuted instantiation: GrTriangulator.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrGLSLFragmentShaderBuilder.cpp:SkScalarNearlyZero(float, float)
GrGradientShader.cpp:SkScalarNearlyZero(float, float)
Line
Count
Source
102
1.51k
                                      SkScalar tolerance = SK_ScalarNearlyZero) {
103
1.51k
    SkASSERT(tolerance >= 0);
104
1.51k
    return SkScalarAbs(x) <= tolerance;
105
1.51k
}
Unexecuted instantiation: GrMockCaps.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: AtlasInstancedHelper.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: PathInnerTriangulateOp.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: PathTessellateOp.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: StrokeTessellateOp.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrStrokeTessellationShader.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: StrokeTessellator.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrVkBuffer.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrVkCaps.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrVkCommandBuffer.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrVkCommandPool.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrVkContextThreadSafeProxy.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrVkDescriptorPool.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrVkDescriptorSetManager.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrVkFramebuffer.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrVkPipelineStateBuilder.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrVkUniformHandler.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrVkVaryingHandler.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: AtlasProvider.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: Buffer.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: BufferManager.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: Caps.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: ClientMappedBufferManager.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: CommandBuffer.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: ComputePathAtlas.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: ContextUtils.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: DrawAtlas.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: DrawContext.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: DrawList.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: DrawPass.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: DrawWriter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GpuWorkSubmission.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: Image_Base_Graphite.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: KeyContext.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: PaintParams.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: PaintParamsKey.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: PathAtlas.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: PipelineData.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: ProxyCache.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: RasterPathAtlas.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: RasterPathUtils.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: RenderPassDesc.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: Renderer.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: ShaderCodeDictionary.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SpecialImage_Graphite.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: UniformManager.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: DispatchGroup.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: AnalyticBlurMask.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: IntersectionTree.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: Shape.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: Transform.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: ClearBuffersTask.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: ComputeTask.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: DrawTask.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: RenderPassTask.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: VulkanBuffer.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: VulkanCaps.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: VulkanCommandBuffer.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: VulkanGraphiteTypes.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: VulkanRenderPass.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: VulkanResourceProvider.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: VulkanSampler.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: VulkanSamplerYcbcrConversion.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: VulkanTexture.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkOpts_hsw.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkOpts_skx.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkDOM.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkXMLParser.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: TiledTextureUtils.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SDFMaskFilter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkAnalyticEdge.cpp:SkScalarNearlyZero(float, float)
SkBitmapProcState.cpp:SkScalarNearlyZero(float, float)
Line
Count
Source
102
2.03k
                                      SkScalar tolerance = SK_ScalarNearlyZero) {
103
2.03k
    SkASSERT(tolerance >= 0);
104
2.03k
    return SkScalarAbs(x) <= tolerance;
105
2.03k
}
Unexecuted instantiation: SkBitmapProcState_matrixProcs.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkBlitMask_opts.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkBlitMask_opts_ssse3.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkBlitRow_D32.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkBlitRow_opts.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkBlitRow_opts_hsw.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkBlitter_Sprite.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkColorTable.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPathMeasure.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPoint3.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkScan_AAAPath.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSpriteBlitter_ARGB32.cpp:SkScalarNearlyZero(float, float)
SkPolyUtils.cpp:SkScalarNearlyZero(float, float)
Line
Count
Source
102
176M
                                      SkScalar tolerance = SK_ScalarNearlyZero) {
103
176M
    SkASSERT(tolerance >= 0);
104
176M
    return SkScalarAbs(x) <= tolerance;
105
176M
}
Unexecuted instantiation: SkEmbossMask.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkOTTable_name.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: ClipStack.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrProgramDesc.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: StencilMaskHelper.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrConvexPolyEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrOvalEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrGradientBitmapCache.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrVkDescriptorSet.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: ClipStack_graphite.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: KeyHelpers.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: RuntimeEffectDictionary.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: VulkanDescriptorPool.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: VulkanDescriptorSet.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: VulkanFramebuffer.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: VulkanGraphicsPipeline.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: VulkanImageView.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkAlphaRuns.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkContourMeasure.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGDOM.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGEllipse.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGFe.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGFeBlend.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGFeColorMatrix.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGFeComponentTransfer.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGFeComposite.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGFeDisplacementMap.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGFeFlood.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGFeGaussianBlur.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGFeImage.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGFeLightSource.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGFeLighting.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGFeMerge.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGFeMorphology.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGFeOffset.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGFeTurbulence.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGFilter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGFilterContext.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGImage.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGLine.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGLinearGradient.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGMask.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGNode.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGPath.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGPattern.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGPoly.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGRadialGradient.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGRect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGRenderContext.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGSVG.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGShape.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGStop.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGText.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGTransformableNode.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGUse.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGAttribute.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGAttributeParser.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGCircle.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGClipPath.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGContainer.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGGradient.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkShaper.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkShaper_factory.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkShaper_primitive.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkShaper_skunicode.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkShaper_harfbuzz.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkUnicode_icu.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkUnicode_icu_bidi.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkBidiFactory_icu_full.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkParseColor.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkParsePath.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkUnicode.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FuzzTextBlobDeserialize.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FuzzGradients.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FuzzSVG.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FuzzCanvas.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FuzzNullCanvas.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkNullCanvas.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkColorMatrixFilter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkHighContrastFilter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPDFDocument.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPDFFont.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPDFFormXObject.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPDFMakeCIDGlyphWidthsArray.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPDFMakeToUnicodeCmap.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPDFMetadata.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPDFSubsetFont.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPDFTag.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPDFType1Font.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPDFTypes.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPDFUtils.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGCanvas.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSVGDevice.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkAnnotation.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkClipStack.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkClipStackDevice.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkDeflate.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPDFBitmap.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPDFDevice.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPDFGraphicStackState.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPDFGraphicState.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPDFResourceDict.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPDFShader.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkXMLWriter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkClipStackUtils.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkJpegEncoderImpl.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkClusterator.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkKeyedImage.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPDFGradientShader.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkJPEGWriteUtility.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FuzzImageFilterDeserialize.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FuzzJSON.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FuzzPrecompile.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FactoryFunctions.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: Precompile.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: PublicPrecompile.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FuzzEncoders.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FuzzWEBPEncoder.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkWebpEncoderImpl.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FuzzQuadRoots.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkColor.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPathBuilder.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkShadowUtils.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLCheckSymbolTableCorrectness.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SurfaceDrawContext.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: CoverageMaskRenderStep.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: BlurUtils.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkDrawShadowInfo.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkShadowTessellator.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrManagedResource.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrMemoryPool.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GrRRectEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FuzzCreateDDL.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FuzzAPICreateDDL.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FuzzSkParagraph.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FontCollection.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: ParagraphBuilderImpl.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: ParagraphCache.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: ParagraphImpl.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: ParagraphPainterImpl.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: ParagraphStyle.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: Run.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: TextLine.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: TextShadow.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: TextStyle.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: TextWrapper.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: TypefaceFontProvider.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: Decorations.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FontArguments.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: OneLineShaper.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FuzzRegionSetPath.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FuzzPathMeasure.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FuzzDDLThreading.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FuzzAPISVGCanvas.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FuzzRegionDeserialize.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FuzzPNGEncoder.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FuzzRasterN32Canvas.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FuzzRegionOp.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FuzzPathop.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkPathOpsTightBounds.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FuzzSkDescriptorDeserialize.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FuzzPolyUtils.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FuzzCOLRv1.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FuzzPathDeserialize.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FuzzSkottieJSON.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: Skottie.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkottieJson.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SlotManager.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: Animator.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: ScalarKeyframeAnimator.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: VectorKeyframeAnimator.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: TextLayer.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: Font.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: TextAdapter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: TextAnimator.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: TextShaper.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkResources.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: Composition.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: Layer.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: Path.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkottieProperty.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: KeyframeAnimator.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: ShapeKeyframeAnimator.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: TextKeyframeAnimator.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: Vec2KeyframeAnimator.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: Effects.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FillEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FractalNoiseEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GaussianBlurEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GlowStyles.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: GradientEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: HueSaturationEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: InvertEffect.cpp:SkScalarNearlyZero(float, float)
LevelsEffect.cpp:SkScalarNearlyZero(float, float)
Line
Count
Source
102
713
                                      SkScalar tolerance = SK_ScalarNearlyZero) {
103
713
    SkASSERT(tolerance >= 0);
104
713
    return SkScalarAbs(x) <= tolerance;
105
713
}
Unexecuted instantiation: LinearWipeEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: MotionBlurEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: MotionTileEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: RadialWipeEffect.cpp:SkScalarNearlyZero(float, float)
ShadowStyles.cpp:SkScalarNearlyZero(float, float)
Line
Count
Source
102
49.8k
                                      SkScalar tolerance = SK_ScalarNearlyZero) {
103
49.8k
    SkASSERT(tolerance >= 0);
104
49.8k
    return SkScalarAbs(x) <= tolerance;
105
49.8k
}
Unexecuted instantiation: SharpenEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: ShiftChannelsEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSLEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SphereEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: ThresholdEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: TintEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: TransformEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: TritoneEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: VenetianBlindsEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: AudioLayer.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FootageLayer.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: NullLayer.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: PrecompLayer.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SolidLayer.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: ShapeLayer.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: TrimPaths.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: RangeSelector.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: TextValue.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkAnimCodecPlayer.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: BlendModes.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: Camera.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: BlackAndWhiteEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: BrightnessContrastEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: BulgeEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: CCTonerEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: CornerPinEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: DirectionalBlur.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: DisplacementMapEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: DropShadowEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: Ellipse.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FillStroke.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: Gradient.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: MergePaths.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: OffsetPaths.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: Polystar.cpp:SkScalarNearlyZero(float, float)
PuckerBloat.cpp:SkScalarNearlyZero(float, float)
Line
Count
Source
102
61.1k
                                      SkScalar tolerance = SK_ScalarNearlyZero) {
103
61.1k
    SkASSERT(tolerance >= 0);
104
61.1k
    return SkScalarAbs(x) <= tolerance;
105
61.1k
}
Unexecuted instantiation: Rectangle.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: Repeater.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: RoundCorners.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkCubicMap.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSGClipEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSGColorFilter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSGDraw.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSGEffectNode.cpp:SkScalarNearlyZero(float, float)
SkSGGeometryEffect.cpp:SkScalarNearlyZero(float, float)
Line
Count
Source
102
188k
                                      SkScalar tolerance = SK_ScalarNearlyZero) {
103
188k
    SkASSERT(tolerance >= 0);
104
188k
    return SkScalarAbs(x) <= tolerance;
105
188k
}
Unexecuted instantiation: SkSGGeometryNode.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSGGradient.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSGGroup.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSGImage.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSGMaskEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSGMerge.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSGNode.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSGOpacityEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSGPaint.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSGPath.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSGRect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSGRenderEffect.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSGRenderNode.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSGTransform.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSGInvalidationController.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FuzzAnimatedImage.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkAnimatedImage.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkAndroidCodec.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkAndroidCodecAdapter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSampledCodec.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FuzzIncrementalImage.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FuzzAPIImageFilter.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FuzzMockGPUCanvas.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FuzzDrawFunctions.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: SkSurface_Null.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FuzzTriangulation.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FuzzAndroidCodec.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FuzzJPEGEncoder.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FuzzSKP.cpp:SkScalarNearlyZero(float, float)
Unexecuted instantiation: FuzzCubicRoots.cpp:SkScalarNearlyZero(float, float)
106
107
static inline bool SkScalarNearlyEqual(SkScalar x, SkScalar y,
108
18.7M
                                       SkScalar tolerance = SK_ScalarNearlyZero) {
109
18.7M
    SkASSERT(tolerance >= 0);
110
18.7M
    return SkScalarAbs(x-y) <= tolerance;
111
18.7M
}
Unexecuted instantiation: FuzzImage.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: Fuzz.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FuzzCommon.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: CommandLineFlags.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: BackendSurfaceFactory.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: BackendTextureImageFactory.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FlushFinishTracker.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrContextFactory.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrTest.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: ManagedBackendTexture.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: MemoryCache.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: ProtectedUtils.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: ProxyUtils.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: TestContext.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: TestOps.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: YUVUtils.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: MockTestContext.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: TextBlobTools.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkTestCanvas.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: VkTestContext.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: VkTestHelper.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: VkTestMemoryAllocator.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: VkTestUtils.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: VkYcbcrSamplerHelper.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: AtlasTextOpTools.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrAtlasTools.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: ContextFactory.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GraphiteTestContext.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: ProtectedUtils_Graphite.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: UniqueKeyUtils.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GraphiteVulkanTestContext.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: DDLPromiseImageHelper.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: DDLTileHelper.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: DecodeUtils.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: EncodeUtils.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GpuToolUtils.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: MSKPPlayer.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: Resources.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: RuntimeBlendUtils.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkMetaData.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSharingProc.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: TestFontDataProvider.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: ToolUtils.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: UrlDataManager.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: DebugCanvas.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: DebugLayerManager.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: DrawCommand.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: JsonWriteBuffer.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FontToolUtils.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: RandomScalerContext.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: TestFontMgr.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: TestSVGTypeface.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: TestTypeface.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkTextBlobTrace.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: Timer.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SvgPathExtractor.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkAutoPixmapStorage.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkBitmap.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkBlendMode.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkBlendModeBlender.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkCanvas.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkCanvasPriv.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkCanvas_Raster.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkChecksum.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkColor.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkColorFilter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkColorSpace.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkColorSpaceXformSteps.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkConvertPixels.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkData.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkDevice.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkDrawable.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkFlattenable.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkFont.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkFontMgr.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkGeometry.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkGlyph.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkImageFilter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkImageFilterCache.cpp:SkScalarNearlyEqual(float, float, float)
SkImageFilterTypes.cpp:SkScalarNearlyEqual(float, float, float)
Line
Count
Source
108
4.84M
                                       SkScalar tolerance = SK_ScalarNearlyZero) {
109
4.84M
    SkASSERT(tolerance >= 0);
110
4.84M
    return SkScalarAbs(x-y) <= tolerance;
111
4.84M
}
Unexecuted instantiation: SkImageGenerator.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkImageInfo.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkKnownRuntimeEffects.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkLatticeIter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkLocalMatrixImageFilter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkM44.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkMD5.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkMallocPixelRef.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkMask.cpp:SkScalarNearlyEqual(float, float, float)
SkMatrix.cpp:SkScalarNearlyEqual(float, float, float)
Line
Count
Source
108
883
                                       SkScalar tolerance = SK_ScalarNearlyZero) {
109
883
    SkASSERT(tolerance >= 0);
110
883
    return SkScalarAbs(x-y) <= tolerance;
111
883
}
Unexecuted instantiation: SkMatrixInvert.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkMipmap.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkMipmapHQDownSampler.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPaint.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPaintPriv.cpp:SkScalarNearlyEqual(float, float, float)
SkPath.cpp:SkScalarNearlyEqual(float, float, float)
Line
Count
Source
108
21.0k
                                       SkScalar tolerance = SK_ScalarNearlyZero) {
109
21.0k
    SkASSERT(tolerance >= 0);
110
21.0k
    return SkScalarAbs(x-y) <= tolerance;
111
21.0k
}
Unexecuted instantiation: SkPathBuilder.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPathEffect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPathRef.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPathUtils.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPicture.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPictureData.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPictureFlat.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPicturePlayback.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPictureRecord.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPictureRecorder.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPixelRef.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPixmap.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPoint.cpp:SkScalarNearlyEqual(float, float, float)
SkRRect.cpp:SkScalarNearlyEqual(float, float, float)
Line
Count
Source
108
4.62k
                                       SkScalar tolerance = SK_ScalarNearlyZero) {
109
4.62k
    SkASSERT(tolerance >= 0);
110
4.62k
    return SkScalarAbs(x-y) <= tolerance;
111
4.62k
}
Unexecuted instantiation: SkRSXform.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkRasterPipeline.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkReadBuffer.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkReadPixelsRec.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkRecord.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkRecordDraw.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkRecordOpts.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkRecordedDrawable.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkRecorder.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkRecords.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkRect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkRegion.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkRegion_path.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkResourceCache.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkRuntimeEffect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkScalerContext.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkScan_Path.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSpecialImage.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkStream.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkStrikeCache.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkStrikeSpec.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkString.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkStringUtils.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkStrokeRec.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSwizzler_opts.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSwizzler_opts_hsw.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSwizzler_opts_ssse3.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkTextBlob.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkTypeface.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkTypefaceCache.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkUnPreMultiply.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkVertices.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkWriteBuffer.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkWritePixelsRec.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkWriter32.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkYUVAInfo.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkYUVAPixmaps.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkYUVMath.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkImage.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkImage_Lazy.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkImage_Raster.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkImage_RasterFactories.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSurface.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSurface_Base.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSurface_Raster.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkTiledImageUtils.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkColorFilterShader.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkColorShader.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkImageShader.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkRuntimeShader.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkShader.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkShaderBase.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkWorkingColorSpaceShader.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GlyphRun.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SlugFromBuffer.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkOpBuilder.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkOpContour.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkOpEdgeBuilder.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkOpSegment.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkOpSpan.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPathOpsConic.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPathOpsCubic.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPathOpsCurve.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPathOpsDebug.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPathOpsLine.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPathOpsOp.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPathOpsQuad.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPathOpsRect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPathOpsSimplify.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPathOpsTypes.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPathOpsWinding.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPathWriter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkReduceOrder.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkCustomTypeface.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkJSON.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkJSONWriter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkMatrix22.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkMultiPictureDocument.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkNWayCanvas.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkOSPath.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPaintFilterCanvas.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkParse.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPatchUtils.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkShadowUtils.cpp:SkScalarNearlyEqual(float, float, float)
SkBlenders.cpp:SkScalarNearlyEqual(float, float, float)
Line
Count
Source
108
31.2k
                                       SkScalar tolerance = SK_ScalarNearlyZero) {
109
31.2k
    SkASSERT(tolerance >= 0);
110
31.2k
    return SkScalarAbs(x-y) <= tolerance;
111
31.2k
}
Unexecuted instantiation: SkLinearGradient.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkBlendModeColorFilter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkColorFilterBase.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkComposeColorFilter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkGaussianColorFilter.cpp:SkScalarNearlyEqual(float, float, float)
SkMatrixColorFilter.cpp:SkScalarNearlyEqual(float, float, float)
Line
Count
Source
108
54.1k
                                       SkScalar tolerance = SK_ScalarNearlyZero) {
109
54.1k
    SkASSERT(tolerance >= 0);
110
54.1k
    return SkScalarAbs(x-y) <= tolerance;
111
54.1k
}
Unexecuted instantiation: SkRuntimeColorFilter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkWorkingFormatColorFilter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkCodec.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkCodecImageGenerator.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkImageGenerator_FromEncoded.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPixmapUtils.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSampler.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkBmpCodec.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkBmpMaskCodec.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkBmpRLECodec.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkBmpStandardCodec.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkWbmpCodec.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLAnalysis.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLCompiler.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLErrorReporter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLInliner.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLMangler.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLModuleLoader.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLParser.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLCheckProgramStructure.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLFinalizationChecks.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLGetReturnComplexity.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLHasSideEffects.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLIsConstantExpression.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLProgramUsage.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLReturnsInputAlpha.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLSymbolTableStackBuilder.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLRasterPipelineBuilder.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLRasterPipelineCodeGenerator.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLBlock.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLExpressionStatement.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLFieldAccess.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLForStatement.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLFunctionCall.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLFunctionDeclaration.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLFunctionDefinition.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLIfStatement.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLIndexExpression.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLInterfaceBlock.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLProgram.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLSetting.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLStructDefinition.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLSwitchStatement.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLSymbol.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLSymbolTable.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLType.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLVarDeclarations.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLVariable.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLDebugTracePriv.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLAddConstToVarModifiers.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLEliminateDeadFunctions.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLEliminateDeadGlobalVariables.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLEliminateDeadLocalVariables.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLEliminateEmptyStatements.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLEliminateUnnecessaryBraces.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLEliminateUnreachableCode.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLFindAndDeclareBuiltinFunctions.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLFindAndDeclareBuiltinStructs.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLFindAndDeclareBuiltinVariables.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLHoistSwitchVarDeclarationsAtTopLevel.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLRenamePrivateSymbols.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLReplaceConstVarsWithLiterals.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkGlobalInitialization_default.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkOSFile_stdio.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkOSFile_posix.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkFontMgr_custom_empty.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrAuditTrail.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrBackendSurface.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrCanvas.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrCaps.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrColorInfo.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrColorSpaceXform.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrContext_Base.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrDeferredDisplayList.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrDeferredDisplayListRecorder.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrDirectContext.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrDirectContextPriv.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrDrawOpAtlas.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrDrawingManager.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrFragmentProcessor.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrGeometryProcessor.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrGpu.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrGpuBuffer.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrGpuResource.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrImageContext.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrImageInfo.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrOpFlushState.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrOpsRenderPass.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrPersistentCacheUtils.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrPipeline.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrProcessor.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrProcessorAnalysis.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrProcessorSet.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrProgramInfo.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrPromiseImageTexture.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrProxyProvider.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrRecordingContext.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrRecordingContextPriv.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrRenderTargetProxy.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrRenderTask.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrRenderTaskCluster.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrResourceAllocator.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrResourceCache.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrResourceProvider.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrRingBuffer.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrShaderCaps.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrStagingBufferManager.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrStencilSettings.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrSurface.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrSurfaceCharacterization.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrSurfaceProxy.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrSurfaceProxyView.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrTestUtils.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrTexture.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrTextureProxy.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrTextureRenderTargetProxy.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrTextureResolveRenderTask.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrThreadSafeCache.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrThreadSafePipelineBuilder.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrTransferFromRenderTask.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrWaitRenderTask.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrWritePixelsRenderTask.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrXferProcessor.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrYUVABackendTextures.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: PathRendererChain.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkGr.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SurfaceContext.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SurfaceDrawContext.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SurfaceFillContext.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrBicubicEffect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrBlendFragmentProcessor.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrCustomXfermode.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrDisableColorXP.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrMatrixEffect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrPorterDuffXferProcessor.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrSkSLFP.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrTextureEffect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrQuad.cpp:SkScalarNearlyEqual(float, float, float)
GrQuadUtils.cpp:SkScalarNearlyEqual(float, float, float)
Line
Count
Source
108
4.73k
                                       SkScalar tolerance = SK_ScalarNearlyZero) {
109
4.73k
    SkASSERT(tolerance >= 0);
110
4.73k
    return SkScalarAbs(x-y) <= tolerance;
111
4.73k
}
Unexecuted instantiation: GrShape.cpp:SkScalarNearlyEqual(float, float, float)
GrStyledShape.cpp:SkScalarNearlyEqual(float, float, float)
Line
Count
Source
108
6.17k
                                       SkScalar tolerance = SK_ScalarNearlyZero) {
109
6.17k
    SkASSERT(tolerance >= 0);
110
6.17k
    return SkScalarAbs(x-y) <= tolerance;
111
6.17k
}
Unexecuted instantiation: GrGLSLBlend.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrGLSLProgramBuilder.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrGLSLProgramDataManager.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrGLSLShaderBuilder.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrGLSLUniformHandler.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrGLSLVarying.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrGLSLVertexGeoBuilder.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrImageUtils.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrTextureGenerator.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkImage_Ganesh.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkImage_GaneshBase.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkImage_GaneshFactories.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkImage_GaneshYUVA.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkImage_LazyTexture.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkImage_RasterPinnable.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSpecialImage_Ganesh.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrMockGpu.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrMockTypes.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: AAConvexPathRenderer.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: AAHairLinePathRenderer.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: AALinearizingConvexPathRenderer.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: AtlasPathRenderer.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: AtlasRenderTask.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: AtlasTextOp.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: ClearOp.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: DashLinePathRenderer.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: DashOp.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: DefaultPathRenderer.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: DrawAtlasOp.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: DrawAtlasPathOp.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: DrawMeshOp.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: DrawableOp.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FillRRectOp.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FillRectOp.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrMeshDrawOp.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrOp.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrOvalOpFactory.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrSimpleMeshDrawOpHelper.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrSimpleMeshDrawOpHelperWithStencil.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: LatticeOp.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: OpsTask.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: PathStencilCoverOp.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: QuadPerEdgeAA.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: RegionOp.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: ShadowRRectOp.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SmallPathAtlasMgr.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SmallPathRenderer.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SmallPathShapeData.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SoftwarePathRenderer.cpp:SkScalarNearlyEqual(float, float, float)
StrokeRectOp.cpp:SkScalarNearlyEqual(float, float, float)
Line
Count
Source
108
907
                                       SkScalar tolerance = SK_ScalarNearlyZero) {
109
907
    SkASSERT(tolerance >= 0);
110
907
    return SkScalarAbs(x-y) <= tolerance;
111
907
}
Unexecuted instantiation: TessellationPathRenderer.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: TextureOp.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: TriangulatingPathRenderer.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSurface_Ganesh.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrPathTessellationShader.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrTessellationShader.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: PathTessellator.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrAtlasManager.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrVkBackendSurface.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrVkDirectContext.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrVkGpu.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrVkImage.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrVkImageView.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrVkMSAALoadManager.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrVkOpsRenderPass.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrVkPipeline.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrVkPipelineState.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrVkPipelineStateCache.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrVkPipelineStateDataManager.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrVkRenderPass.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrVkRenderTarget.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrVkResourceProvider.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrVkSampler.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrVkSamplerYcbcrConversion.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrVkSemaphore.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrVkTexture.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrVkTextureRenderTarget.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrVkUtil.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: BackendTexture.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: Context.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GlobalCache.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: ImageFactories.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: Image_Graphite.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: Image_YUVA_Graphite.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: QueueManager.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: Recorder.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: Recording.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: RendererProvider.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: Resource.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: ResourceCache.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: ResourceProvider.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: ScratchResourceManager.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SharedContext.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: Surface_Graphite.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: Texture.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: TextureInfo.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: TextureProxy.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: TextureUtils.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: UploadBufferManager.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: YUVABackendTextures.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: AnalyticBlurRenderStep.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: AnalyticRRectRenderStep.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: BitmapTextRenderStep.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: CoverBoundsRenderStep.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: CoverageMaskRenderStep.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GraphiteVertexFiller.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: MiddleOutFanRenderStep.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: PerEdgeAAQuadRenderStep.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SDFTextRenderStep.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: TessellateCurvesRenderStep.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: TessellateStrokesRenderStep.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: TessellateWedgesRenderStep.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: VerticesRenderStep.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: CopyTask.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SynchronizeToCpuTask.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: TaskList.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: UploadTask.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: TextAtlasManager.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: VulkanGraphiteUtils.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: VulkanQueueManager.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: VulkanSharedContext.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPngEncoderImpl.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkHeifCodec.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkJpegCodec.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkJpegDecoderMgr.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkJpegMetadataDecoderImpl.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkJpegSourceMgr.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkJpegUtility.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkJpegXmp.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkIcoCodec.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPngCodec.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkRawCodec.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkWebpCodec.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkWuffsCodec.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkXmp.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkFontHost_FreeType.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkFontHost_FreeType_common.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkFontMgr_custom.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: AtlasTypes.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: Blend.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: BlendFormula.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: BlurUtils.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: DataUtils.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: DitherUtils.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: PipelineUtils.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: ResourceKey.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkBackingFit.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: Swizzle.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FixedCountBufferUtils.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: Tessellation.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: DistanceFieldAdjustTable.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GlyphVector.cpp:SkScalarNearlyEqual(float, float, float)
SDFTControl.cpp:SkScalarNearlyEqual(float, float, float)
Line
Count
Source
108
240
                                       SkScalar tolerance = SK_ScalarNearlyZero) {
109
240
    SkASSERT(tolerance >= 0);
110
240
    return SkScalarAbs(x-y) <= tolerance;
111
240
}
Unexecuted instantiation: SkChromeRemoteGlyphCache.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: Slug.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SlugImpl.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: StrikeCache.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SubRunContainer.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: TextBlob.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: TextBlobRedrawCoordinator.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: VertexFiller.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLPipelineStageCodeGenerator.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLSPIRVCodeGenerator.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: VulkanAMDMemoryAllocator.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: VulkanExtensions.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: VulkanInterface.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: VulkanUtilsPriv.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkJpegMultiPicture.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkJpegSegmentScan.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkAAClip.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkBBHFactory.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkBigPicture.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkBitmapCache.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkBitmapDevice.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkBitmapProcState_opts.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkBitmapProcState_opts_ssse3.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkBlitter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkBlitter_A8.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkBlitter_ARGB32.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkBlurMask.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkBlurMaskFilterImpl.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkCompressedDataUtils.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkCubicClipper.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkDescriptor.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkDistanceFieldGen.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkDocument.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkDraw.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkDrawBase.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkDrawShadowInfo.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkDraw_atlas.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkDraw_text.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkDraw_vertices.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkEdge.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkEdgeBuilder.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkEdgeClipper.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkFontDescriptor.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkFontMetricsPriv.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkFont_serial.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkGlyphRunPainter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkGraphics.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkLineClipper.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkMaskBlurFilter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkMaskCache.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkMaskFilter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkMaskGamma.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkMesh.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkMipmapAccessor.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkMipmapBuilder.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkOpts.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPath_serial.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPixmapDraw.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkRTree.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkRasterClip.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkRasterPipelineBlitter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkRuntimeBlender.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkScalar.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkScan.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkScan_AntiPath.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkScan_Antihair.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkScan_Hairline.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkStrike.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkStroke.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkStrokerPriv.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkTypeface_remote.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkVertState.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkYUVPlanesCache.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkImage_Base.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkImage_Picture.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPictureImageGenerator.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkRescaleAndReadPixels.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkBitmapProcShader.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkBlendShader.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkCoordClampShader.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkEmptyShader.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkLocalMatrixShader.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPerlinNoiseShaderImpl.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPictureShader.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkTransformShader.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkTriColorShader.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: StrikeForGPU.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkAddIntersections.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkDConicLineIntersection.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkDCubicLineIntersection.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkDLineIntersection.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkDQuadLineIntersection.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkIntersections.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkOpAngle.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkOpCoincidence.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkOpCubicHull.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPathOpsAsWinding.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPathOpsCommon.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPathOpsTSect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkDashPath.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkShaderUtils.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkShadowTessellator.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: Sk1DPathEffect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: Sk2DPathEffect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkCornerPathEffect.cpp:SkScalarNearlyEqual(float, float, float)
SkDashPathEffect.cpp:SkScalarNearlyEqual(float, float, float)
Line
Count
Source
108
601
                                       SkScalar tolerance = SK_ScalarNearlyZero) {
109
601
    SkASSERT(tolerance >= 0);
110
601
    return SkScalarAbs(x-y) <= tolerance;
111
601
}
Unexecuted instantiation: SkDiscretePathEffect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkEmbossMaskFilter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkShaderMaskFilterImpl.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkTrimPathEffect.cpp:SkScalarNearlyEqual(float, float, float)
SkConicalGradient.cpp:SkScalarNearlyEqual(float, float, float)
Line
Count
Source
108
1.66k
                                       SkScalar tolerance = SK_ScalarNearlyZero) {
109
1.66k
    SkASSERT(tolerance >= 0);
110
1.66k
    return SkScalarAbs(x-y) <= tolerance;
111
1.66k
}
SkGradientBaseShader.cpp:SkScalarNearlyEqual(float, float, float)
Line
Count
Source
108
13.3M
                                       SkScalar tolerance = SK_ScalarNearlyZero) {
109
13.3M
    SkASSERT(tolerance >= 0);
110
13.3M
    return SkScalarAbs(x-y) <= tolerance;
111
13.3M
}
Unexecuted instantiation: SkRadialGradient.cpp:SkScalarNearlyEqual(float, float, float)
SkSweepGradient.cpp:SkScalarNearlyEqual(float, float, float)
Line
Count
Source
108
1.51k
                                       SkScalar tolerance = SK_ScalarNearlyZero) {
109
1.51k
    SkASSERT(tolerance >= 0);
110
1.51k
    return SkScalarAbs(x-y) <= tolerance;
111
1.51k
}
Unexecuted instantiation: SkColorSpaceXformColorFilter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkTableColorFilter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkBlendImageFilter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkBlurImageFilter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkColorFilterImageFilter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkComposeImageFilter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkCropImageFilter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkDisplacementMapImageFilter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkDropShadowImageFilter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkImageImageFilter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkLightingImageFilter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkMagnifierImageFilter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkMatrixConvolutionImageFilter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkMatrixTransformImageFilter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkMergeImageFilter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkMorphologyImageFilter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPictureImageFilter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkRuntimeImageFilter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkShaderImageFilter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkColorPalette.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkExif.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkMaskSwizzler.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSwizzler.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkTiffUtility.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkBmpBaseCodec.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkEncoder.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkICC.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLBuiltinTypes.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLIntrinsicList.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLUtil.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLCanExitWithoutReturningValue.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLGetLoopUnrollInfo.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLIsDynamicallyUniformExpression.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkEncodedInfo.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkParseEncodedOrigin.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkOTUtils.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: Device.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: Device_drawTexture.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrAttachment.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrBackendTextureImageGenerator.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrBackendUtils.cpp:SkScalarNearlyEqual(float, float, float)
GrBlurUtils.cpp:SkScalarNearlyEqual(float, float, float)
Line
Count
Source
108
1
                                       SkScalar tolerance = SK_ScalarNearlyZero) {
109
1
    SkASSERT(tolerance >= 0);
110
1
    return SkScalarAbs(x-y) <= tolerance;
111
1
}
Unexecuted instantiation: GrBufferAllocPool.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrBufferTransferRenderTask.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrBufferUpdateRenderTask.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrClientMappedBufferManager.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrContextThreadSafeProxy.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrCopyRenderTask.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrDDLContext.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrDDLTask.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrDataUtils.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrDefaultGeoProcFactory.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrDistanceFieldGenFromVector.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrDrawOpTest.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrDynamicAtlas.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrEagerVertexAllocator.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrFixedClip.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrFragmentProcessors.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrMeshDrawTarget.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrOnFlushResourceProvider.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrPaint.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrProcessorUnitTest.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrRenderTarget.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrSWMaskHelper.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrShaderVar.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrStyle.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrUniformDataManager.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrUtil.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrVertexChunkArray.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrYUVATextureProxies.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: PathRenderer.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrBezierEffect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrBitmapTextGeoProc.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrColorTableEffect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrCoverageSetOpXP.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrDistanceFieldGeoProc.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrModulateAtlasCoverageEffect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrPerlinNoise2Effect.cpp:SkScalarNearlyEqual(float, float, float)
GrRRectEffect.cpp:SkScalarNearlyEqual(float, float, float)
Line
Count
Source
108
44
                                       SkScalar tolerance = SK_ScalarNearlyZero) {
109
44
    SkASSERT(tolerance >= 0);
110
44
    return SkScalarAbs(x-y) <= tolerance;
111
44
}
Unexecuted instantiation: GrShadowGeoProc.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrYUVtoRGBEffect.cpp:SkScalarNearlyEqual(float, float, float)
GrAAConvexTessellator.cpp:SkScalarNearlyEqual(float, float, float)
Line
Count
Source
108
4.95k
                                       SkScalar tolerance = SK_ScalarNearlyZero) {
109
4.95k
    SkASSERT(tolerance >= 0);
110
4.95k
    return SkScalarAbs(x-y) <= tolerance;
111
4.95k
}
Unexecuted instantiation: GrAATriangulator.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrPathUtils.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrTriangulator.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrGLSLFragmentShaderBuilder.cpp:SkScalarNearlyEqual(float, float, float)
GrGradientShader.cpp:SkScalarNearlyEqual(float, float, float)
Line
Count
Source
108
872
                                       SkScalar tolerance = SK_ScalarNearlyZero) {
109
872
    SkASSERT(tolerance >= 0);
110
872
    return SkScalarAbs(x-y) <= tolerance;
111
872
}
Unexecuted instantiation: GrMockCaps.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: AtlasInstancedHelper.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: PathInnerTriangulateOp.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: PathTessellateOp.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: StrokeTessellateOp.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrStrokeTessellationShader.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: StrokeTessellator.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrVkBuffer.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrVkCaps.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrVkCommandBuffer.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrVkCommandPool.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrVkContextThreadSafeProxy.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrVkDescriptorPool.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrVkDescriptorSetManager.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrVkFramebuffer.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrVkPipelineStateBuilder.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrVkUniformHandler.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrVkVaryingHandler.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: AtlasProvider.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: Buffer.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: BufferManager.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: Caps.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: ClientMappedBufferManager.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: CommandBuffer.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: ComputePathAtlas.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: ContextUtils.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: DrawAtlas.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: DrawContext.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: DrawList.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: DrawPass.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: DrawWriter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GpuWorkSubmission.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: Image_Base_Graphite.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: KeyContext.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: PaintParams.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: PaintParamsKey.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: PathAtlas.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: PipelineData.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: ProxyCache.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: RasterPathAtlas.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: RasterPathUtils.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: RenderPassDesc.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: Renderer.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: ShaderCodeDictionary.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SpecialImage_Graphite.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: UniformManager.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: DispatchGroup.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: AnalyticBlurMask.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: IntersectionTree.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: Shape.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: Transform.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: ClearBuffersTask.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: ComputeTask.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: DrawTask.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: RenderPassTask.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: VulkanBuffer.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: VulkanCaps.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: VulkanCommandBuffer.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: VulkanGraphiteTypes.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: VulkanRenderPass.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: VulkanResourceProvider.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: VulkanSampler.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: VulkanSamplerYcbcrConversion.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: VulkanTexture.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkOpts_hsw.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkOpts_skx.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkDOM.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkXMLParser.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: TiledTextureUtils.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SDFMaskFilter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkAnalyticEdge.cpp:SkScalarNearlyEqual(float, float, float)
SkBitmapProcState.cpp:SkScalarNearlyEqual(float, float, float)
Line
Count
Source
108
23.3k
                                       SkScalar tolerance = SK_ScalarNearlyZero) {
109
23.3k
    SkASSERT(tolerance >= 0);
110
23.3k
    return SkScalarAbs(x-y) <= tolerance;
111
23.3k
}
Unexecuted instantiation: SkBitmapProcState_matrixProcs.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkBlitMask_opts.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkBlitMask_opts_ssse3.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkBlitRow_D32.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkBlitRow_opts.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkBlitRow_opts_hsw.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkBlitter_Sprite.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkColorTable.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPathMeasure.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPoint3.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkScan_AAAPath.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSpriteBlitter_ARGB32.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPolyUtils.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkEmbossMask.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkOTTable_name.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: ClipStack.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrProgramDesc.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: StencilMaskHelper.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrConvexPolyEffect.cpp:SkScalarNearlyEqual(float, float, float)
GrOvalEffect.cpp:SkScalarNearlyEqual(float, float, float)
Line
Count
Source
108
35
                                       SkScalar tolerance = SK_ScalarNearlyZero) {
109
35
    SkASSERT(tolerance >= 0);
110
35
    return SkScalarAbs(x-y) <= tolerance;
111
35
}
Unexecuted instantiation: GrGradientBitmapCache.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrVkDescriptorSet.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: ClipStack_graphite.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: KeyHelpers.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: RuntimeEffectDictionary.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: VulkanDescriptorPool.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: VulkanDescriptorSet.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: VulkanFramebuffer.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: VulkanGraphicsPipeline.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: VulkanImageView.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkAlphaRuns.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkContourMeasure.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGDOM.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGEllipse.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGFe.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGFeBlend.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGFeColorMatrix.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGFeComponentTransfer.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGFeComposite.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGFeDisplacementMap.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGFeFlood.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGFeGaussianBlur.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGFeImage.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGFeLightSource.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGFeLighting.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGFeMerge.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGFeMorphology.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGFeOffset.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGFeTurbulence.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGFilter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGFilterContext.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGImage.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGLine.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGLinearGradient.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGMask.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGNode.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGPath.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGPattern.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGPoly.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGRadialGradient.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGRect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGRenderContext.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGSVG.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGShape.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGStop.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGText.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGTransformableNode.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGUse.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGAttribute.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGAttributeParser.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGCircle.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGClipPath.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGContainer.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGGradient.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkShaper.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkShaper_factory.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkShaper_primitive.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkShaper_skunicode.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkShaper_harfbuzz.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkUnicode_icu.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkUnicode_icu_bidi.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkBidiFactory_icu_full.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkParseColor.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkParsePath.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkUnicode.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FuzzTextBlobDeserialize.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FuzzGradients.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FuzzSVG.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FuzzCanvas.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FuzzNullCanvas.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkNullCanvas.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkColorMatrixFilter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkHighContrastFilter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPDFDocument.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPDFFont.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPDFFormXObject.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPDFMakeCIDGlyphWidthsArray.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPDFMakeToUnicodeCmap.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPDFMetadata.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPDFSubsetFont.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPDFTag.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPDFType1Font.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPDFTypes.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPDFUtils.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSVGCanvas.cpp:SkScalarNearlyEqual(float, float, float)
SkSVGDevice.cpp:SkScalarNearlyEqual(float, float, float)
Line
Count
Source
108
776
                                       SkScalar tolerance = SK_ScalarNearlyZero) {
109
776
    SkASSERT(tolerance >= 0);
110
776
    return SkScalarAbs(x-y) <= tolerance;
111
776
}
Unexecuted instantiation: SkAnnotation.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkClipStack.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkClipStackDevice.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkDeflate.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPDFBitmap.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPDFDevice.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPDFGraphicStackState.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPDFGraphicState.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPDFResourceDict.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPDFShader.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkXMLWriter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkClipStackUtils.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkJpegEncoderImpl.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkClusterator.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkKeyedImage.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPDFGradientShader.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkJPEGWriteUtility.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FuzzImageFilterDeserialize.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FuzzJSON.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FuzzPrecompile.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FactoryFunctions.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: Precompile.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: PublicPrecompile.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FuzzEncoders.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FuzzWEBPEncoder.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkWebpEncoderImpl.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FuzzQuadRoots.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: ToolUtils.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPathBuilder.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLCheckSymbolTableCorrectness.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SurfaceDrawContext.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FillRectOp.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrOvalOpFactory.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: ShadowRRectOp.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: TextureOp.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: BlurUtils.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: Device.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrManagedResource.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GrMemoryPool.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: AnalyticBlurMask.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FuzzCreateDDL.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FuzzAPICreateDDL.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FuzzSkParagraph.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FontCollection.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: ParagraphBuilderImpl.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: ParagraphCache.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: ParagraphImpl.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: ParagraphPainterImpl.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: ParagraphStyle.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: Run.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: TextLine.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: TextShadow.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: TextStyle.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: TextWrapper.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: TypefaceFontProvider.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: Decorations.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FontArguments.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: OneLineShaper.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FuzzRegionSetPath.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FuzzPathMeasure.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FuzzDDLThreading.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FuzzAPISVGCanvas.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FuzzRegionDeserialize.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FuzzPNGEncoder.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FuzzRasterN32Canvas.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FuzzRegionOp.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FuzzPathop.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkPathOpsTightBounds.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FuzzSkDescriptorDeserialize.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FuzzPolyUtils.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FuzzCOLRv1.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FuzzPathDeserialize.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FuzzSkottieJSON.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: Skottie.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkottieJson.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SlotManager.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: Animator.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: ScalarKeyframeAnimator.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: VectorKeyframeAnimator.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: TextLayer.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: Font.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: TextAdapter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: TextAnimator.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: TextShaper.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkResources.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: Composition.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: Layer.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: Path.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkottieProperty.cpp:SkScalarNearlyEqual(float, float, float)
KeyframeAnimator.cpp:SkScalarNearlyEqual(float, float, float)
Line
Count
Source
108
139k
                                       SkScalar tolerance = SK_ScalarNearlyZero) {
109
139k
    SkASSERT(tolerance >= 0);
110
139k
    return SkScalarAbs(x-y) <= tolerance;
111
139k
}
Unexecuted instantiation: ShapeKeyframeAnimator.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: TextKeyframeAnimator.cpp:SkScalarNearlyEqual(float, float, float)
Vec2KeyframeAnimator.cpp:SkScalarNearlyEqual(float, float, float)
Line
Count
Source
108
25.9k
                                       SkScalar tolerance = SK_ScalarNearlyZero) {
109
25.9k
    SkASSERT(tolerance >= 0);
110
25.9k
    return SkScalarAbs(x-y) <= tolerance;
111
25.9k
}
Unexecuted instantiation: Effects.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FillEffect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FractalNoiseEffect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GaussianBlurEffect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GlowStyles.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: GradientEffect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: HueSaturationEffect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: InvertEffect.cpp:SkScalarNearlyEqual(float, float, float)
LevelsEffect.cpp:SkScalarNearlyEqual(float, float, float)
Line
Count
Source
108
2.50k
                                       SkScalar tolerance = SK_ScalarNearlyZero) {
109
2.50k
    SkASSERT(tolerance >= 0);
110
2.50k
    return SkScalarAbs(x-y) <= tolerance;
111
2.50k
}
Unexecuted instantiation: LinearWipeEffect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: MotionBlurEffect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: MotionTileEffect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: RadialWipeEffect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: ShadowStyles.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SharpenEffect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: ShiftChannelsEffect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSLEffect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SphereEffect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: ThresholdEffect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: TintEffect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: TransformEffect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: TritoneEffect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: VenetianBlindsEffect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: AudioLayer.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FootageLayer.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: NullLayer.cpp:SkScalarNearlyEqual(float, float, float)
PrecompLayer.cpp:SkScalarNearlyEqual(float, float, float)
Line
Count
Source
108
206k
                                       SkScalar tolerance = SK_ScalarNearlyZero) {
109
206k
    SkASSERT(tolerance >= 0);
110
206k
    return SkScalarAbs(x-y) <= tolerance;
111
206k
}
Unexecuted instantiation: SolidLayer.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: ShapeLayer.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: TrimPaths.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: RangeSelector.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: TextValue.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkAnimCodecPlayer.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: BlendModes.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: Camera.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: BlackAndWhiteEffect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: BrightnessContrastEffect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: BulgeEffect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: CCTonerEffect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: CornerPinEffect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: DirectionalBlur.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: DisplacementMapEffect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: DropShadowEffect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: Ellipse.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FillStroke.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: Gradient.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: MergePaths.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: OffsetPaths.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: Polystar.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: PuckerBloat.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: Rectangle.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: Repeater.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: RoundCorners.cpp:SkScalarNearlyEqual(float, float, float)
SkCubicMap.cpp:SkScalarNearlyEqual(float, float, float)
Line
Count
Source
108
60.6k
                                       SkScalar tolerance = SK_ScalarNearlyZero) {
109
60.6k
    SkASSERT(tolerance >= 0);
110
60.6k
    return SkScalarAbs(x-y) <= tolerance;
111
60.6k
}
Unexecuted instantiation: SkSGClipEffect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSGColorFilter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSGDraw.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSGEffectNode.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSGGeometryEffect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSGGeometryNode.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSGGradient.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSGGroup.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSGImage.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSGMaskEffect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSGMerge.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSGNode.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSGOpacityEffect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSGPaint.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSGPath.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSGRect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSGRenderEffect.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSGRenderNode.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSGTransform.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSGInvalidationController.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FuzzAnimatedImage.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkAnimatedImage.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkAndroidCodec.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkAndroidCodecAdapter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSampledCodec.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FuzzIncrementalImage.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FuzzAPIImageFilter.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FuzzMockGPUCanvas.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FuzzDrawFunctions.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: SkSurface_Null.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FuzzTriangulation.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FuzzAndroidCodec.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FuzzJPEGEncoder.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FuzzSKP.cpp:SkScalarNearlyEqual(float, float, float)
Unexecuted instantiation: FuzzCubicRoots.cpp:SkScalarNearlyEqual(float, float, float)
112
113
487k
#define SK_ScalarSinCosNearlyZero   (SK_Scalar1 / (1 << 16))
114
115
243k
static inline float SkScalarSinSnapToZero(SkScalar radians) {
116
243k
    float v = SkScalarSin(radians);
117
243k
    return SkScalarNearlyZero(v, SK_ScalarSinCosNearlyZero) ? 0.0f : v;
118
243k
}
Unexecuted instantiation: FuzzImage.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: Fuzz.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FuzzCommon.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: CommandLineFlags.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: BackendSurfaceFactory.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: BackendTextureImageFactory.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FlushFinishTracker.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrContextFactory.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrTest.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: ManagedBackendTexture.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: MemoryCache.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: ProtectedUtils.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: ProxyUtils.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: TestContext.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: TestOps.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: YUVUtils.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: MockTestContext.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: TextBlobTools.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkTestCanvas.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: VkTestContext.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: VkTestHelper.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: VkTestMemoryAllocator.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: VkTestUtils.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: VkYcbcrSamplerHelper.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: AtlasTextOpTools.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrAtlasTools.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: ContextFactory.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GraphiteTestContext.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: ProtectedUtils_Graphite.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: UniqueKeyUtils.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GraphiteVulkanTestContext.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: DDLPromiseImageHelper.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: DDLTileHelper.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: DecodeUtils.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: EncodeUtils.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GpuToolUtils.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: MSKPPlayer.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: Resources.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: RuntimeBlendUtils.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkMetaData.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSharingProc.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: TestFontDataProvider.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: ToolUtils.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: UrlDataManager.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: DebugCanvas.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: DebugLayerManager.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: DrawCommand.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: JsonWriteBuffer.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FontToolUtils.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: RandomScalerContext.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: TestFontMgr.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: TestSVGTypeface.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: TestTypeface.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkTextBlobTrace.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: Timer.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SvgPathExtractor.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkAutoPixmapStorage.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkBitmap.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkBlendMode.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkBlendModeBlender.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkCanvas.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkCanvasPriv.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkCanvas_Raster.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkChecksum.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkColor.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkColorFilter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkColorSpace.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkColorSpaceXformSteps.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkConvertPixels.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkData.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkDevice.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkDrawable.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkFlattenable.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkFont.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkFontMgr.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkGeometry.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkGlyph.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkImageFilter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkImageFilterCache.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkImageFilterTypes.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkImageGenerator.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkImageInfo.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkKnownRuntimeEffects.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkLatticeIter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkLocalMatrixImageFilter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkM44.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkMD5.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkMallocPixelRef.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkMask.cpp:SkScalarSinSnapToZero(float)
SkMatrix.cpp:SkScalarSinSnapToZero(float)
Line
Count
Source
115
197k
static inline float SkScalarSinSnapToZero(SkScalar radians) {
116
197k
    float v = SkScalarSin(radians);
117
197k
    return SkScalarNearlyZero(v, SK_ScalarSinCosNearlyZero) ? 0.0f : v;
118
197k
}
Unexecuted instantiation: SkMatrixInvert.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkMipmap.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkMipmapHQDownSampler.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPaint.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPaintPriv.cpp:SkScalarSinSnapToZero(float)
SkPath.cpp:SkScalarSinSnapToZero(float)
Line
Count
Source
115
45.8k
static inline float SkScalarSinSnapToZero(SkScalar radians) {
116
45.8k
    float v = SkScalarSin(radians);
117
45.8k
    return SkScalarNearlyZero(v, SK_ScalarSinCosNearlyZero) ? 0.0f : v;
118
45.8k
}
Unexecuted instantiation: SkPathBuilder.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPathEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPathRef.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPathUtils.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPicture.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPictureData.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPictureFlat.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPicturePlayback.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPictureRecord.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPictureRecorder.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPixelRef.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPixmap.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPoint.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkRRect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkRSXform.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkRasterPipeline.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkReadBuffer.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkReadPixelsRec.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkRecord.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkRecordDraw.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkRecordOpts.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkRecordedDrawable.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkRecorder.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkRecords.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkRect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkRegion.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkRegion_path.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkResourceCache.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkRuntimeEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkScalerContext.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkScan_Path.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSpecialImage.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkStream.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkStrikeCache.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkStrikeSpec.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkString.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkStringUtils.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkStrokeRec.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSwizzler_opts.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSwizzler_opts_hsw.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSwizzler_opts_ssse3.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkTextBlob.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkTypeface.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkTypefaceCache.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkUnPreMultiply.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkVertices.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkWriteBuffer.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkWritePixelsRec.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkWriter32.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkYUVAInfo.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkYUVAPixmaps.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkYUVMath.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkImage.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkImage_Lazy.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkImage_Raster.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkImage_RasterFactories.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSurface.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSurface_Base.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSurface_Raster.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkTiledImageUtils.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkColorFilterShader.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkColorShader.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkImageShader.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkRuntimeShader.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkShader.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkShaderBase.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkWorkingColorSpaceShader.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GlyphRun.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SlugFromBuffer.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkOpBuilder.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkOpContour.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkOpEdgeBuilder.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkOpSegment.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkOpSpan.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPathOpsConic.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPathOpsCubic.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPathOpsCurve.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPathOpsDebug.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPathOpsLine.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPathOpsOp.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPathOpsQuad.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPathOpsRect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPathOpsSimplify.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPathOpsTypes.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPathOpsWinding.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPathWriter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkReduceOrder.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkCustomTypeface.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkJSON.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkJSONWriter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkMatrix22.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkMultiPictureDocument.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkNWayCanvas.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkOSPath.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPaintFilterCanvas.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkParse.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPatchUtils.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkShadowUtils.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkBlenders.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkLinearGradient.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkBlendModeColorFilter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkColorFilterBase.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkComposeColorFilter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkGaussianColorFilter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkMatrixColorFilter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkRuntimeColorFilter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkWorkingFormatColorFilter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkCodec.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkCodecImageGenerator.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkImageGenerator_FromEncoded.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPixmapUtils.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSampler.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkBmpCodec.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkBmpMaskCodec.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkBmpRLECodec.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkBmpStandardCodec.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkWbmpCodec.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLAnalysis.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLCompiler.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLErrorReporter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLInliner.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLMangler.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLModuleLoader.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLParser.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLCheckProgramStructure.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLFinalizationChecks.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLGetReturnComplexity.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLHasSideEffects.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLIsConstantExpression.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLProgramUsage.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLReturnsInputAlpha.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLSymbolTableStackBuilder.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLRasterPipelineBuilder.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLRasterPipelineCodeGenerator.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLBlock.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLExpressionStatement.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLFieldAccess.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLForStatement.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLFunctionCall.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLFunctionDeclaration.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLFunctionDefinition.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLIfStatement.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLIndexExpression.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLInterfaceBlock.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLProgram.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLSetting.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLStructDefinition.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLSwitchStatement.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLSymbol.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLSymbolTable.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLType.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLVarDeclarations.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLVariable.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLDebugTracePriv.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLAddConstToVarModifiers.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLEliminateDeadFunctions.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLEliminateDeadGlobalVariables.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLEliminateDeadLocalVariables.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLEliminateEmptyStatements.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLEliminateUnnecessaryBraces.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLEliminateUnreachableCode.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLFindAndDeclareBuiltinFunctions.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLFindAndDeclareBuiltinStructs.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLFindAndDeclareBuiltinVariables.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLHoistSwitchVarDeclarationsAtTopLevel.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLRenamePrivateSymbols.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLReplaceConstVarsWithLiterals.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkGlobalInitialization_default.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkOSFile_stdio.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkOSFile_posix.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkFontMgr_custom_empty.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrAuditTrail.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrBackendSurface.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrCanvas.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrCaps.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrColorInfo.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrColorSpaceXform.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrContext_Base.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrDeferredDisplayList.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrDeferredDisplayListRecorder.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrDirectContext.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrDirectContextPriv.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrDrawOpAtlas.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrDrawingManager.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrFragmentProcessor.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrGeometryProcessor.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrGpu.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrGpuBuffer.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrGpuResource.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrImageContext.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrImageInfo.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrOpFlushState.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrOpsRenderPass.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrPersistentCacheUtils.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrPipeline.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrProcessor.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrProcessorAnalysis.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrProcessorSet.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrProgramInfo.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrPromiseImageTexture.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrProxyProvider.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrRecordingContext.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrRecordingContextPriv.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrRenderTargetProxy.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrRenderTask.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrRenderTaskCluster.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrResourceAllocator.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrResourceCache.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrResourceProvider.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrRingBuffer.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrShaderCaps.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrStagingBufferManager.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrStencilSettings.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrSurface.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrSurfaceCharacterization.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrSurfaceProxy.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrSurfaceProxyView.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrTestUtils.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrTexture.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrTextureProxy.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrTextureRenderTargetProxy.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrTextureResolveRenderTask.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrThreadSafeCache.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrThreadSafePipelineBuilder.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrTransferFromRenderTask.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrWaitRenderTask.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrWritePixelsRenderTask.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrXferProcessor.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrYUVABackendTextures.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: PathRendererChain.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkGr.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SurfaceContext.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SurfaceDrawContext.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SurfaceFillContext.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrBicubicEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrBlendFragmentProcessor.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrCustomXfermode.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrDisableColorXP.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrMatrixEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrPorterDuffXferProcessor.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrSkSLFP.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrTextureEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrQuad.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrQuadUtils.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrShape.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrStyledShape.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrGLSLBlend.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrGLSLProgramBuilder.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrGLSLProgramDataManager.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrGLSLShaderBuilder.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrGLSLUniformHandler.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrGLSLVarying.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrGLSLVertexGeoBuilder.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrImageUtils.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrTextureGenerator.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkImage_Ganesh.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkImage_GaneshBase.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkImage_GaneshFactories.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkImage_GaneshYUVA.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkImage_LazyTexture.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkImage_RasterPinnable.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSpecialImage_Ganesh.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrMockGpu.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrMockTypes.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: AAConvexPathRenderer.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: AAHairLinePathRenderer.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: AALinearizingConvexPathRenderer.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: AtlasPathRenderer.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: AtlasRenderTask.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: AtlasTextOp.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: ClearOp.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: DashLinePathRenderer.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: DashOp.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: DefaultPathRenderer.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: DrawAtlasOp.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: DrawAtlasPathOp.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: DrawMeshOp.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: DrawableOp.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FillRRectOp.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FillRectOp.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrMeshDrawOp.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrOp.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrOvalOpFactory.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrSimpleMeshDrawOpHelper.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrSimpleMeshDrawOpHelperWithStencil.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: LatticeOp.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: OpsTask.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: PathStencilCoverOp.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: QuadPerEdgeAA.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: RegionOp.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: ShadowRRectOp.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SmallPathAtlasMgr.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SmallPathRenderer.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SmallPathShapeData.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SoftwarePathRenderer.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: StrokeRectOp.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: TessellationPathRenderer.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: TextureOp.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: TriangulatingPathRenderer.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSurface_Ganesh.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrPathTessellationShader.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrTessellationShader.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: PathTessellator.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrAtlasManager.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrVkBackendSurface.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrVkDirectContext.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrVkGpu.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrVkImage.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrVkImageView.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrVkMSAALoadManager.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrVkOpsRenderPass.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrVkPipeline.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrVkPipelineState.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrVkPipelineStateCache.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrVkPipelineStateDataManager.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrVkRenderPass.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrVkRenderTarget.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrVkResourceProvider.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrVkSampler.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrVkSamplerYcbcrConversion.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrVkSemaphore.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrVkTexture.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrVkTextureRenderTarget.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrVkUtil.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: BackendTexture.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: Context.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GlobalCache.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: ImageFactories.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: Image_Graphite.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: Image_YUVA_Graphite.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: QueueManager.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: Recorder.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: Recording.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: RendererProvider.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: Resource.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: ResourceCache.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: ResourceProvider.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: ScratchResourceManager.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SharedContext.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: Surface_Graphite.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: Texture.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: TextureInfo.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: TextureProxy.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: TextureUtils.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: UploadBufferManager.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: YUVABackendTextures.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: AnalyticBlurRenderStep.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: AnalyticRRectRenderStep.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: BitmapTextRenderStep.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: CoverBoundsRenderStep.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: CoverageMaskRenderStep.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GraphiteVertexFiller.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: MiddleOutFanRenderStep.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: PerEdgeAAQuadRenderStep.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SDFTextRenderStep.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: TessellateCurvesRenderStep.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: TessellateStrokesRenderStep.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: TessellateWedgesRenderStep.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: VerticesRenderStep.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: CopyTask.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SynchronizeToCpuTask.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: TaskList.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: UploadTask.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: TextAtlasManager.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: VulkanGraphiteUtils.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: VulkanQueueManager.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: VulkanSharedContext.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPngEncoderImpl.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkHeifCodec.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkJpegCodec.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkJpegDecoderMgr.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkJpegMetadataDecoderImpl.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkJpegSourceMgr.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkJpegUtility.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkJpegXmp.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkIcoCodec.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPngCodec.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkRawCodec.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkWebpCodec.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkWuffsCodec.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkXmp.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkFontHost_FreeType.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkFontHost_FreeType_common.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkFontMgr_custom.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: AtlasTypes.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: Blend.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: BlendFormula.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: BlurUtils.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: DataUtils.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: DitherUtils.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: PipelineUtils.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: ResourceKey.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkBackingFit.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: Swizzle.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FixedCountBufferUtils.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: Tessellation.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: DistanceFieldAdjustTable.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GlyphVector.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SDFTControl.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkChromeRemoteGlyphCache.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: Slug.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SlugImpl.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: StrikeCache.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SubRunContainer.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: TextBlob.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: TextBlobRedrawCoordinator.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: VertexFiller.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLPipelineStageCodeGenerator.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLSPIRVCodeGenerator.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: VulkanAMDMemoryAllocator.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: VulkanExtensions.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: VulkanInterface.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: VulkanUtilsPriv.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkJpegMultiPicture.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkJpegSegmentScan.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkAAClip.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkBBHFactory.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkBigPicture.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkBitmapCache.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkBitmapDevice.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkBitmapProcState_opts.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkBitmapProcState_opts_ssse3.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkBlitter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkBlitter_A8.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkBlitter_ARGB32.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkBlurMask.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkBlurMaskFilterImpl.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkCompressedDataUtils.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkCubicClipper.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkDescriptor.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkDistanceFieldGen.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkDocument.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkDraw.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkDrawBase.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkDrawShadowInfo.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkDraw_atlas.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkDraw_text.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkDraw_vertices.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkEdge.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkEdgeBuilder.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkEdgeClipper.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkFontDescriptor.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkFontMetricsPriv.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkFont_serial.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkGlyphRunPainter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkGraphics.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkLineClipper.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkMaskBlurFilter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkMaskCache.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkMaskFilter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkMaskGamma.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkMesh.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkMipmapAccessor.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkMipmapBuilder.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkOpts.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPath_serial.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPixmapDraw.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkRTree.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkRasterClip.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkRasterPipelineBlitter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkRuntimeBlender.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkScalar.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkScan.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkScan_AntiPath.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkScan_Antihair.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkScan_Hairline.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkStrike.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkStroke.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkStrokerPriv.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkTypeface_remote.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkVertState.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkYUVPlanesCache.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkImage_Base.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkImage_Picture.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPictureImageGenerator.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkRescaleAndReadPixels.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkBitmapProcShader.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkBlendShader.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkCoordClampShader.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkEmptyShader.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkLocalMatrixShader.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPerlinNoiseShaderImpl.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPictureShader.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkTransformShader.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkTriColorShader.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: StrikeForGPU.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkAddIntersections.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkDConicLineIntersection.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkDCubicLineIntersection.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkDLineIntersection.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkDQuadLineIntersection.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkIntersections.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkOpAngle.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkOpCoincidence.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkOpCubicHull.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPathOpsAsWinding.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPathOpsCommon.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPathOpsTSect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkDashPath.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkShaderUtils.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkShadowTessellator.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: Sk1DPathEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: Sk2DPathEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkCornerPathEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkDashPathEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkDiscretePathEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkEmbossMaskFilter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkShaderMaskFilterImpl.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkTrimPathEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkConicalGradient.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkGradientBaseShader.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkRadialGradient.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSweepGradient.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkColorSpaceXformColorFilter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkTableColorFilter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkBlendImageFilter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkBlurImageFilter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkColorFilterImageFilter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkComposeImageFilter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkCropImageFilter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkDisplacementMapImageFilter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkDropShadowImageFilter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkImageImageFilter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkLightingImageFilter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkMagnifierImageFilter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkMatrixConvolutionImageFilter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkMatrixTransformImageFilter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkMergeImageFilter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkMorphologyImageFilter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPictureImageFilter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkRuntimeImageFilter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkShaderImageFilter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkColorPalette.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkExif.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkMaskSwizzler.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSwizzler.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkTiffUtility.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkBmpBaseCodec.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkEncoder.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkICC.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLBuiltinTypes.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLIntrinsicList.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLUtil.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLCanExitWithoutReturningValue.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLGetLoopUnrollInfo.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLIsDynamicallyUniformExpression.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkEncodedInfo.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkParseEncodedOrigin.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkOTUtils.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: Device.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: Device_drawTexture.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrAttachment.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrBackendTextureImageGenerator.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrBackendUtils.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrBlurUtils.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrBufferAllocPool.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrBufferTransferRenderTask.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrBufferUpdateRenderTask.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrClientMappedBufferManager.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrContextThreadSafeProxy.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrCopyRenderTask.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrDDLContext.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrDDLTask.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrDataUtils.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrDefaultGeoProcFactory.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrDistanceFieldGenFromVector.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrDrawOpTest.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrDynamicAtlas.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrEagerVertexAllocator.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrFixedClip.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrFragmentProcessors.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrMeshDrawTarget.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrOnFlushResourceProvider.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrPaint.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrProcessorUnitTest.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrRenderTarget.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrSWMaskHelper.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrShaderVar.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrStyle.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrUniformDataManager.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrUtil.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrVertexChunkArray.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrYUVATextureProxies.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: PathRenderer.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrBezierEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrBitmapTextGeoProc.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrColorTableEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrCoverageSetOpXP.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrDistanceFieldGeoProc.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrModulateAtlasCoverageEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrPerlinNoise2Effect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrRRectEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrShadowGeoProc.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrYUVtoRGBEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrAAConvexTessellator.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrAATriangulator.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrPathUtils.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrTriangulator.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrGLSLFragmentShaderBuilder.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrGradientShader.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrMockCaps.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: AtlasInstancedHelper.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: PathInnerTriangulateOp.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: PathTessellateOp.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: StrokeTessellateOp.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrStrokeTessellationShader.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: StrokeTessellator.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrVkBuffer.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrVkCaps.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrVkCommandBuffer.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrVkCommandPool.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrVkContextThreadSafeProxy.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrVkDescriptorPool.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrVkDescriptorSetManager.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrVkFramebuffer.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrVkPipelineStateBuilder.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrVkUniformHandler.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrVkVaryingHandler.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: AtlasProvider.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: Buffer.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: BufferManager.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: Caps.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: ClientMappedBufferManager.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: CommandBuffer.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: ComputePathAtlas.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: ContextUtils.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: DrawAtlas.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: DrawContext.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: DrawList.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: DrawPass.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: DrawWriter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GpuWorkSubmission.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: Image_Base_Graphite.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: KeyContext.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: PaintParams.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: PaintParamsKey.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: PathAtlas.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: PipelineData.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: ProxyCache.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: RasterPathAtlas.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: RasterPathUtils.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: RenderPassDesc.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: Renderer.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: ShaderCodeDictionary.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SpecialImage_Graphite.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: UniformManager.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: DispatchGroup.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: AnalyticBlurMask.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: IntersectionTree.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: Shape.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: Transform.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: ClearBuffersTask.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: ComputeTask.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: DrawTask.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: RenderPassTask.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: VulkanBuffer.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: VulkanCaps.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: VulkanCommandBuffer.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: VulkanGraphiteTypes.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: VulkanRenderPass.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: VulkanResourceProvider.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: VulkanSampler.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: VulkanSamplerYcbcrConversion.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: VulkanTexture.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkOpts_hsw.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkOpts_skx.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkDOM.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkXMLParser.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: TiledTextureUtils.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SDFMaskFilter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkAnalyticEdge.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkBitmapProcState.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkBitmapProcState_matrixProcs.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkBlitMask_opts.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkBlitMask_opts_ssse3.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkBlitRow_D32.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkBlitRow_opts.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkBlitRow_opts_hsw.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkBlitter_Sprite.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkColorTable.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPathMeasure.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPoint3.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkScan_AAAPath.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSpriteBlitter_ARGB32.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPolyUtils.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkEmbossMask.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkOTTable_name.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: ClipStack.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrProgramDesc.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: StencilMaskHelper.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrConvexPolyEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrOvalEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrGradientBitmapCache.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrVkDescriptorSet.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: ClipStack_graphite.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: KeyHelpers.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: RuntimeEffectDictionary.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: VulkanDescriptorPool.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: VulkanDescriptorSet.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: VulkanFramebuffer.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: VulkanGraphicsPipeline.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: VulkanImageView.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkAlphaRuns.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkContourMeasure.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGDOM.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGEllipse.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGFe.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGFeBlend.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGFeColorMatrix.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGFeComponentTransfer.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGFeComposite.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGFeDisplacementMap.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGFeFlood.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGFeGaussianBlur.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGFeImage.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGFeLightSource.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGFeLighting.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGFeMerge.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGFeMorphology.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGFeOffset.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGFeTurbulence.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGFilter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGFilterContext.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGImage.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGLine.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGLinearGradient.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGMask.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGNode.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGPath.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGPattern.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGPoly.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGRadialGradient.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGRect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGRenderContext.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGSVG.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGShape.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGStop.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGText.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGTransformableNode.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGUse.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGAttribute.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGAttributeParser.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGCircle.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGClipPath.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGContainer.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGGradient.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkShaper.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkShaper_factory.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkShaper_primitive.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkShaper_skunicode.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkShaper_harfbuzz.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkUnicode_icu.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkUnicode_icu_bidi.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkBidiFactory_icu_full.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkParseColor.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkParsePath.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkUnicode.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FuzzTextBlobDeserialize.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FuzzGradients.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FuzzSVG.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FuzzCanvas.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FuzzNullCanvas.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkNullCanvas.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkColorMatrixFilter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkHighContrastFilter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPDFDocument.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPDFFont.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPDFFormXObject.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPDFMakeCIDGlyphWidthsArray.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPDFMakeToUnicodeCmap.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPDFMetadata.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPDFSubsetFont.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPDFTag.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPDFType1Font.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPDFTypes.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPDFUtils.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGCanvas.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSVGDevice.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkAnnotation.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkClipStack.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkClipStackDevice.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkDeflate.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPDFBitmap.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPDFDevice.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPDFGraphicStackState.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPDFGraphicState.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPDFResourceDict.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPDFShader.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkXMLWriter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkClipStackUtils.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkJpegEncoderImpl.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkClusterator.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkKeyedImage.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPDFGradientShader.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkJPEGWriteUtility.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FuzzImageFilterDeserialize.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FuzzJSON.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FuzzPrecompile.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FactoryFunctions.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: Precompile.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: PublicPrecompile.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FuzzEncoders.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FuzzWEBPEncoder.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkWebpEncoderImpl.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FuzzQuadRoots.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLCheckSymbolTableCorrectness.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrManagedResource.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GrMemoryPool.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FuzzCreateDDL.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FuzzAPICreateDDL.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FuzzSkParagraph.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FontCollection.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: ParagraphBuilderImpl.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: ParagraphCache.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: ParagraphImpl.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: ParagraphPainterImpl.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: ParagraphStyle.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: Run.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: TextLine.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: TextShadow.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: TextStyle.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: TextWrapper.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: TypefaceFontProvider.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: Decorations.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FontArguments.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: OneLineShaper.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FuzzRegionSetPath.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FuzzPathMeasure.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FuzzDDLThreading.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FuzzAPISVGCanvas.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FuzzRegionDeserialize.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FuzzPNGEncoder.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FuzzRasterN32Canvas.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FuzzRegionOp.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FuzzPathop.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkPathOpsTightBounds.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FuzzSkDescriptorDeserialize.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FuzzPolyUtils.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FuzzCOLRv1.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FuzzPathDeserialize.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FuzzSkottieJSON.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: Skottie.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkottieJson.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SlotManager.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: Animator.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: ScalarKeyframeAnimator.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: VectorKeyframeAnimator.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: TextLayer.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: Font.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: TextAdapter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: TextAnimator.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: TextShaper.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkResources.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: Composition.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: Layer.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: Path.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkottieProperty.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: KeyframeAnimator.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: ShapeKeyframeAnimator.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: TextKeyframeAnimator.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: Vec2KeyframeAnimator.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: Effects.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FillEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FractalNoiseEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GaussianBlurEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GlowStyles.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: GradientEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: HueSaturationEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: InvertEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: LevelsEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: LinearWipeEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: MotionBlurEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: MotionTileEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: RadialWipeEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: ShadowStyles.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SharpenEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: ShiftChannelsEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSLEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SphereEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: ThresholdEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: TintEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: TransformEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: TritoneEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: VenetianBlindsEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: AudioLayer.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FootageLayer.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: NullLayer.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: PrecompLayer.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SolidLayer.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: ShapeLayer.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: TrimPaths.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: RangeSelector.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: TextValue.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkAnimCodecPlayer.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: BlendModes.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: Camera.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: BlackAndWhiteEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: BrightnessContrastEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: BulgeEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: CCTonerEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: CornerPinEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: DirectionalBlur.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: DisplacementMapEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: DropShadowEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: Ellipse.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FillStroke.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: Gradient.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: MergePaths.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: OffsetPaths.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: Polystar.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: PuckerBloat.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: Rectangle.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: Repeater.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: RoundCorners.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkCubicMap.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSGClipEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSGColorFilter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSGDraw.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSGEffectNode.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSGGeometryEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSGGeometryNode.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSGGradient.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSGGroup.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSGImage.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSGMaskEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSGMerge.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSGNode.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSGOpacityEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSGPaint.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSGPath.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSGRect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSGRenderEffect.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSGRenderNode.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSGTransform.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSGInvalidationController.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FuzzAnimatedImage.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkAnimatedImage.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkAndroidCodec.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkAndroidCodecAdapter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSampledCodec.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FuzzIncrementalImage.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FuzzAPIImageFilter.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FuzzMockGPUCanvas.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FuzzDrawFunctions.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: SkSurface_Null.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FuzzTriangulation.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FuzzAndroidCodec.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FuzzJPEGEncoder.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FuzzSKP.cpp:SkScalarSinSnapToZero(float)
Unexecuted instantiation: FuzzCubicRoots.cpp:SkScalarSinSnapToZero(float)
119
120
243k
static inline float SkScalarCosSnapToZero(SkScalar radians) {
121
243k
    float v = SkScalarCos(radians);
122
243k
    return SkScalarNearlyZero(v, SK_ScalarSinCosNearlyZero) ? 0.0f : v;
123
243k
}
Unexecuted instantiation: FuzzImage.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: Fuzz.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FuzzCommon.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: CommandLineFlags.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: BackendSurfaceFactory.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: BackendTextureImageFactory.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FlushFinishTracker.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrContextFactory.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrTest.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: ManagedBackendTexture.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: MemoryCache.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: ProtectedUtils.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: ProxyUtils.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: TestContext.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: TestOps.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: YUVUtils.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: MockTestContext.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: TextBlobTools.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkTestCanvas.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: VkTestContext.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: VkTestHelper.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: VkTestMemoryAllocator.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: VkTestUtils.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: VkYcbcrSamplerHelper.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: AtlasTextOpTools.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrAtlasTools.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: ContextFactory.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GraphiteTestContext.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: ProtectedUtils_Graphite.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: UniqueKeyUtils.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GraphiteVulkanTestContext.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: DDLPromiseImageHelper.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: DDLTileHelper.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: DecodeUtils.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: EncodeUtils.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GpuToolUtils.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: MSKPPlayer.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: Resources.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: RuntimeBlendUtils.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkMetaData.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSharingProc.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: TestFontDataProvider.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: ToolUtils.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: UrlDataManager.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: DebugCanvas.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: DebugLayerManager.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: DrawCommand.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: JsonWriteBuffer.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FontToolUtils.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: RandomScalerContext.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: TestFontMgr.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: TestSVGTypeface.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: TestTypeface.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkTextBlobTrace.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: Timer.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SvgPathExtractor.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkAutoPixmapStorage.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkBitmap.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkBlendMode.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkBlendModeBlender.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkCanvas.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkCanvasPriv.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkCanvas_Raster.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkChecksum.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkColor.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkColorFilter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkColorSpace.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkColorSpaceXformSteps.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkConvertPixels.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkData.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkDevice.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkDrawable.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkFlattenable.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkFont.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkFontMgr.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkGeometry.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkGlyph.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkImageFilter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkImageFilterCache.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkImageFilterTypes.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkImageGenerator.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkImageInfo.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkKnownRuntimeEffects.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkLatticeIter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkLocalMatrixImageFilter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkM44.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkMD5.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkMallocPixelRef.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkMask.cpp:SkScalarCosSnapToZero(float)
SkMatrix.cpp:SkScalarCosSnapToZero(float)
Line
Count
Source
120
197k
static inline float SkScalarCosSnapToZero(SkScalar radians) {
121
197k
    float v = SkScalarCos(radians);
122
197k
    return SkScalarNearlyZero(v, SK_ScalarSinCosNearlyZero) ? 0.0f : v;
123
197k
}
Unexecuted instantiation: SkMatrixInvert.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkMipmap.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkMipmapHQDownSampler.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPaint.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPaintPriv.cpp:SkScalarCosSnapToZero(float)
SkPath.cpp:SkScalarCosSnapToZero(float)
Line
Count
Source
120
45.8k
static inline float SkScalarCosSnapToZero(SkScalar radians) {
121
45.8k
    float v = SkScalarCos(radians);
122
45.8k
    return SkScalarNearlyZero(v, SK_ScalarSinCosNearlyZero) ? 0.0f : v;
123
45.8k
}
Unexecuted instantiation: SkPathBuilder.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPathEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPathRef.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPathUtils.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPicture.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPictureData.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPictureFlat.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPicturePlayback.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPictureRecord.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPictureRecorder.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPixelRef.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPixmap.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPoint.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkRRect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkRSXform.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkRasterPipeline.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkReadBuffer.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkReadPixelsRec.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkRecord.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkRecordDraw.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkRecordOpts.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkRecordedDrawable.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkRecorder.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkRecords.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkRect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkRegion.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkRegion_path.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkResourceCache.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkRuntimeEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkScalerContext.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkScan_Path.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSpecialImage.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkStream.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkStrikeCache.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkStrikeSpec.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkString.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkStringUtils.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkStrokeRec.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSwizzler_opts.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSwizzler_opts_hsw.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSwizzler_opts_ssse3.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkTextBlob.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkTypeface.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkTypefaceCache.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkUnPreMultiply.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkVertices.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkWriteBuffer.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkWritePixelsRec.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkWriter32.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkYUVAInfo.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkYUVAPixmaps.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkYUVMath.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkImage.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkImage_Lazy.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkImage_Raster.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkImage_RasterFactories.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSurface.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSurface_Base.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSurface_Raster.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkTiledImageUtils.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkColorFilterShader.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkColorShader.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkImageShader.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkRuntimeShader.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkShader.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkShaderBase.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkWorkingColorSpaceShader.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GlyphRun.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SlugFromBuffer.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkOpBuilder.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkOpContour.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkOpEdgeBuilder.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkOpSegment.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkOpSpan.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPathOpsConic.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPathOpsCubic.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPathOpsCurve.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPathOpsDebug.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPathOpsLine.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPathOpsOp.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPathOpsQuad.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPathOpsRect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPathOpsSimplify.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPathOpsTypes.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPathOpsWinding.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPathWriter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkReduceOrder.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkCustomTypeface.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkJSON.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkJSONWriter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkMatrix22.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkMultiPictureDocument.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkNWayCanvas.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkOSPath.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPaintFilterCanvas.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkParse.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPatchUtils.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkShadowUtils.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkBlenders.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkLinearGradient.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkBlendModeColorFilter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkColorFilterBase.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkComposeColorFilter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkGaussianColorFilter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkMatrixColorFilter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkRuntimeColorFilter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkWorkingFormatColorFilter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkCodec.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkCodecImageGenerator.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkImageGenerator_FromEncoded.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPixmapUtils.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSampler.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkBmpCodec.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkBmpMaskCodec.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkBmpRLECodec.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkBmpStandardCodec.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkWbmpCodec.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLAnalysis.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLCompiler.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLErrorReporter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLInliner.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLMangler.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLModuleLoader.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLParser.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLCheckProgramStructure.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLFinalizationChecks.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLGetReturnComplexity.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLHasSideEffects.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLIsConstantExpression.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLProgramUsage.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLReturnsInputAlpha.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLSymbolTableStackBuilder.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLRasterPipelineBuilder.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLRasterPipelineCodeGenerator.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLBlock.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLExpressionStatement.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLFieldAccess.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLForStatement.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLFunctionCall.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLFunctionDeclaration.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLFunctionDefinition.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLIfStatement.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLIndexExpression.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLInterfaceBlock.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLProgram.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLSetting.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLStructDefinition.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLSwitchStatement.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLSymbol.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLSymbolTable.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLType.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLVarDeclarations.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLVariable.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLDebugTracePriv.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLAddConstToVarModifiers.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLEliminateDeadFunctions.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLEliminateDeadGlobalVariables.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLEliminateDeadLocalVariables.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLEliminateEmptyStatements.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLEliminateUnnecessaryBraces.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLEliminateUnreachableCode.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLFindAndDeclareBuiltinFunctions.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLFindAndDeclareBuiltinStructs.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLFindAndDeclareBuiltinVariables.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLHoistSwitchVarDeclarationsAtTopLevel.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLRenamePrivateSymbols.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLReplaceConstVarsWithLiterals.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkGlobalInitialization_default.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkOSFile_stdio.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkOSFile_posix.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkFontMgr_custom_empty.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrAuditTrail.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrBackendSurface.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrCanvas.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrCaps.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrColorInfo.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrColorSpaceXform.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrContext_Base.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrDeferredDisplayList.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrDeferredDisplayListRecorder.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrDirectContext.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrDirectContextPriv.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrDrawOpAtlas.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrDrawingManager.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrFragmentProcessor.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrGeometryProcessor.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrGpu.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrGpuBuffer.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrGpuResource.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrImageContext.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrImageInfo.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrOpFlushState.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrOpsRenderPass.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrPersistentCacheUtils.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrPipeline.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrProcessor.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrProcessorAnalysis.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrProcessorSet.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrProgramInfo.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrPromiseImageTexture.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrProxyProvider.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrRecordingContext.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrRecordingContextPriv.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrRenderTargetProxy.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrRenderTask.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrRenderTaskCluster.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrResourceAllocator.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrResourceCache.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrResourceProvider.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrRingBuffer.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrShaderCaps.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrStagingBufferManager.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrStencilSettings.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrSurface.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrSurfaceCharacterization.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrSurfaceProxy.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrSurfaceProxyView.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrTestUtils.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrTexture.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrTextureProxy.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrTextureRenderTargetProxy.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrTextureResolveRenderTask.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrThreadSafeCache.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrThreadSafePipelineBuilder.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrTransferFromRenderTask.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrWaitRenderTask.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrWritePixelsRenderTask.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrXferProcessor.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrYUVABackendTextures.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: PathRendererChain.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkGr.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SurfaceContext.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SurfaceDrawContext.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SurfaceFillContext.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrBicubicEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrBlendFragmentProcessor.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrCustomXfermode.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrDisableColorXP.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrMatrixEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrPorterDuffXferProcessor.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrSkSLFP.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrTextureEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrQuad.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrQuadUtils.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrShape.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrStyledShape.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrGLSLBlend.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrGLSLProgramBuilder.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrGLSLProgramDataManager.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrGLSLShaderBuilder.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrGLSLUniformHandler.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrGLSLVarying.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrGLSLVertexGeoBuilder.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrImageUtils.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrTextureGenerator.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkImage_Ganesh.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkImage_GaneshBase.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkImage_GaneshFactories.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkImage_GaneshYUVA.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkImage_LazyTexture.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkImage_RasterPinnable.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSpecialImage_Ganesh.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrMockGpu.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrMockTypes.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: AAConvexPathRenderer.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: AAHairLinePathRenderer.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: AALinearizingConvexPathRenderer.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: AtlasPathRenderer.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: AtlasRenderTask.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: AtlasTextOp.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: ClearOp.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: DashLinePathRenderer.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: DashOp.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: DefaultPathRenderer.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: DrawAtlasOp.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: DrawAtlasPathOp.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: DrawMeshOp.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: DrawableOp.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FillRRectOp.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FillRectOp.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrMeshDrawOp.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrOp.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrOvalOpFactory.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrSimpleMeshDrawOpHelper.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrSimpleMeshDrawOpHelperWithStencil.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: LatticeOp.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: OpsTask.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: PathStencilCoverOp.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: QuadPerEdgeAA.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: RegionOp.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: ShadowRRectOp.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SmallPathAtlasMgr.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SmallPathRenderer.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SmallPathShapeData.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SoftwarePathRenderer.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: StrokeRectOp.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: TessellationPathRenderer.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: TextureOp.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: TriangulatingPathRenderer.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSurface_Ganesh.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrPathTessellationShader.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrTessellationShader.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: PathTessellator.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrAtlasManager.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrVkBackendSurface.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrVkDirectContext.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrVkGpu.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrVkImage.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrVkImageView.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrVkMSAALoadManager.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrVkOpsRenderPass.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrVkPipeline.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrVkPipelineState.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrVkPipelineStateCache.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrVkPipelineStateDataManager.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrVkRenderPass.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrVkRenderTarget.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrVkResourceProvider.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrVkSampler.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrVkSamplerYcbcrConversion.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrVkSemaphore.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrVkTexture.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrVkTextureRenderTarget.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrVkUtil.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: BackendTexture.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: Context.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GlobalCache.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: ImageFactories.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: Image_Graphite.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: Image_YUVA_Graphite.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: QueueManager.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: Recorder.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: Recording.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: RendererProvider.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: Resource.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: ResourceCache.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: ResourceProvider.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: ScratchResourceManager.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SharedContext.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: Surface_Graphite.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: Texture.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: TextureInfo.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: TextureProxy.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: TextureUtils.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: UploadBufferManager.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: YUVABackendTextures.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: AnalyticBlurRenderStep.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: AnalyticRRectRenderStep.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: BitmapTextRenderStep.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: CoverBoundsRenderStep.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: CoverageMaskRenderStep.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GraphiteVertexFiller.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: MiddleOutFanRenderStep.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: PerEdgeAAQuadRenderStep.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SDFTextRenderStep.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: TessellateCurvesRenderStep.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: TessellateStrokesRenderStep.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: TessellateWedgesRenderStep.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: VerticesRenderStep.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: CopyTask.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SynchronizeToCpuTask.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: TaskList.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: UploadTask.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: TextAtlasManager.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: VulkanGraphiteUtils.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: VulkanQueueManager.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: VulkanSharedContext.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPngEncoderImpl.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkHeifCodec.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkJpegCodec.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkJpegDecoderMgr.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkJpegMetadataDecoderImpl.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkJpegSourceMgr.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkJpegUtility.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkJpegXmp.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkIcoCodec.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPngCodec.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkRawCodec.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkWebpCodec.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkWuffsCodec.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkXmp.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkFontHost_FreeType.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkFontHost_FreeType_common.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkFontMgr_custom.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: AtlasTypes.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: Blend.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: BlendFormula.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: BlurUtils.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: DataUtils.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: DitherUtils.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: PipelineUtils.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: ResourceKey.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkBackingFit.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: Swizzle.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FixedCountBufferUtils.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: Tessellation.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: DistanceFieldAdjustTable.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GlyphVector.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SDFTControl.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkChromeRemoteGlyphCache.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: Slug.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SlugImpl.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: StrikeCache.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SubRunContainer.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: TextBlob.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: TextBlobRedrawCoordinator.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: VertexFiller.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLPipelineStageCodeGenerator.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLSPIRVCodeGenerator.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: VulkanAMDMemoryAllocator.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: VulkanExtensions.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: VulkanInterface.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: VulkanUtilsPriv.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkJpegMultiPicture.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkJpegSegmentScan.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkAAClip.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkBBHFactory.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkBigPicture.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkBitmapCache.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkBitmapDevice.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkBitmapProcState_opts.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkBitmapProcState_opts_ssse3.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkBlitter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkBlitter_A8.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkBlitter_ARGB32.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkBlurMask.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkBlurMaskFilterImpl.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkCompressedDataUtils.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkCubicClipper.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkDescriptor.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkDistanceFieldGen.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkDocument.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkDraw.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkDrawBase.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkDrawShadowInfo.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkDraw_atlas.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkDraw_text.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkDraw_vertices.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkEdge.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkEdgeBuilder.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkEdgeClipper.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkFontDescriptor.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkFontMetricsPriv.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkFont_serial.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkGlyphRunPainter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkGraphics.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkLineClipper.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkMaskBlurFilter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkMaskCache.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkMaskFilter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkMaskGamma.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkMesh.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkMipmapAccessor.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkMipmapBuilder.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkOpts.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPath_serial.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPixmapDraw.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkRTree.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkRasterClip.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkRasterPipelineBlitter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkRuntimeBlender.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkScalar.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkScan.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkScan_AntiPath.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkScan_Antihair.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkScan_Hairline.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkStrike.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkStroke.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkStrokerPriv.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkTypeface_remote.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkVertState.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkYUVPlanesCache.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkImage_Base.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkImage_Picture.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPictureImageGenerator.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkRescaleAndReadPixels.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkBitmapProcShader.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkBlendShader.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkCoordClampShader.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkEmptyShader.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkLocalMatrixShader.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPerlinNoiseShaderImpl.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPictureShader.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkTransformShader.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkTriColorShader.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: StrikeForGPU.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkAddIntersections.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkDConicLineIntersection.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkDCubicLineIntersection.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkDLineIntersection.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkDQuadLineIntersection.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkIntersections.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkOpAngle.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkOpCoincidence.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkOpCubicHull.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPathOpsAsWinding.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPathOpsCommon.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPathOpsTSect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkDashPath.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkShaderUtils.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkShadowTessellator.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: Sk1DPathEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: Sk2DPathEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkCornerPathEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkDashPathEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkDiscretePathEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkEmbossMaskFilter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkShaderMaskFilterImpl.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkTrimPathEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkConicalGradient.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkGradientBaseShader.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkRadialGradient.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSweepGradient.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkColorSpaceXformColorFilter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkTableColorFilter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkBlendImageFilter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkBlurImageFilter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkColorFilterImageFilter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkComposeImageFilter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkCropImageFilter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkDisplacementMapImageFilter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkDropShadowImageFilter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkImageImageFilter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkLightingImageFilter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkMagnifierImageFilter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkMatrixConvolutionImageFilter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkMatrixTransformImageFilter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkMergeImageFilter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkMorphologyImageFilter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPictureImageFilter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkRuntimeImageFilter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkShaderImageFilter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkColorPalette.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkExif.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkMaskSwizzler.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSwizzler.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkTiffUtility.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkBmpBaseCodec.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkEncoder.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkICC.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLBuiltinTypes.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLIntrinsicList.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLUtil.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLCanExitWithoutReturningValue.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLGetLoopUnrollInfo.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLIsDynamicallyUniformExpression.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkEncodedInfo.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkParseEncodedOrigin.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkOTUtils.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: Device.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: Device_drawTexture.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrAttachment.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrBackendTextureImageGenerator.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrBackendUtils.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrBlurUtils.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrBufferAllocPool.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrBufferTransferRenderTask.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrBufferUpdateRenderTask.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrClientMappedBufferManager.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrContextThreadSafeProxy.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrCopyRenderTask.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrDDLContext.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrDDLTask.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrDataUtils.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrDefaultGeoProcFactory.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrDistanceFieldGenFromVector.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrDrawOpTest.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrDynamicAtlas.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrEagerVertexAllocator.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrFixedClip.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrFragmentProcessors.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrMeshDrawTarget.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrOnFlushResourceProvider.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrPaint.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrProcessorUnitTest.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrRenderTarget.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrSWMaskHelper.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrShaderVar.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrStyle.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrUniformDataManager.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrUtil.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrVertexChunkArray.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrYUVATextureProxies.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: PathRenderer.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrBezierEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrBitmapTextGeoProc.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrColorTableEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrCoverageSetOpXP.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrDistanceFieldGeoProc.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrModulateAtlasCoverageEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrPerlinNoise2Effect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrRRectEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrShadowGeoProc.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrYUVtoRGBEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrAAConvexTessellator.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrAATriangulator.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrPathUtils.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrTriangulator.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrGLSLFragmentShaderBuilder.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrGradientShader.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrMockCaps.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: AtlasInstancedHelper.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: PathInnerTriangulateOp.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: PathTessellateOp.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: StrokeTessellateOp.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrStrokeTessellationShader.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: StrokeTessellator.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrVkBuffer.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrVkCaps.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrVkCommandBuffer.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrVkCommandPool.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrVkContextThreadSafeProxy.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrVkDescriptorPool.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrVkDescriptorSetManager.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrVkFramebuffer.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrVkPipelineStateBuilder.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrVkUniformHandler.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrVkVaryingHandler.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: AtlasProvider.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: Buffer.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: BufferManager.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: Caps.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: ClientMappedBufferManager.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: CommandBuffer.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: ComputePathAtlas.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: ContextUtils.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: DrawAtlas.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: DrawContext.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: DrawList.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: DrawPass.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: DrawWriter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GpuWorkSubmission.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: Image_Base_Graphite.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: KeyContext.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: PaintParams.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: PaintParamsKey.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: PathAtlas.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: PipelineData.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: ProxyCache.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: RasterPathAtlas.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: RasterPathUtils.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: RenderPassDesc.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: Renderer.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: ShaderCodeDictionary.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SpecialImage_Graphite.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: UniformManager.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: DispatchGroup.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: AnalyticBlurMask.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: IntersectionTree.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: Shape.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: Transform.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: ClearBuffersTask.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: ComputeTask.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: DrawTask.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: RenderPassTask.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: VulkanBuffer.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: VulkanCaps.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: VulkanCommandBuffer.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: VulkanGraphiteTypes.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: VulkanRenderPass.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: VulkanResourceProvider.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: VulkanSampler.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: VulkanSamplerYcbcrConversion.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: VulkanTexture.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkOpts_hsw.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkOpts_skx.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkDOM.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkXMLParser.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: TiledTextureUtils.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SDFMaskFilter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkAnalyticEdge.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkBitmapProcState.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkBitmapProcState_matrixProcs.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkBlitMask_opts.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkBlitMask_opts_ssse3.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkBlitRow_D32.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkBlitRow_opts.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkBlitRow_opts_hsw.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkBlitter_Sprite.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkColorTable.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPathMeasure.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPoint3.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkScan_AAAPath.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSpriteBlitter_ARGB32.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPolyUtils.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkEmbossMask.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkOTTable_name.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: ClipStack.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrProgramDesc.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: StencilMaskHelper.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrConvexPolyEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrOvalEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrGradientBitmapCache.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrVkDescriptorSet.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: ClipStack_graphite.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: KeyHelpers.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: RuntimeEffectDictionary.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: VulkanDescriptorPool.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: VulkanDescriptorSet.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: VulkanFramebuffer.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: VulkanGraphicsPipeline.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: VulkanImageView.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkAlphaRuns.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkContourMeasure.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGDOM.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGEllipse.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGFe.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGFeBlend.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGFeColorMatrix.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGFeComponentTransfer.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGFeComposite.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGFeDisplacementMap.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGFeFlood.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGFeGaussianBlur.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGFeImage.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGFeLightSource.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGFeLighting.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGFeMerge.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGFeMorphology.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGFeOffset.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGFeTurbulence.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGFilter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGFilterContext.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGImage.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGLine.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGLinearGradient.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGMask.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGNode.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGPath.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGPattern.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGPoly.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGRadialGradient.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGRect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGRenderContext.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGSVG.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGShape.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGStop.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGText.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGTransformableNode.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGUse.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGAttribute.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGAttributeParser.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGCircle.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGClipPath.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGContainer.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGGradient.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkShaper.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkShaper_factory.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkShaper_primitive.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkShaper_skunicode.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkShaper_harfbuzz.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkUnicode_icu.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkUnicode_icu_bidi.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkBidiFactory_icu_full.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkParseColor.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkParsePath.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkUnicode.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FuzzTextBlobDeserialize.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FuzzGradients.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FuzzSVG.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FuzzCanvas.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FuzzNullCanvas.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkNullCanvas.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkColorMatrixFilter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkHighContrastFilter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPDFDocument.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPDFFont.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPDFFormXObject.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPDFMakeCIDGlyphWidthsArray.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPDFMakeToUnicodeCmap.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPDFMetadata.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPDFSubsetFont.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPDFTag.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPDFType1Font.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPDFTypes.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPDFUtils.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGCanvas.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSVGDevice.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkAnnotation.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkClipStack.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkClipStackDevice.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkDeflate.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPDFBitmap.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPDFDevice.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPDFGraphicStackState.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPDFGraphicState.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPDFResourceDict.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPDFShader.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkXMLWriter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkClipStackUtils.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkJpegEncoderImpl.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkClusterator.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkKeyedImage.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPDFGradientShader.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkJPEGWriteUtility.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FuzzImageFilterDeserialize.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FuzzJSON.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FuzzPrecompile.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FactoryFunctions.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: Precompile.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: PublicPrecompile.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FuzzEncoders.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FuzzWEBPEncoder.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkWebpEncoderImpl.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FuzzQuadRoots.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLCheckSymbolTableCorrectness.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrManagedResource.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GrMemoryPool.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FuzzCreateDDL.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FuzzAPICreateDDL.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FuzzSkParagraph.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FontCollection.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: ParagraphBuilderImpl.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: ParagraphCache.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: ParagraphImpl.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: ParagraphPainterImpl.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: ParagraphStyle.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: Run.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: TextLine.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: TextShadow.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: TextStyle.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: TextWrapper.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: TypefaceFontProvider.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: Decorations.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FontArguments.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: OneLineShaper.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FuzzRegionSetPath.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FuzzPathMeasure.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FuzzDDLThreading.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FuzzAPISVGCanvas.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FuzzRegionDeserialize.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FuzzPNGEncoder.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FuzzRasterN32Canvas.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FuzzRegionOp.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FuzzPathop.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkPathOpsTightBounds.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FuzzSkDescriptorDeserialize.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FuzzPolyUtils.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FuzzCOLRv1.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FuzzPathDeserialize.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FuzzSkottieJSON.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: Skottie.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkottieJson.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SlotManager.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: Animator.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: ScalarKeyframeAnimator.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: VectorKeyframeAnimator.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: TextLayer.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: Font.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: TextAdapter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: TextAnimator.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: TextShaper.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkResources.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: Composition.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: Layer.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: Path.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkottieProperty.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: KeyframeAnimator.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: ShapeKeyframeAnimator.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: TextKeyframeAnimator.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: Vec2KeyframeAnimator.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: Effects.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FillEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FractalNoiseEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GaussianBlurEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GlowStyles.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: GradientEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: HueSaturationEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: InvertEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: LevelsEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: LinearWipeEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: MotionBlurEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: MotionTileEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: RadialWipeEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: ShadowStyles.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SharpenEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: ShiftChannelsEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSLEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SphereEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: ThresholdEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: TintEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: TransformEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: TritoneEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: VenetianBlindsEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: AudioLayer.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FootageLayer.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: NullLayer.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: PrecompLayer.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SolidLayer.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: ShapeLayer.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: TrimPaths.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: RangeSelector.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: TextValue.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkAnimCodecPlayer.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: BlendModes.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: Camera.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: BlackAndWhiteEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: BrightnessContrastEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: BulgeEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: CCTonerEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: CornerPinEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: DirectionalBlur.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: DisplacementMapEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: DropShadowEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: Ellipse.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FillStroke.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: Gradient.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: MergePaths.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: OffsetPaths.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: Polystar.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: PuckerBloat.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: Rectangle.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: Repeater.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: RoundCorners.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkCubicMap.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSGClipEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSGColorFilter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSGDraw.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSGEffectNode.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSGGeometryEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSGGeometryNode.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSGGradient.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSGGroup.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSGImage.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSGMaskEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSGMerge.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSGNode.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSGOpacityEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSGPaint.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSGPath.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSGRect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSGRenderEffect.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSGRenderNode.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSGTransform.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSGInvalidationController.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FuzzAnimatedImage.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkAnimatedImage.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkAndroidCodec.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkAndroidCodecAdapter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSampledCodec.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FuzzIncrementalImage.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FuzzAPIImageFilter.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FuzzMockGPUCanvas.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FuzzDrawFunctions.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: SkSurface_Null.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FuzzTriangulation.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FuzzAndroidCodec.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FuzzJPEGEncoder.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FuzzSKP.cpp:SkScalarCosSnapToZero(float)
Unexecuted instantiation: FuzzCubicRoots.cpp:SkScalarCosSnapToZero(float)
124
125
/** Linearly interpolate between A and B, based on t.
126
    If t is 0, return A
127
    If t is 1, return B
128
    else interpolate.
129
    t must be [0..SK_Scalar1]
130
*/
131
193M
static inline SkScalar SkScalarInterp(SkScalar A, SkScalar B, SkScalar t) {
132
193M
    SkASSERT(t >= 0 && t <= SK_Scalar1);
133
193M
    return A + (B - A) * t;
134
193M
}
Unexecuted instantiation: FuzzImage.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: Fuzz.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FuzzCommon.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: CommandLineFlags.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: BackendSurfaceFactory.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: BackendTextureImageFactory.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FlushFinishTracker.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrContextFactory.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrTest.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: ManagedBackendTexture.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: MemoryCache.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: ProtectedUtils.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: ProxyUtils.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: TestContext.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: TestOps.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: YUVUtils.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: MockTestContext.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: TextBlobTools.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkTestCanvas.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: VkTestContext.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: VkTestHelper.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: VkTestMemoryAllocator.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: VkTestUtils.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: VkYcbcrSamplerHelper.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: AtlasTextOpTools.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrAtlasTools.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: ContextFactory.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GraphiteTestContext.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: ProtectedUtils_Graphite.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: UniqueKeyUtils.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GraphiteVulkanTestContext.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: DDLPromiseImageHelper.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: DDLTileHelper.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: DecodeUtils.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: EncodeUtils.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GpuToolUtils.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: MSKPPlayer.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: Resources.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: RuntimeBlendUtils.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkMetaData.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSharingProc.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: TestFontDataProvider.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: ToolUtils.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: UrlDataManager.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: DebugCanvas.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: DebugLayerManager.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: DrawCommand.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: JsonWriteBuffer.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FontToolUtils.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: RandomScalerContext.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: TestFontMgr.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: TestSVGTypeface.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: TestTypeface.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkTextBlobTrace.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: Timer.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SvgPathExtractor.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkAutoPixmapStorage.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkBitmap.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkBlendMode.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkBlendModeBlender.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkCanvas.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkCanvasPriv.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkCanvas_Raster.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkChecksum.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkColor.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkColorFilter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkColorSpace.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkColorSpaceXformSteps.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkConvertPixels.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkData.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkDevice.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkDrawable.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkFlattenable.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkFont.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkFontMgr.cpp:SkScalarInterp(float, float, float)
SkGeometry.cpp:SkScalarInterp(float, float, float)
Line
Count
Source
131
2.36M
static inline SkScalar SkScalarInterp(SkScalar A, SkScalar B, SkScalar t) {
132
2.36M
    SkASSERT(t >= 0 && t <= SK_Scalar1);
133
2.36M
    return A + (B - A) * t;
134
2.36M
}
Unexecuted instantiation: SkGlyph.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkImageFilter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkImageFilterCache.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkImageFilterTypes.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkImageGenerator.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkImageInfo.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkKnownRuntimeEffects.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkLatticeIter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkLocalMatrixImageFilter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkM44.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkMD5.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkMallocPixelRef.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkMask.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkMatrix.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkMatrixInvert.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkMipmap.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkMipmapHQDownSampler.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPaint.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPaintPriv.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPath.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPathBuilder.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPathEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPathRef.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPathUtils.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPicture.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPictureData.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPictureFlat.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPicturePlayback.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPictureRecord.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPictureRecorder.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPixelRef.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPixmap.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPoint.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkRRect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkRSXform.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkRasterPipeline.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkReadBuffer.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkReadPixelsRec.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkRecord.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkRecordDraw.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkRecordOpts.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkRecordedDrawable.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkRecorder.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkRecords.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkRect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkRegion.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkRegion_path.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkResourceCache.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkRuntimeEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkScalerContext.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkScan_Path.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSpecialImage.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkStream.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkStrikeCache.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkStrikeSpec.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkString.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkStringUtils.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkStrokeRec.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSwizzler_opts.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSwizzler_opts_hsw.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSwizzler_opts_ssse3.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkTextBlob.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkTypeface.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkTypefaceCache.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkUnPreMultiply.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkVertices.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkWriteBuffer.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkWritePixelsRec.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkWriter32.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkYUVAInfo.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkYUVAPixmaps.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkYUVMath.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkImage.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkImage_Lazy.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkImage_Raster.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkImage_RasterFactories.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSurface.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSurface_Base.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSurface_Raster.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkTiledImageUtils.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkColorFilterShader.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkColorShader.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkImageShader.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkRuntimeShader.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkShader.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkShaderBase.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkWorkingColorSpaceShader.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GlyphRun.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SlugFromBuffer.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkOpBuilder.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkOpContour.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkOpEdgeBuilder.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkOpSegment.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkOpSpan.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPathOpsConic.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPathOpsCubic.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPathOpsCurve.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPathOpsDebug.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPathOpsLine.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPathOpsOp.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPathOpsQuad.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPathOpsRect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPathOpsSimplify.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPathOpsTypes.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPathOpsWinding.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPathWriter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkReduceOrder.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkCustomTypeface.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkJSON.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkJSONWriter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkMatrix22.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkMultiPictureDocument.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkNWayCanvas.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkOSPath.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPaintFilterCanvas.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkParse.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPatchUtils.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkShadowUtils.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkBlenders.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkLinearGradient.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkBlendModeColorFilter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkColorFilterBase.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkComposeColorFilter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkGaussianColorFilter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkMatrixColorFilter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkRuntimeColorFilter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkWorkingFormatColorFilter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkCodec.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkCodecImageGenerator.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkImageGenerator_FromEncoded.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPixmapUtils.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSampler.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkBmpCodec.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkBmpMaskCodec.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkBmpRLECodec.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkBmpStandardCodec.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkWbmpCodec.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLAnalysis.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLCompiler.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLErrorReporter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLInliner.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLMangler.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLModuleLoader.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLParser.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLCheckProgramStructure.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLFinalizationChecks.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLGetReturnComplexity.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLHasSideEffects.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLIsConstantExpression.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLProgramUsage.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLReturnsInputAlpha.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLSymbolTableStackBuilder.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLRasterPipelineBuilder.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLRasterPipelineCodeGenerator.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLBlock.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLExpressionStatement.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLFieldAccess.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLForStatement.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLFunctionCall.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLFunctionDeclaration.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLFunctionDefinition.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLIfStatement.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLIndexExpression.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLInterfaceBlock.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLProgram.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLSetting.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLStructDefinition.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLSwitchStatement.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLSymbol.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLSymbolTable.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLType.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLVarDeclarations.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLVariable.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLDebugTracePriv.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLAddConstToVarModifiers.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLEliminateDeadFunctions.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLEliminateDeadGlobalVariables.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLEliminateDeadLocalVariables.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLEliminateEmptyStatements.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLEliminateUnnecessaryBraces.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLEliminateUnreachableCode.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLFindAndDeclareBuiltinFunctions.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLFindAndDeclareBuiltinStructs.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLFindAndDeclareBuiltinVariables.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLHoistSwitchVarDeclarationsAtTopLevel.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLRenamePrivateSymbols.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLReplaceConstVarsWithLiterals.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkGlobalInitialization_default.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkOSFile_stdio.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkOSFile_posix.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkFontMgr_custom_empty.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrAuditTrail.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrBackendSurface.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrCanvas.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrCaps.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrColorInfo.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrColorSpaceXform.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrContext_Base.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrDeferredDisplayList.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrDeferredDisplayListRecorder.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrDirectContext.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrDirectContextPriv.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrDrawOpAtlas.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrDrawingManager.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrFragmentProcessor.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrGeometryProcessor.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrGpu.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrGpuBuffer.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrGpuResource.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrImageContext.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrImageInfo.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrOpFlushState.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrOpsRenderPass.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrPersistentCacheUtils.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrPipeline.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrProcessor.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrProcessorAnalysis.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrProcessorSet.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrProgramInfo.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrPromiseImageTexture.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrProxyProvider.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrRecordingContext.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrRecordingContextPriv.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrRenderTargetProxy.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrRenderTask.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrRenderTaskCluster.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrResourceAllocator.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrResourceCache.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrResourceProvider.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrRingBuffer.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrShaderCaps.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrStagingBufferManager.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrStencilSettings.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrSurface.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrSurfaceCharacterization.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrSurfaceProxy.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrSurfaceProxyView.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrTestUtils.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrTexture.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrTextureProxy.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrTextureRenderTargetProxy.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrTextureResolveRenderTask.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrThreadSafeCache.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrThreadSafePipelineBuilder.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrTransferFromRenderTask.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrWaitRenderTask.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrWritePixelsRenderTask.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrXferProcessor.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrYUVABackendTextures.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: PathRendererChain.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkGr.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SurfaceContext.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SurfaceDrawContext.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SurfaceFillContext.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrBicubicEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrBlendFragmentProcessor.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrCustomXfermode.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrDisableColorXP.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrMatrixEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrPorterDuffXferProcessor.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrSkSLFP.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrTextureEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrQuad.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrQuadUtils.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrShape.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrStyledShape.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrGLSLBlend.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrGLSLProgramBuilder.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrGLSLProgramDataManager.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrGLSLShaderBuilder.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrGLSLUniformHandler.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrGLSLVarying.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrGLSLVertexGeoBuilder.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrImageUtils.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrTextureGenerator.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkImage_Ganesh.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkImage_GaneshBase.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkImage_GaneshFactories.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkImage_GaneshYUVA.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkImage_LazyTexture.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkImage_RasterPinnable.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSpecialImage_Ganesh.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrMockGpu.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrMockTypes.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: AAConvexPathRenderer.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: AAHairLinePathRenderer.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: AALinearizingConvexPathRenderer.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: AtlasPathRenderer.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: AtlasRenderTask.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: AtlasTextOp.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: ClearOp.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: DashLinePathRenderer.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: DashOp.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: DefaultPathRenderer.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: DrawAtlasOp.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: DrawAtlasPathOp.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: DrawMeshOp.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: DrawableOp.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FillRRectOp.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FillRectOp.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrMeshDrawOp.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrOp.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrOvalOpFactory.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrSimpleMeshDrawOpHelper.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrSimpleMeshDrawOpHelperWithStencil.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: LatticeOp.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: OpsTask.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: PathStencilCoverOp.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: QuadPerEdgeAA.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: RegionOp.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: ShadowRRectOp.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SmallPathAtlasMgr.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SmallPathRenderer.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SmallPathShapeData.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SoftwarePathRenderer.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: StrokeRectOp.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: TessellationPathRenderer.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: TextureOp.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: TriangulatingPathRenderer.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSurface_Ganesh.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrPathTessellationShader.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrTessellationShader.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: PathTessellator.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrAtlasManager.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrVkBackendSurface.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrVkDirectContext.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrVkGpu.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrVkImage.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrVkImageView.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrVkMSAALoadManager.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrVkOpsRenderPass.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrVkPipeline.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrVkPipelineState.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrVkPipelineStateCache.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrVkPipelineStateDataManager.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrVkRenderPass.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrVkRenderTarget.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrVkResourceProvider.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrVkSampler.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrVkSamplerYcbcrConversion.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrVkSemaphore.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrVkTexture.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrVkTextureRenderTarget.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrVkUtil.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: BackendTexture.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: Context.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GlobalCache.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: ImageFactories.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: Image_Graphite.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: Image_YUVA_Graphite.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: QueueManager.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: Recorder.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: Recording.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: RendererProvider.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: Resource.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: ResourceCache.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: ResourceProvider.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: ScratchResourceManager.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SharedContext.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: Surface_Graphite.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: Texture.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: TextureInfo.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: TextureProxy.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: TextureUtils.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: UploadBufferManager.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: YUVABackendTextures.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: AnalyticBlurRenderStep.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: AnalyticRRectRenderStep.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: BitmapTextRenderStep.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: CoverBoundsRenderStep.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: CoverageMaskRenderStep.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GraphiteVertexFiller.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: MiddleOutFanRenderStep.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: PerEdgeAAQuadRenderStep.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SDFTextRenderStep.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: TessellateCurvesRenderStep.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: TessellateStrokesRenderStep.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: TessellateWedgesRenderStep.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: VerticesRenderStep.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: CopyTask.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SynchronizeToCpuTask.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: TaskList.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: UploadTask.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: TextAtlasManager.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: VulkanGraphiteUtils.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: VulkanQueueManager.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: VulkanSharedContext.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPngEncoderImpl.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkHeifCodec.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkJpegCodec.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkJpegDecoderMgr.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkJpegMetadataDecoderImpl.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkJpegSourceMgr.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkJpegUtility.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkJpegXmp.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkIcoCodec.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPngCodec.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkRawCodec.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkWebpCodec.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkWuffsCodec.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkXmp.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkFontHost_FreeType.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkFontHost_FreeType_common.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkFontMgr_custom.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: AtlasTypes.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: Blend.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: BlendFormula.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: BlurUtils.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: DataUtils.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: DitherUtils.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: PipelineUtils.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: ResourceKey.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkBackingFit.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: Swizzle.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FixedCountBufferUtils.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: Tessellation.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: DistanceFieldAdjustTable.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GlyphVector.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SDFTControl.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkChromeRemoteGlyphCache.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: Slug.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SlugImpl.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: StrikeCache.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SubRunContainer.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: TextBlob.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: TextBlobRedrawCoordinator.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: VertexFiller.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLPipelineStageCodeGenerator.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLSPIRVCodeGenerator.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: VulkanAMDMemoryAllocator.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: VulkanExtensions.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: VulkanInterface.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: VulkanUtilsPriv.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkJpegMultiPicture.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkJpegSegmentScan.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkAAClip.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkBBHFactory.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkBigPicture.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkBitmapCache.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkBitmapDevice.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkBitmapProcState_opts.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkBitmapProcState_opts_ssse3.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkBlitter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkBlitter_A8.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkBlitter_ARGB32.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkBlurMask.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkBlurMaskFilterImpl.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkCompressedDataUtils.cpp:SkScalarInterp(float, float, float)
SkCubicClipper.cpp:SkScalarInterp(float, float, float)
Line
Count
Source
131
768
static inline SkScalar SkScalarInterp(SkScalar A, SkScalar B, SkScalar t) {
132
768
    SkASSERT(t >= 0 && t <= SK_Scalar1);
133
768
    return A + (B - A) * t;
134
768
}
Unexecuted instantiation: SkDescriptor.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkDistanceFieldGen.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkDocument.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkDraw.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkDrawBase.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkDrawShadowInfo.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkDraw_atlas.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkDraw_text.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkDraw_vertices.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkEdge.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkEdgeBuilder.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkEdgeClipper.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkFontDescriptor.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkFontMetricsPriv.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkFont_serial.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkGlyphRunPainter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkGraphics.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkLineClipper.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkMaskBlurFilter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkMaskCache.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkMaskFilter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkMaskGamma.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkMesh.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkMipmapAccessor.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkMipmapBuilder.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkOpts.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPath_serial.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPixmapDraw.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkRTree.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkRasterClip.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkRasterPipelineBlitter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkRuntimeBlender.cpp:SkScalarInterp(float, float, float)
SkScalar.cpp:SkScalarInterp(float, float, float)
Line
Count
Source
131
18.7k
static inline SkScalar SkScalarInterp(SkScalar A, SkScalar B, SkScalar t) {
132
18.7k
    SkASSERT(t >= 0 && t <= SK_Scalar1);
133
18.7k
    return A + (B - A) * t;
134
18.7k
}
Unexecuted instantiation: SkScan.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkScan_AntiPath.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkScan_Antihair.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkScan_Hairline.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkStrike.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkStroke.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkStrokerPriv.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkTypeface_remote.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkVertState.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkYUVPlanesCache.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkImage_Base.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkImage_Picture.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPictureImageGenerator.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkRescaleAndReadPixels.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkBitmapProcShader.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkBlendShader.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkCoordClampShader.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkEmptyShader.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkLocalMatrixShader.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPerlinNoiseShaderImpl.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPictureShader.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkTransformShader.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkTriColorShader.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: StrikeForGPU.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkAddIntersections.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkDConicLineIntersection.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkDCubicLineIntersection.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkDLineIntersection.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkDQuadLineIntersection.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkIntersections.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkOpAngle.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkOpCoincidence.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkOpCubicHull.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPathOpsAsWinding.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPathOpsCommon.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPathOpsTSect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkDashPath.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkShaderUtils.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkShadowTessellator.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: Sk1DPathEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: Sk2DPathEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkCornerPathEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkDashPathEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkDiscretePathEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkEmbossMaskFilter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkShaderMaskFilterImpl.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkTrimPathEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkConicalGradient.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkGradientBaseShader.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkRadialGradient.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSweepGradient.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkColorSpaceXformColorFilter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkTableColorFilter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkBlendImageFilter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkBlurImageFilter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkColorFilterImageFilter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkComposeImageFilter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkCropImageFilter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkDisplacementMapImageFilter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkDropShadowImageFilter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkImageImageFilter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkLightingImageFilter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkMagnifierImageFilter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkMatrixConvolutionImageFilter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkMatrixTransformImageFilter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkMergeImageFilter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkMorphologyImageFilter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPictureImageFilter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkRuntimeImageFilter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkShaderImageFilter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkColorPalette.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkExif.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkMaskSwizzler.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSwizzler.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkTiffUtility.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkBmpBaseCodec.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkEncoder.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkICC.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLBuiltinTypes.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLIntrinsicList.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLUtil.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLCanExitWithoutReturningValue.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLGetLoopUnrollInfo.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLIsDynamicallyUniformExpression.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkEncodedInfo.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkParseEncodedOrigin.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkOTUtils.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: Device.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: Device_drawTexture.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrAttachment.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrBackendTextureImageGenerator.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrBackendUtils.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrBlurUtils.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrBufferAllocPool.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrBufferTransferRenderTask.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrBufferUpdateRenderTask.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrClientMappedBufferManager.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrContextThreadSafeProxy.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrCopyRenderTask.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrDDLContext.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrDDLTask.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrDataUtils.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrDefaultGeoProcFactory.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrDistanceFieldGenFromVector.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrDrawOpTest.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrDynamicAtlas.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrEagerVertexAllocator.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrFixedClip.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrFragmentProcessors.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrMeshDrawTarget.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrOnFlushResourceProvider.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrPaint.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrProcessorUnitTest.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrRenderTarget.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrSWMaskHelper.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrShaderVar.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrStyle.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrUniformDataManager.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrUtil.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrVertexChunkArray.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrYUVATextureProxies.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: PathRenderer.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrBezierEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrBitmapTextGeoProc.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrColorTableEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrCoverageSetOpXP.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrDistanceFieldGeoProc.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrModulateAtlasCoverageEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrPerlinNoise2Effect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrRRectEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrShadowGeoProc.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrYUVtoRGBEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrAAConvexTessellator.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrAATriangulator.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrPathUtils.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrTriangulator.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrGLSLFragmentShaderBuilder.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrGradientShader.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrMockCaps.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: AtlasInstancedHelper.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: PathInnerTriangulateOp.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: PathTessellateOp.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: StrokeTessellateOp.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrStrokeTessellationShader.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: StrokeTessellator.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrVkBuffer.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrVkCaps.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrVkCommandBuffer.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrVkCommandPool.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrVkContextThreadSafeProxy.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrVkDescriptorPool.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrVkDescriptorSetManager.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrVkFramebuffer.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrVkPipelineStateBuilder.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrVkUniformHandler.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrVkVaryingHandler.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: AtlasProvider.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: Buffer.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: BufferManager.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: Caps.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: ClientMappedBufferManager.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: CommandBuffer.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: ComputePathAtlas.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: ContextUtils.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: DrawAtlas.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: DrawContext.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: DrawList.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: DrawPass.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: DrawWriter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GpuWorkSubmission.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: Image_Base_Graphite.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: KeyContext.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: PaintParams.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: PaintParamsKey.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: PathAtlas.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: PipelineData.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: ProxyCache.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: RasterPathAtlas.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: RasterPathUtils.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: RenderPassDesc.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: Renderer.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: ShaderCodeDictionary.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SpecialImage_Graphite.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: UniformManager.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: DispatchGroup.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: AnalyticBlurMask.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: IntersectionTree.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: Shape.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: Transform.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: ClearBuffersTask.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: ComputeTask.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: DrawTask.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: RenderPassTask.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: VulkanBuffer.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: VulkanCaps.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: VulkanCommandBuffer.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: VulkanGraphiteTypes.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: VulkanRenderPass.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: VulkanResourceProvider.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: VulkanSampler.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: VulkanSamplerYcbcrConversion.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: VulkanTexture.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkOpts_hsw.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkOpts_skx.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkDOM.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkXMLParser.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: TiledTextureUtils.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SDFMaskFilter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkAnalyticEdge.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkBitmapProcState.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkBitmapProcState_matrixProcs.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkBlitMask_opts.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkBlitMask_opts_ssse3.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkBlitRow_D32.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkBlitRow_opts.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkBlitRow_opts_hsw.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkBlitter_Sprite.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkColorTable.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPathMeasure.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPoint3.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkScan_AAAPath.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSpriteBlitter_ARGB32.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPolyUtils.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkEmbossMask.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkOTTable_name.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: ClipStack.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrProgramDesc.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: StencilMaskHelper.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrConvexPolyEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrOvalEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrGradientBitmapCache.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrVkDescriptorSet.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: ClipStack_graphite.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: KeyHelpers.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: RuntimeEffectDictionary.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: VulkanDescriptorPool.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: VulkanDescriptorSet.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: VulkanFramebuffer.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: VulkanGraphicsPipeline.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: VulkanImageView.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkAlphaRuns.cpp:SkScalarInterp(float, float, float)
SkContourMeasure.cpp:SkScalarInterp(float, float, float)
Line
Count
Source
131
190M
static inline SkScalar SkScalarInterp(SkScalar A, SkScalar B, SkScalar t) {
132
190M
    SkASSERT(t >= 0 && t <= SK_Scalar1);
133
190M
    return A + (B - A) * t;
134
190M
}
Unexecuted instantiation: SkSVGDOM.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGEllipse.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGFe.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGFeBlend.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGFeColorMatrix.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGFeComponentTransfer.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGFeComposite.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGFeDisplacementMap.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGFeFlood.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGFeGaussianBlur.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGFeImage.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGFeLightSource.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGFeLighting.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGFeMerge.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGFeMorphology.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGFeOffset.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGFeTurbulence.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGFilter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGFilterContext.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGImage.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGLine.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGLinearGradient.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGMask.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGNode.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGPath.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGPattern.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGPoly.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGRadialGradient.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGRect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGRenderContext.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGSVG.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGShape.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGStop.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGText.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGTransformableNode.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGUse.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGAttribute.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGAttributeParser.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGCircle.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGClipPath.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGContainer.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGGradient.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkShaper.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkShaper_factory.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkShaper_primitive.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkShaper_skunicode.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkShaper_harfbuzz.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkUnicode_icu.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkUnicode_icu_bidi.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkBidiFactory_icu_full.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkParseColor.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkParsePath.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkUnicode.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FuzzTextBlobDeserialize.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FuzzGradients.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FuzzSVG.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FuzzCanvas.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FuzzNullCanvas.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkNullCanvas.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkColorMatrixFilter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkHighContrastFilter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPDFDocument.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPDFFont.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPDFFormXObject.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPDFMakeCIDGlyphWidthsArray.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPDFMakeToUnicodeCmap.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPDFMetadata.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPDFSubsetFont.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPDFTag.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPDFType1Font.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPDFTypes.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPDFUtils.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGCanvas.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSVGDevice.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkAnnotation.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkClipStack.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkClipStackDevice.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkDeflate.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPDFBitmap.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPDFDevice.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPDFGraphicStackState.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPDFGraphicState.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPDFResourceDict.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPDFShader.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkXMLWriter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkClipStackUtils.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkJpegEncoderImpl.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkClusterator.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkKeyedImage.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPDFGradientShader.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkJPEGWriteUtility.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FuzzImageFilterDeserialize.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FuzzJSON.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FuzzPrecompile.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FactoryFunctions.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: Precompile.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: PublicPrecompile.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FuzzEncoders.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FuzzWEBPEncoder.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkWebpEncoderImpl.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FuzzQuadRoots.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLCheckSymbolTableCorrectness.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrManagedResource.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GrMemoryPool.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FuzzCreateDDL.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FuzzAPICreateDDL.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FuzzSkParagraph.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FontCollection.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: ParagraphBuilderImpl.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: ParagraphCache.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: ParagraphImpl.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: ParagraphPainterImpl.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: ParagraphStyle.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: Run.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: TextLine.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: TextShadow.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: TextStyle.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: TextWrapper.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: TypefaceFontProvider.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: Decorations.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FontArguments.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: OneLineShaper.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FuzzRegionSetPath.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FuzzPathMeasure.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FuzzDDLThreading.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FuzzAPISVGCanvas.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FuzzRegionDeserialize.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FuzzPNGEncoder.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FuzzRasterN32Canvas.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FuzzRegionOp.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FuzzPathop.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkPathOpsTightBounds.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FuzzSkDescriptorDeserialize.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FuzzPolyUtils.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FuzzCOLRv1.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FuzzPathDeserialize.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FuzzSkottieJSON.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: Skottie.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkottieJson.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SlotManager.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: Animator.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: ScalarKeyframeAnimator.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: VectorKeyframeAnimator.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: TextLayer.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: Font.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: TextAdapter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: TextAnimator.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: TextShaper.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkResources.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: Composition.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: Layer.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: Path.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkottieProperty.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: KeyframeAnimator.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: ShapeKeyframeAnimator.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: TextKeyframeAnimator.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: Vec2KeyframeAnimator.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: Effects.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FillEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FractalNoiseEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GaussianBlurEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GlowStyles.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: GradientEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: HueSaturationEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: InvertEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: LevelsEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: LinearWipeEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: MotionBlurEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: MotionTileEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: RadialWipeEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: ShadowStyles.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SharpenEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: ShiftChannelsEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSLEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SphereEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: ThresholdEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: TintEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: TransformEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: TritoneEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: VenetianBlindsEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: AudioLayer.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FootageLayer.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: NullLayer.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: PrecompLayer.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SolidLayer.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: ShapeLayer.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: TrimPaths.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: RangeSelector.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: TextValue.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkAnimCodecPlayer.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: BlendModes.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: Camera.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: BlackAndWhiteEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: BrightnessContrastEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: BulgeEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: CCTonerEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: CornerPinEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: DirectionalBlur.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: DisplacementMapEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: DropShadowEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: Ellipse.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FillStroke.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: Gradient.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: MergePaths.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: OffsetPaths.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: Polystar.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: PuckerBloat.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: Rectangle.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: Repeater.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: RoundCorners.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkCubicMap.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSGClipEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSGColorFilter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSGDraw.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSGEffectNode.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSGGeometryEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSGGeometryNode.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSGGradient.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSGGroup.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSGImage.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSGMaskEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSGMerge.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSGNode.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSGOpacityEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSGPaint.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSGPath.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSGRect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSGRenderEffect.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSGRenderNode.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSGTransform.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSGInvalidationController.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FuzzAnimatedImage.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkAnimatedImage.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkAndroidCodec.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkAndroidCodecAdapter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSampledCodec.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FuzzIncrementalImage.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FuzzAPIImageFilter.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FuzzMockGPUCanvas.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FuzzDrawFunctions.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: SkSurface_Null.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FuzzTriangulation.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FuzzAndroidCodec.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FuzzJPEGEncoder.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FuzzSKP.cpp:SkScalarInterp(float, float, float)
Unexecuted instantiation: FuzzCubicRoots.cpp:SkScalarInterp(float, float, float)
135
136
/** Interpolate along the function described by (keys[length], values[length])
137
    for the passed searchKey. SearchKeys outside the range keys[0]-keys[Length]
138
    clamp to the min or max value. This function assumes the number of pairs
139
    (length) will be small and a linear search is used.
140
141
    Repeated keys are allowed for discontinuous functions (so long as keys is
142
    monotonically increasing). If key is the value of a repeated scalar in
143
    keys the first one will be used.
144
*/
145
SkScalar SkScalarInterpFunc(SkScalar searchKey, const SkScalar keys[],
146
                            const SkScalar values[], int length);
147
148
/*
149
 *  Helper to compare an array of scalars.
150
 */
151
121k
static inline bool SkScalarsEqual(const SkScalar a[], const SkScalar b[], int n) {
152
121k
    SkASSERT(n >= 0);
153
1.09M
    for (int i = 0; i < n; ++i) {
154
970k
        if (a[i] != b[i]) {
155
30
            return false;
156
30
        }
157
970k
    }
158
121k
    return true;
159
121k
}
Unexecuted instantiation: FuzzImage.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: Fuzz.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FuzzCommon.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: CommandLineFlags.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: BackendSurfaceFactory.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: BackendTextureImageFactory.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FlushFinishTracker.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrContextFactory.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrTest.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: ManagedBackendTexture.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: MemoryCache.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: ProtectedUtils.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: ProxyUtils.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: TestContext.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: TestOps.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: YUVUtils.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: MockTestContext.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: TextBlobTools.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkTestCanvas.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: VkTestContext.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: VkTestHelper.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: VkTestMemoryAllocator.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: VkTestUtils.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: VkYcbcrSamplerHelper.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: AtlasTextOpTools.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrAtlasTools.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: ContextFactory.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GraphiteTestContext.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: ProtectedUtils_Graphite.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: UniqueKeyUtils.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GraphiteVulkanTestContext.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: DDLPromiseImageHelper.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: DDLTileHelper.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: DecodeUtils.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: EncodeUtils.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GpuToolUtils.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: MSKPPlayer.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: Resources.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: RuntimeBlendUtils.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkMetaData.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSharingProc.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: TestFontDataProvider.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: ToolUtils.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: UrlDataManager.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: DebugCanvas.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: DebugLayerManager.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: DrawCommand.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: JsonWriteBuffer.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FontToolUtils.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: RandomScalerContext.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: TestFontMgr.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: TestSVGTypeface.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: TestTypeface.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkTextBlobTrace.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: Timer.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SvgPathExtractor.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkAutoPixmapStorage.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkBitmap.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkBlendMode.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkBlendModeBlender.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkCanvas.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkCanvasPriv.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkCanvas_Raster.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkChecksum.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkColor.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkColorFilter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkColorSpace.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkColorSpaceXformSteps.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkConvertPixels.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkData.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkDevice.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkDrawable.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkFlattenable.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkFont.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkFontMgr.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkGeometry.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkGlyph.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkImageFilter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkImageFilterCache.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkImageFilterTypes.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkImageGenerator.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkImageInfo.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkKnownRuntimeEffects.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkLatticeIter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkLocalMatrixImageFilter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkM44.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkMD5.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkMallocPixelRef.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkMask.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkMatrix.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkMatrixInvert.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkMipmap.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkMipmapHQDownSampler.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPaint.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPaintPriv.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPath.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPathBuilder.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPathEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPathRef.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPathUtils.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPicture.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPictureData.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPictureFlat.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPicturePlayback.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPictureRecord.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPictureRecorder.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPixelRef.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPixmap.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPoint.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkRRect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkRSXform.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkRasterPipeline.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkReadBuffer.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkReadPixelsRec.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkRecord.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkRecordDraw.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkRecordOpts.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkRecordedDrawable.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkRecorder.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkRecords.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkRect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkRegion.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkRegion_path.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkResourceCache.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkRuntimeEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkScalerContext.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkScan_Path.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSpecialImage.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkStream.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkStrikeCache.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkStrikeSpec.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkString.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkStringUtils.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkStrokeRec.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSwizzler_opts.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSwizzler_opts_hsw.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSwizzler_opts_ssse3.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkTextBlob.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkTypeface.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkTypefaceCache.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkUnPreMultiply.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkVertices.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkWriteBuffer.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkWritePixelsRec.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkWriter32.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkYUVAInfo.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkYUVAPixmaps.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkYUVMath.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkImage.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkImage_Lazy.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkImage_Raster.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkImage_RasterFactories.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSurface.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSurface_Base.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSurface_Raster.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkTiledImageUtils.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkColorFilterShader.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkColorShader.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkImageShader.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkRuntimeShader.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkShader.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkShaderBase.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkWorkingColorSpaceShader.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GlyphRun.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SlugFromBuffer.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkOpBuilder.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkOpContour.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkOpEdgeBuilder.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkOpSegment.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkOpSpan.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPathOpsConic.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPathOpsCubic.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPathOpsCurve.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPathOpsDebug.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPathOpsLine.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPathOpsOp.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPathOpsQuad.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPathOpsRect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPathOpsSimplify.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPathOpsTypes.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPathOpsWinding.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPathWriter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkReduceOrder.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkCustomTypeface.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkJSON.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkJSONWriter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkMatrix22.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkMultiPictureDocument.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkNWayCanvas.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkOSPath.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPaintFilterCanvas.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkParse.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPatchUtils.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkShadowUtils.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkBlenders.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkLinearGradient.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkBlendModeColorFilter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkColorFilterBase.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkComposeColorFilter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkGaussianColorFilter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkMatrixColorFilter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkRuntimeColorFilter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkWorkingFormatColorFilter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkCodec.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkCodecImageGenerator.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkImageGenerator_FromEncoded.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPixmapUtils.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSampler.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkBmpCodec.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkBmpMaskCodec.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkBmpRLECodec.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkBmpStandardCodec.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkWbmpCodec.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLAnalysis.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLCompiler.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLErrorReporter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLInliner.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLMangler.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLModuleLoader.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLParser.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLCheckProgramStructure.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLFinalizationChecks.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLGetReturnComplexity.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLHasSideEffects.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLIsConstantExpression.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLProgramUsage.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLReturnsInputAlpha.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLSymbolTableStackBuilder.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLRasterPipelineBuilder.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLRasterPipelineCodeGenerator.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLBlock.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLExpressionStatement.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLFieldAccess.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLForStatement.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLFunctionCall.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLFunctionDeclaration.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLFunctionDefinition.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLIfStatement.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLIndexExpression.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLInterfaceBlock.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLProgram.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLSetting.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLStructDefinition.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLSwitchStatement.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLSymbol.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLSymbolTable.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLType.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLVarDeclarations.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLVariable.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLDebugTracePriv.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLAddConstToVarModifiers.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLEliminateDeadFunctions.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLEliminateDeadGlobalVariables.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLEliminateDeadLocalVariables.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLEliminateEmptyStatements.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLEliminateUnnecessaryBraces.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLEliminateUnreachableCode.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLFindAndDeclareBuiltinFunctions.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLFindAndDeclareBuiltinStructs.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLFindAndDeclareBuiltinVariables.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLHoistSwitchVarDeclarationsAtTopLevel.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLRenamePrivateSymbols.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLReplaceConstVarsWithLiterals.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkGlobalInitialization_default.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkOSFile_stdio.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkOSFile_posix.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkFontMgr_custom_empty.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrAuditTrail.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrBackendSurface.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrCanvas.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrCaps.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrColorInfo.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrColorSpaceXform.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrContext_Base.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrDeferredDisplayList.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrDeferredDisplayListRecorder.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrDirectContext.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrDirectContextPriv.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrDrawOpAtlas.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrDrawingManager.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrFragmentProcessor.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrGeometryProcessor.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrGpu.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrGpuBuffer.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrGpuResource.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrImageContext.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrImageInfo.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrOpFlushState.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrOpsRenderPass.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrPersistentCacheUtils.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrPipeline.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrProcessor.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrProcessorAnalysis.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrProcessorSet.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrProgramInfo.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrPromiseImageTexture.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrProxyProvider.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrRecordingContext.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrRecordingContextPriv.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrRenderTargetProxy.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrRenderTask.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrRenderTaskCluster.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrResourceAllocator.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrResourceCache.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrResourceProvider.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrRingBuffer.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrShaderCaps.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrStagingBufferManager.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrStencilSettings.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrSurface.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrSurfaceCharacterization.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrSurfaceProxy.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrSurfaceProxyView.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrTestUtils.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrTexture.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrTextureProxy.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrTextureRenderTargetProxy.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrTextureResolveRenderTask.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrThreadSafeCache.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrThreadSafePipelineBuilder.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrTransferFromRenderTask.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrWaitRenderTask.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrWritePixelsRenderTask.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrXferProcessor.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrYUVABackendTextures.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: PathRendererChain.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkGr.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SurfaceContext.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SurfaceDrawContext.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SurfaceFillContext.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrBicubicEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrBlendFragmentProcessor.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrCustomXfermode.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrDisableColorXP.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrMatrixEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrPorterDuffXferProcessor.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrSkSLFP.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrTextureEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrQuad.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrQuadUtils.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrShape.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrStyledShape.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrGLSLBlend.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrGLSLProgramBuilder.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrGLSLProgramDataManager.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrGLSLShaderBuilder.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrGLSLUniformHandler.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrGLSLVarying.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrGLSLVertexGeoBuilder.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrImageUtils.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrTextureGenerator.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkImage_Ganesh.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkImage_GaneshBase.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkImage_GaneshFactories.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkImage_GaneshYUVA.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkImage_LazyTexture.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkImage_RasterPinnable.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSpecialImage_Ganesh.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrMockGpu.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrMockTypes.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: AAConvexPathRenderer.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: AAHairLinePathRenderer.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: AALinearizingConvexPathRenderer.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: AtlasPathRenderer.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: AtlasRenderTask.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: AtlasTextOp.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: ClearOp.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: DashLinePathRenderer.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: DashOp.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: DefaultPathRenderer.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: DrawAtlasOp.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: DrawAtlasPathOp.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: DrawMeshOp.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: DrawableOp.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FillRRectOp.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FillRectOp.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrMeshDrawOp.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrOp.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrOvalOpFactory.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrSimpleMeshDrawOpHelper.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrSimpleMeshDrawOpHelperWithStencil.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: LatticeOp.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: OpsTask.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: PathStencilCoverOp.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: QuadPerEdgeAA.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: RegionOp.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: ShadowRRectOp.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SmallPathAtlasMgr.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SmallPathRenderer.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SmallPathShapeData.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SoftwarePathRenderer.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: StrokeRectOp.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: TessellationPathRenderer.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: TextureOp.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: TriangulatingPathRenderer.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSurface_Ganesh.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrPathTessellationShader.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrTessellationShader.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: PathTessellator.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrAtlasManager.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrVkBackendSurface.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrVkDirectContext.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrVkGpu.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrVkImage.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrVkImageView.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrVkMSAALoadManager.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrVkOpsRenderPass.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrVkPipeline.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrVkPipelineState.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrVkPipelineStateCache.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrVkPipelineStateDataManager.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrVkRenderPass.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrVkRenderTarget.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrVkResourceProvider.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrVkSampler.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrVkSamplerYcbcrConversion.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrVkSemaphore.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrVkTexture.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrVkTextureRenderTarget.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrVkUtil.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: BackendTexture.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: Context.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GlobalCache.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: ImageFactories.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: Image_Graphite.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: Image_YUVA_Graphite.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: QueueManager.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: Recorder.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: Recording.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: RendererProvider.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: Resource.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: ResourceCache.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: ResourceProvider.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: ScratchResourceManager.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SharedContext.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: Surface_Graphite.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: Texture.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: TextureInfo.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: TextureProxy.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: TextureUtils.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: UploadBufferManager.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: YUVABackendTextures.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: AnalyticBlurRenderStep.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: AnalyticRRectRenderStep.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: BitmapTextRenderStep.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: CoverBoundsRenderStep.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: CoverageMaskRenderStep.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GraphiteVertexFiller.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: MiddleOutFanRenderStep.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: PerEdgeAAQuadRenderStep.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SDFTextRenderStep.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: TessellateCurvesRenderStep.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: TessellateStrokesRenderStep.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: TessellateWedgesRenderStep.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: VerticesRenderStep.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: CopyTask.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SynchronizeToCpuTask.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: TaskList.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: UploadTask.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: TextAtlasManager.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: VulkanGraphiteUtils.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: VulkanQueueManager.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: VulkanSharedContext.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPngEncoderImpl.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkHeifCodec.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkJpegCodec.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkJpegDecoderMgr.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkJpegMetadataDecoderImpl.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkJpegSourceMgr.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkJpegUtility.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkJpegXmp.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkIcoCodec.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPngCodec.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkRawCodec.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkWebpCodec.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkWuffsCodec.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkXmp.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkFontHost_FreeType.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkFontHost_FreeType_common.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkFontMgr_custom.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: AtlasTypes.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: Blend.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: BlendFormula.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: BlurUtils.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: DataUtils.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: DitherUtils.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: PipelineUtils.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: ResourceKey.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkBackingFit.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: Swizzle.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FixedCountBufferUtils.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: Tessellation.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: DistanceFieldAdjustTable.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GlyphVector.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SDFTControl.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkChromeRemoteGlyphCache.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: Slug.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SlugImpl.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: StrikeCache.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SubRunContainer.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: TextBlob.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: TextBlobRedrawCoordinator.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: VertexFiller.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLPipelineStageCodeGenerator.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLSPIRVCodeGenerator.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: VulkanAMDMemoryAllocator.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: VulkanExtensions.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: VulkanInterface.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: VulkanUtilsPriv.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkJpegMultiPicture.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkJpegSegmentScan.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkAAClip.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkBBHFactory.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkBigPicture.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkBitmapCache.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkBitmapDevice.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkBitmapProcState_opts.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkBitmapProcState_opts_ssse3.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkBlitter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkBlitter_A8.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkBlitter_ARGB32.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkBlurMask.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkBlurMaskFilterImpl.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkCompressedDataUtils.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkCubicClipper.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkDescriptor.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkDistanceFieldGen.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkDocument.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkDraw.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkDrawBase.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkDrawShadowInfo.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkDraw_atlas.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkDraw_text.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkDraw_vertices.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkEdge.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkEdgeBuilder.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkEdgeClipper.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkFontDescriptor.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkFontMetricsPriv.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkFont_serial.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkGlyphRunPainter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkGraphics.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkLineClipper.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkMaskBlurFilter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkMaskCache.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkMaskFilter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkMaskGamma.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkMesh.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkMipmapAccessor.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkMipmapBuilder.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkOpts.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPath_serial.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPixmapDraw.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkRTree.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkRasterClip.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkRasterPipelineBlitter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkRuntimeBlender.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkScalar.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkScan.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkScan_AntiPath.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkScan_Antihair.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkScan_Hairline.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkStrike.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkStroke.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkStrokerPriv.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkTypeface_remote.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkVertState.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkYUVPlanesCache.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkImage_Base.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkImage_Picture.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPictureImageGenerator.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkRescaleAndReadPixels.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkBitmapProcShader.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkBlendShader.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkCoordClampShader.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkEmptyShader.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkLocalMatrixShader.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPerlinNoiseShaderImpl.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPictureShader.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkTransformShader.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkTriColorShader.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: StrikeForGPU.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkAddIntersections.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkDConicLineIntersection.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkDCubicLineIntersection.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkDLineIntersection.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkDQuadLineIntersection.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkIntersections.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkOpAngle.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkOpCoincidence.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkOpCubicHull.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPathOpsAsWinding.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPathOpsCommon.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPathOpsTSect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkDashPath.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkShaderUtils.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkShadowTessellator.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: Sk1DPathEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: Sk2DPathEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkCornerPathEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkDashPathEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkDiscretePathEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkEmbossMaskFilter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkShaderMaskFilterImpl.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkTrimPathEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkConicalGradient.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkGradientBaseShader.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkRadialGradient.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSweepGradient.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkColorSpaceXformColorFilter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkTableColorFilter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkBlendImageFilter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkBlurImageFilter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkColorFilterImageFilter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkComposeImageFilter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkCropImageFilter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkDisplacementMapImageFilter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkDropShadowImageFilter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkImageImageFilter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkLightingImageFilter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkMagnifierImageFilter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkMatrixConvolutionImageFilter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkMatrixTransformImageFilter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkMergeImageFilter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkMorphologyImageFilter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPictureImageFilter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkRuntimeImageFilter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkShaderImageFilter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkColorPalette.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkExif.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkMaskSwizzler.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSwizzler.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkTiffUtility.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkBmpBaseCodec.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkEncoder.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkICC.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLBuiltinTypes.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLIntrinsicList.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLUtil.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLCanExitWithoutReturningValue.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLGetLoopUnrollInfo.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLIsDynamicallyUniformExpression.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkEncodedInfo.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkParseEncodedOrigin.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkOTUtils.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: Device.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: Device_drawTexture.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrAttachment.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrBackendTextureImageGenerator.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrBackendUtils.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrBlurUtils.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrBufferAllocPool.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrBufferTransferRenderTask.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrBufferUpdateRenderTask.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrClientMappedBufferManager.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrContextThreadSafeProxy.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrCopyRenderTask.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrDDLContext.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrDDLTask.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrDataUtils.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrDefaultGeoProcFactory.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrDistanceFieldGenFromVector.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrDrawOpTest.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrDynamicAtlas.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrEagerVertexAllocator.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrFixedClip.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrFragmentProcessors.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrMeshDrawTarget.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrOnFlushResourceProvider.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrPaint.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrProcessorUnitTest.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrRenderTarget.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrSWMaskHelper.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrShaderVar.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrStyle.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrUniformDataManager.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrUtil.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrVertexChunkArray.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrYUVATextureProxies.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: PathRenderer.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrBezierEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrBitmapTextGeoProc.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrColorTableEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrCoverageSetOpXP.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrDistanceFieldGeoProc.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrModulateAtlasCoverageEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrPerlinNoise2Effect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrRRectEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrShadowGeoProc.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrYUVtoRGBEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrAAConvexTessellator.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrAATriangulator.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrPathUtils.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrTriangulator.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrGLSLFragmentShaderBuilder.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrGradientShader.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrMockCaps.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: AtlasInstancedHelper.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: PathInnerTriangulateOp.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: PathTessellateOp.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: StrokeTessellateOp.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrStrokeTessellationShader.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: StrokeTessellator.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrVkBuffer.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrVkCaps.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrVkCommandBuffer.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrVkCommandPool.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrVkContextThreadSafeProxy.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrVkDescriptorPool.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrVkDescriptorSetManager.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrVkFramebuffer.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrVkPipelineStateBuilder.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrVkUniformHandler.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrVkVaryingHandler.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: AtlasProvider.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: Buffer.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: BufferManager.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: Caps.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: ClientMappedBufferManager.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: CommandBuffer.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: ComputePathAtlas.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: ContextUtils.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: DrawAtlas.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: DrawContext.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: DrawList.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: DrawPass.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: DrawWriter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GpuWorkSubmission.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: Image_Base_Graphite.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: KeyContext.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: PaintParams.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: PaintParamsKey.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: PathAtlas.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: PipelineData.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: ProxyCache.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: RasterPathAtlas.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: RasterPathUtils.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: RenderPassDesc.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: Renderer.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: ShaderCodeDictionary.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SpecialImage_Graphite.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: UniformManager.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: DispatchGroup.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: AnalyticBlurMask.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: IntersectionTree.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: Shape.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: Transform.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: ClearBuffersTask.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: ComputeTask.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: DrawTask.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: RenderPassTask.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: VulkanBuffer.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: VulkanCaps.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: VulkanCommandBuffer.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: VulkanGraphiteTypes.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: VulkanRenderPass.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: VulkanResourceProvider.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: VulkanSampler.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: VulkanSamplerYcbcrConversion.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: VulkanTexture.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkOpts_hsw.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkOpts_skx.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkDOM.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkXMLParser.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: TiledTextureUtils.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SDFMaskFilter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkAnalyticEdge.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkBitmapProcState.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkBitmapProcState_matrixProcs.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkBlitMask_opts.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkBlitMask_opts_ssse3.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkBlitRow_D32.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkBlitRow_opts.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkBlitRow_opts_hsw.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkBlitter_Sprite.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkColorTable.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPathMeasure.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPoint3.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkScan_AAAPath.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSpriteBlitter_ARGB32.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPolyUtils.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkEmbossMask.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkOTTable_name.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: ClipStack.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrProgramDesc.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: StencilMaskHelper.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrConvexPolyEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrOvalEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrGradientBitmapCache.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrVkDescriptorSet.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: ClipStack_graphite.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: KeyHelpers.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: RuntimeEffectDictionary.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: VulkanDescriptorPool.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: VulkanDescriptorSet.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: VulkanFramebuffer.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: VulkanGraphicsPipeline.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: VulkanImageView.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkAlphaRuns.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkContourMeasure.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGDOM.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGEllipse.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGFe.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGFeBlend.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGFeColorMatrix.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGFeComponentTransfer.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGFeComposite.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGFeDisplacementMap.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGFeFlood.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGFeGaussianBlur.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGFeImage.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGFeLightSource.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGFeLighting.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGFeMerge.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGFeMorphology.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGFeOffset.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGFeTurbulence.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGFilter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGFilterContext.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGImage.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGLine.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGLinearGradient.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGMask.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGNode.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGPath.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGPattern.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGPoly.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGRadialGradient.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGRect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGRenderContext.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGSVG.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGShape.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGStop.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGText.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGTransformableNode.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGUse.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGAttribute.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGAttributeParser.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGCircle.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGClipPath.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGContainer.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGGradient.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkShaper.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkShaper_factory.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkShaper_primitive.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkShaper_skunicode.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkShaper_harfbuzz.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkUnicode_icu.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkUnicode_icu_bidi.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkBidiFactory_icu_full.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkParseColor.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkParsePath.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkUnicode.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FuzzTextBlobDeserialize.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FuzzGradients.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FuzzSVG.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FuzzCanvas.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FuzzNullCanvas.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkNullCanvas.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkColorMatrixFilter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkHighContrastFilter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPDFDocument.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPDFFont.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPDFFormXObject.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPDFMakeCIDGlyphWidthsArray.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPDFMakeToUnicodeCmap.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPDFMetadata.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPDFSubsetFont.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPDFTag.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPDFType1Font.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPDFTypes.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPDFUtils.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGCanvas.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSVGDevice.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkAnnotation.cpp:SkScalarsEqual(float const*, float const*, int)
SkClipStack.cpp:SkScalarsEqual(float const*, float const*, int)
Line
Count
Source
151
133
static inline bool SkScalarsEqual(const SkScalar a[], const SkScalar b[], int n) {
152
133
    SkASSERT(n >= 0);
153
1.04k
    for (int i = 0; i < n; ++i) {
154
937
        if (a[i] != b[i]) {
155
30
            return false;
156
30
        }
157
937
    }
158
103
    return true;
159
133
}
Unexecuted instantiation: SkClipStackDevice.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkDeflate.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPDFBitmap.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPDFDevice.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPDFGraphicStackState.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPDFGraphicState.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPDFResourceDict.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPDFShader.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkXMLWriter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkClipStackUtils.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkJpegEncoderImpl.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkClusterator.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkKeyedImage.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPDFGradientShader.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkJPEGWriteUtility.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FuzzImageFilterDeserialize.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FuzzJSON.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FuzzPrecompile.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FactoryFunctions.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: Precompile.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: PublicPrecompile.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FuzzEncoders.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FuzzWEBPEncoder.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkWebpEncoderImpl.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FuzzQuadRoots.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLCheckSymbolTableCorrectness.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrShape.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrManagedResource.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrMemoryPool.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GrRRectEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: ClipStack.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: ClipStack_graphite.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FuzzCreateDDL.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FuzzAPICreateDDL.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FuzzSkParagraph.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FontCollection.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: ParagraphBuilderImpl.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: ParagraphCache.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: ParagraphImpl.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: ParagraphPainterImpl.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: ParagraphStyle.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: Run.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: TextLine.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: TextShadow.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: TextStyle.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: TextWrapper.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: TypefaceFontProvider.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: Decorations.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FontArguments.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: OneLineShaper.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FuzzRegionSetPath.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FuzzPathMeasure.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FuzzDDLThreading.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FuzzAPISVGCanvas.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FuzzRegionDeserialize.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FuzzPNGEncoder.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FuzzRasterN32Canvas.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FuzzRegionOp.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FuzzPathop.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkPathOpsTightBounds.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FuzzSkDescriptorDeserialize.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FuzzPolyUtils.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FuzzCOLRv1.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FuzzPathDeserialize.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FuzzSkottieJSON.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: Skottie.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkottieJson.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SlotManager.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: Animator.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: ScalarKeyframeAnimator.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: VectorKeyframeAnimator.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: TextLayer.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: Font.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: TextAdapter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: TextAnimator.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: TextShaper.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkResources.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: Composition.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: Layer.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: Path.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkottieProperty.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: KeyframeAnimator.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: ShapeKeyframeAnimator.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: TextKeyframeAnimator.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: Vec2KeyframeAnimator.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: Effects.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FillEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FractalNoiseEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GaussianBlurEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GlowStyles.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: GradientEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: HueSaturationEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: InvertEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: LevelsEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: LinearWipeEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: MotionBlurEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: MotionTileEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: RadialWipeEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: ShadowStyles.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SharpenEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: ShiftChannelsEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSLEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SphereEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: ThresholdEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: TintEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: TransformEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: TritoneEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: VenetianBlindsEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: AudioLayer.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FootageLayer.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: NullLayer.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: PrecompLayer.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SolidLayer.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: ShapeLayer.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: TrimPaths.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: RangeSelector.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: TextValue.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkAnimCodecPlayer.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: BlendModes.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: Camera.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: BlackAndWhiteEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: BrightnessContrastEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: BulgeEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: CCTonerEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: CornerPinEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: DirectionalBlur.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: DisplacementMapEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: DropShadowEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Ellipse.cpp:SkScalarsEqual(float const*, float const*, int)
Line
Count
Source
151
121k
static inline bool SkScalarsEqual(const SkScalar a[], const SkScalar b[], int n) {
152
121k
    SkASSERT(n >= 0);
153
1.09M
    for (int i = 0; i < n; ++i) {
154
969k
        if (a[i] != b[i]) {
155
0
            return false;
156
0
        }
157
969k
    }
158
121k
    return true;
159
121k
}
Unexecuted instantiation: FillStroke.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: Gradient.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: MergePaths.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: OffsetPaths.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: Polystar.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: PuckerBloat.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: Rectangle.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: Repeater.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: RoundCorners.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkCubicMap.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSGClipEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSGColorFilter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSGDraw.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSGEffectNode.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSGGeometryEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSGGeometryNode.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSGGradient.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSGGroup.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSGImage.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSGMaskEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSGMerge.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSGNode.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSGOpacityEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSGPaint.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSGPath.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSGRect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSGRenderEffect.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSGRenderNode.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSGTransform.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSGInvalidationController.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FuzzAnimatedImage.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkAnimatedImage.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkAndroidCodec.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkAndroidCodecAdapter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSampledCodec.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FuzzIncrementalImage.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FuzzAPIImageFilter.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FuzzMockGPUCanvas.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FuzzDrawFunctions.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: SkSurface_Null.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FuzzTriangulation.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FuzzAndroidCodec.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FuzzJPEGEncoder.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FuzzSKP.cpp:SkScalarsEqual(float const*, float const*, int)
Unexecuted instantiation: FuzzCubicRoots.cpp:SkScalarsEqual(float const*, float const*, int)
160
161
#endif