Searched refs:coverage (Results 101 - 125 of 163) sorted by relevance

1234567

/external/elfutils/src/tests/
H A DMakefile.am175 coverage.sh test-subr.sh test-wrapper.sh \
425 check: check-am coverage
426 .PHONY: coverage
427 coverage:
428 -$(srcdir)/coverage.sh
/external/skia/src/core/
H A DSkDraw.cpp936 SkScalar* coverage) {
951 if (coverage) {
952 *coverage = SkScalarAve(len0, len1);
970 SkScalar coverage; local
971 if (SkDrawTreatAsHairline(paint, *fMatrix, &coverage)) {
1053 SkScalar coverage; local
1054 if (SkDrawTreatAsHairline(origPaint, *matrix, &coverage)) {
1055 if (SK_Scalar1 == coverage) {
1060 newAlpha = SkToU8(SkScalarRoundToInt(coverage *
1066 int scale = (int)SkScalarMul(coverage, 25
935 SkDrawTreatAAStrokeAsHairline(SkScalar strokeWidth, const SkMatrix& matrix, SkScalar* coverage) argument
[all...]
/external/deqp/modules/glshared/
H A DglsRasterizationTestUtil.cpp703 // Iterate triangle coverage front to back, find the stack of pontentially contributing fragments
706 const CoverageType coverage = calculateTriangleCoverage(scene.triangles[triNdx].positions[0],
714 if (coverage == COVERAGE_FULL || coverage == COVERAGE_PARTIAL)
739 if (coverage == COVERAGE_FULL)
748 // Partial coverage == background may be visible
758 // No coverage, allow only background (black, value=0)
1095 if ((deUint32)packets[packetNdx].coverage & (1 << fragNdx))
1454 if ((deUint32)packets[packetNdx].coverage & (1 << fragNdx))
1489 DE_ASSERT(scene.lines.size() < 8); // coverage indice
[all...]
/external/libxml2/
H A DMakefile.am1264 if [ "`echo $(LDFLAGS) | grep coverage`" = "" ] ; then \
1265 echo not configured with coverage; exit 1 ; fi
1270 mkdir $(top_builddir)/coverage
1271 $(LCOV) -c -o $(top_builddir)/coverage/libxml2.info.tmp -d $(top_srcdir)
1272 $(LCOV) -r $(top_builddir)/coverage/libxml2.info.tmp -o $(top_builddir)/coverage/libxml2.info *usr*
1273 rm $(top_builddir)/coverage/libxml2.info.tmp
1274 $(GENHTML) -s -t "libxml2" -o $(top_builddir)/coverage --legend $(top_builddir)/coverage/libxml2.info
1275 echo "Coverage report is in $(top_builddir)/coverage/inde
[all...]
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dmask.c239 VGfloat coverage)
245 0.0f, 0.0f, 0.0f, coverage /* color */
237 mask_resource_fill(struct pipe_resource *dst, int x, int y, int width, int height, VGfloat coverage) argument
/external/fonttools/Lib/fontTools/ttLib/tables/
H A DotTables.py47 # Some SIL fonts have coverage entries that don't have sorted
369 # CJK fonts will overflow an offset if the coverage table isn't pushed to the end.
371 # I don't need to calculate the change in the subtable offset due to the change in the coverage table size.
439 # I don't need to calculate the change in subtabl offset due to the coverage table size.
578 # the coverage table. We will just cut the subtable in half.
606 # the coverage table. We will just cut the subtable in half.
780 def _getGlyphsFromCoverageTable(coverage):
781 if coverage is None:
782 # empty coverage table
785 return coverage
[all...]
/external/fonttools/Tools/fontTools/ttLib/tables/
H A DotTables.py47 # Some SIL fonts have coverage entries that don't have sorted
369 # CJK fonts will overflow an offset if the coverage table isn't pushed to the end.
371 # I don't need to calculate the change in the subtable offset due to the change in the coverage table size.
439 # I don't need to calculate the change in subtabl offset due to the coverage table size.
578 # the coverage table. We will just cut the subtable in half.
606 # the coverage table. We will just cut the subtable in half.
780 def _getGlyphsFromCoverageTable(coverage):
781 if coverage is None:
782 # empty coverage table
785 return coverage
[all...]
/external/bison/
H A Dmaint.mk1470 init-coverage:
1474 COVERAGE_CCOPTS ?= "-g --coverage"
1475 COVERAGE_OUT ?= doc/coverage
1477 build-coverage:
1484 gen-coverage:
1490 coverage: init-coverage build-coverage gen-coverage
/external/libvpx/libvpx/build/make/
H A Dconfigure.sh84 ${toggle_gcov} enable/disable gcov coverage instrumentation
1254 check_add_cflags -fprofile-arcs -ftest-coverage &&
1255 check_add_ldflags -fprofile-arcs -ftest-coverage
/external/deqp/modules/gles3/performance/
H A Des3pDepthTests.cpp166 vector<float> getPartScreenQuad (float coverage, float depth) argument
168 const float xMax = -1.0f + 2.0f*coverage;
1519 PartialOccluderCullCase (TestContext& testCtx, const RenderContext& renderCtx, const char* name, const char* desc, float coverage) argument
1521 , m_coverage (coverage)
/external/compiler-rt/lib/asan/
H A Dasan_interceptors.cc747 if (common_flags()->coverage) CovBeforeFork();
749 if (common_flags()->coverage) CovAfterFork(pid);
/external/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/external/owasp/sanitizer/tools/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/external/compiler-rt/lib/lsan/
H A Dlsan_common.cc427 if (common_flags()->coverage)
/external/compiler-rt/lib/msan/
H A Dmsan.cc389 InitializeCoverage(common_flags()->coverage, common_flags()->coverage_dir);
/external/deqp/framework/referencerenderer/
H A DrrRenderer.cpp1052 if (getCoverageAnyFragmentSampleLive(packet.coverage, numSamples, xo, yo))
1057 fragment.coverage = (deUint32)((packet.coverage & getCoverageFragmentSampleBits(numSamples, xo, yo)) >> getCoverageOffset(numSamples, xo, yo));
1085 if (getCoverageAnyFragmentSampleLive(packet.coverage, numSamples, xo, yo))
/external/llvm/lib/ProfileData/
H A DCoverageMappingReader.cpp1 //=-- CoverageMappingReader.cpp - Code coverage mapping reader ----*- C++ -*-=//
10 // This file contains support for reading coverage mapping data for
11 // instrumentation based coverage.
25 using namespace coverage;
28 #define DEBUG_TYPE "coverage-mapping"
327 // Read the records in the coverage data section.
357 // We'll read the coverage mapping records in the loop below.
371 // Now use that to read the coverage data.
458 // The coverage uses native pointer sizes for the object it's written in.
/external/llvm/tools/llvm-cov/
H A DCodeCoverage.cpp11 // report coverage information using the profiling instrumentation and code
12 // coverage mapping.
38 using namespace coverage;
41 /// \brief The implementation of the coverage tool.
70 /// \brief Load the coverage mapping data. Return true if an error occured.
203 << "error: Failed to load coverage: " << EC.message();
250 "arch", cl::desc("architecture of the coverage mapping binary"));
257 cl::desc("Treat source files as equivalent to paths in the coverage data "
264 cl::desc("Show code coverage only for functions with the given name"),
269 cl::desc("Show code coverage onl
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_context.h1189 unsigned num_samples, float coverage,
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Drecognizers.rb1229 This is just a lose overview of parsing. For considerably more in-depth coverage
H A Dtree.rb83 For more in-depth coverage of the topic, check out the ANTLR documentation
/external/elfutils/src/lib/
H A DMakefile295 COMPILE.os = $(filter-out -fprofile-arcs -ftest-coverage, $(COMPILE))
/external/elfutils/src/libasm/
H A DMakefile349 COMPILE.os = $(filter-out -fprofile-arcs -ftest-coverage, $(COMPILE))
/external/elfutils/src/libcpu/
H A DMakefile323 COMPILE.os = $(filter-out -fprofile-arcs -ftest-coverage, $(COMPILE))
/external/elfutils/src/libdwelf/
H A DMakefile328 COMPILE.os = $(filter-out -fprofile-arcs -ftest-coverage, $(COMPILE))

Completed in 2051 milliseconds

1234567