Home
last modified time | relevance | path

Searched refs:cov (Results 1 - 25 of 33) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/tests/regres/cov/
H A Dcoverage_test.go22 cov "."
31 span0 = cov.Span{cov.Location{3, 2}, cov.Location{3, 9}}
32 span1 = cov.Span{cov.Location{4, 1}, cov.Location{5, 1}}
33 span2 = cov.Span{cov.Location{5, 5}, cov
[all...]
H A Dspan_test.go21 cov "."
25 l := cov.SpanList{}
37 l := cov.SpanList{span(1, 1, 1, 5), span(5, 4, 5, 7), span(9, 1, 9, 5)}
65 l := cov.SpanList{span(1, 1, 1, 5), span(5, 4, 5, 7), span(9, 1, 9, 5)}
75 l := cov.SpanList{span(1, 1, 1, 5), span(5, 4, 5, 7), span(9, 1, 9, 5)}
82 l := cov.SpanList{span(2, 1, 2, 5), span(3, 1, 3, 5), span(4, 1, 4, 5)}
98 l := cov.SpanList{span(2, 1, 2, 5), span(3, 1, 3, 5), span(4, 1, 4, 5)}
111 l := cov.SpanList{span(2, 1, 2, 5), span(3, 1, 3, 5), span(4, 1, 4, 5)}
121 l := cov.SpanList{span(2, 1, 2, 5), span(3, 1, 3, 5), span(4, 1, 4, 5)}
143 l := cov
[all...]
H A Dimport.go15 package cov
48 TurboCov string // path to turbo-cov (optional)
73 cov := Coverage{}
87 cov.Files = append(cov.Files, File{Path: rel})
93 return &cov
96 // Import uses the llvm-profdata and llvm-cov tools to import the coverage
123 return nil, cause.Wrap(err, "llvm-cov errored: %v", string(err.(*exec.ExitError).Stderr))
125 cov, err := e.parseCov(data)
129 return cov, ni
[all...]
H A Dtree.go15 package cov
104 // Add adds the coverage information cov to the tree node addressed by path.
105 func (t *Tree) Add(path Path, cov *Coverage) {
112 for _, file := range cov.Files {
H A Doptimization.go15 package cov
H A Dspan.go15 package cov
/third_party/skia/src/core/
H A DSkVMBlitter.cpp348 skvm::Color cov; in BuildProgram() local
351 cov.r = cov.g = cov.b = cov.a = p->splat(1.0f); in BuildProgram()
355 cov.r = cov.g = cov.b = cov.a = p->uniformF(p->uniform(), 0); in BuildProgram()
360 cov in BuildProgram()
483 skvm::Color cov; CacheKey() local
654 blitAntiH(int x, int y, const SkAlpha cov[], const int16_t runs[]) blitAntiH() argument
[all...]
H A DSkBlitter_ARGB32.cpp1163 static void drive(SkPMColor* dst, const SkPMColor* src, const uint8_t* cov, int n, in drive() argument
1166 auto apply = [kernel](U32 dst, U32 src, U8 cov) -> U32 { in drive()
1167 U8x4 cov_splat = skvx::shuffle<0,0,0,0, 1,1,1,1, 2,2,2,2, 3,3,3,3>(cov); in drive()
1173 apply(U32::Load(dst), U32::Load(src), U8::Load(cov)).store(dst); in drive()
1176 cov += 4; in drive()
1180 *dst = apply(U32{*dst}, U32{*src}, U8{*cov})[0]; in drive()
1183 cov++; in drive()
1188 auto cov = (const uint8_t*)mask; in blend_row_A8() local
1189 drive(dst, src, cov, n, [](U8x4 d, U8x4 s, U8x4 c) { in blend_row_A8()
1197 auto cov in blend_row_A8_opaque() local
[all...]
H A DSkVMBlitter.h92 void blitAntiH(int x, int y, const SkAlpha cov[], const int16_t runs[]) override;
/third_party/skia/tools/
H A Dparse_llvm_coverage.py21 The file paths printed by llvm-cov take the form:
89 cov, linenum, code = line.split('|', 2)
90 cov = cov.strip()
91 if cov:
92 cov = int(cov)
94 cov = None # We don't care about coverage for this line.
97 file_lines.append((linenum, cov, code.decode('utf-8', 'replace')))
157 for _, cov,
[all...]
/third_party/mesa3d/src/freedreno/computerator/examples/
H A Dtest-opcodes.sh156 cov.f32f16 hr0.x, (1.0)
157 cov.f32f16 hr0.y, (2.0)
158 cov.f32f16 hr0.z, (3.0)
170 cov.s32s16 hr0.x, 1
171 cov.s32s16 hr0.y, -2
172 cov.s32s16 hr0.z, 3
192 cov.f16f32 r2.z, hr1.x
193 cov.f16f32 r2.w, hr1.y
211 cov.s16s32 r2.z, hr1.x
212 cov
[all...]
H A Dsimple.asm16 cov.u32s16 hr4.x, r2.x
/third_party/node/deps/v8/tools/release/
H A Dscript_test.py40 cov = coverage.coverage(include=([os.path.join(script_path, '*.py')]))
41 cov.start()
48 cov.stop()
49 print(cov.report())
/third_party/skia/third_party/externals/brotli/research/
H A Ddeorummolae.cc247 Coverage cov = {{0}}; in DM_generate() local
249 cov[f >> 6] = (static_cast<uint64_t>(1)) << (f & 63); in DM_generate()
254 for (size_t x = 0; x < cov.size(); ++x) cov[x] |= top.coverage[x]; in DM_generate()
256 for (size_t x = 0; x < cov.size(); ++x) count += popcount(cov[x]); in DM_generate()
268 for (size_t x = 0; x < cov.size(); ++x) { in DM_generate()
269 isles.back().coverage[x] |= cov[x]; in DM_generate()
273 for (size_t x = 0; x < cov.size(); ++x) { in DM_generate()
274 isles.back().coverage[x] |= cov[ in DM_generate()
[all...]
/third_party/ffmpeg/libavcodec/
H A Dtexturedspenc.c247 int cov[6] = { 0 }; in optimize_colors() local
279 cov[0] += r * r; in optimize_colors()
280 cov[1] += r * g; in optimize_colors()
281 cov[2] += r * b; in optimize_colors()
282 cov[3] += g * g; in optimize_colors()
283 cov[4] += g * b; in optimize_colors()
284 cov[5] += b * b; in optimize_colors()
290 covf[x] = cov[x] / 255.0f; in optimize_colors()
/third_party/skia/third_party/externals/swiftshader/tests/regres/deqp/
H A Ddeqp.go35 "../cov"
69 CoverageEnv *cov.Env
80 Coverage *cov.Tree
90 Coverage *cov.Coverage
231 out.Coverage = &cov.Tree{}
232 out.Coverage.Add(cov.Path{}, c.CoverageEnv.AllSourceFiles())
252 out.Coverage.Add(cov.Path(path), r.Coverage)
306 env = cov.AppendRuntimeEnv(env, coverageFile)
344 var coverage *cov.Coverage
/third_party/littlefs/
H A DMakefile277 .PHONY: cov
278 cov: COVFLAGS+=-s
279 cov: $(GCDA) $(BUILDDIR)/lfs.cov.csv
280 $(strip ./scripts/cov.py $(GCDA) \
285 .PHONY: cov-diff
286 cov-diff: $(GCDA)
287 $(strip ./scripts/cov.py $^ \
289 $(COVFLAGS) -d $(BUILDDIR)/lfs.cov.csv)
487 $(BUILDDIR)/lfs.cov
[all...]
/third_party/mesa3d/src/freedreno/ir3/
H A Dir3_lower_parallelcopy.c231 /* cov.u32u16 dst, src */ in do_copy()
232 struct ir3_instruction *cov = in do_copy() local
234 ir3_dst_create(cov, dst_num, entry->flags); in do_copy()
235 ir3_src_create(cov, src_num, entry->flags & ~IR3_REG_HALF); in do_copy()
236 cov->cat1.dst_type = TYPE_U16; in do_copy()
237 cov->cat1.src_type = TYPE_U32; in do_copy()
238 ir3_instr_move_before(cov, instr); in do_copy()
/third_party/skia/third_party/externals/angle2/src/image_util/
H A Dloadimage_etc.cpp1019 int cov[6] = {0, 0, 0, 0, 0, 0}; in selectEndPointPCA() local
1032 cov[0] += r * r * count; in selectEndPointPCA()
1033 cov[1] += r * g * count; in selectEndPointPCA()
1034 cov[2] += r * b * count; in selectEndPointPCA()
1035 cov[3] += g * g * count; in selectEndPointPCA()
1036 cov[4] += g * b * count; in selectEndPointPCA()
1037 cov[5] += b * b * count; in selectEndPointPCA()
1053 float r = vfr * cov[0] + vfg * cov[1] + vfb * cov[ in selectEndPointPCA()
[all...]
/third_party/node/benchmark/process/
H A Dcoverage.js14 const coverageDir = path.join(tmpdir.path, `./cov-${Date.now()}`);
/third_party/cJSON/tests/unity/extras/fixture/test/
H A DMakefile50 cov: $(BUILD_DIR)
/third_party/cJSON/tests/unity/test/
H A DMakefile25 TARGET = build/testunity-cov.exe
/third_party/unity/extras/fixture/test/
H A DMakefile47 cov: $(BUILD_DIR)
/third_party/unity/extras/memory/test/
H A DMakefile53 cov: $(BUILD_DIR)
/third_party/zlib/contrib/puff/
H A DMakefile16 cov: puft

Completed in 17 milliseconds

12