Home
last modified time | relevance | path

Searched refs:cover (Results 1 – 25 of 533) sorted by relevance

12345678910>>...22

/external/pdfium/third_party/agg23/
D0004-ubsan-sweep-scanline-error.patch10 +int rasterizer_scanline_aa::calculate_area(int cover, int shift)
12 + unsigned int result = cover;
26 cover += cur_cell->cover;
30 cover += cur_cell->cover;
33 - alpha = calculate_alpha((cover << (poly_base_shift + 1)) - area, no_smooth);
34 + unsigned alpha = calculate_alpha(calculate_area(cover, poly_base_shift + 1) - …
41 - alpha = calculate_alpha(cover << (poly_base_shift + 1), no_smooth);
42 + unsigned alpha = calculate_alpha(calculate_area(cover, poly_base_shift + 1), n…
50 + static int calculate_area(int cover, int shift);
D0006-ubsan-sweep-scanline-error.patch5 @@ -502,4 +502,16 @@ int rasterizer_scanline_aa::calculate_area(int cover, int shift)
30 - cover += cur_cell->cover;
33 + if(!safe_add(&cover, cur_cell->cover)) {
42 - cover += cur_cell->cover;
50 + if(!safe_add(&cover, cur_cell->cover)) {
62 … unsigned alpha = calculate_alpha(calculate_area(cover, poly_base_shift + 1) - area, no_smooth);
66 static int calculate_area(int cover, int shift);
Dagg_rasterizer_scanline_aa.h55 int cover; member
283 int cover = area >> (poly_base_shift * 2 + 1 - 8); in calculate_alpha() local
284 if(cover < 0) { in calculate_alpha()
285 cover = -cover; in calculate_alpha()
288 cover &= aa_2mask; in calculate_alpha()
289 if(cover > aa_num) { in calculate_alpha()
290 cover = aa_2num - cover; in calculate_alpha()
294 cover = cover > aa_mask / 2 ? aa_mask : 0; in calculate_alpha()
296 if(cover > aa_mask) { in calculate_alpha()
297 cover = aa_mask; in calculate_alpha()
[all …]
Dagg_pixfmt_gray.h37 unsigned alpha, unsigned cover = 0)
59 unsigned cover) in copy_or_blend_pix() argument
62 calc_type alpha = (calc_type(c.a) * (cover + 1)) >> 8; in copy_or_blend_pix()
66 Blender::blend_pix(p, c.v, alpha, cover); in copy_or_blend_pix()
117 AGG_INLINE void blend_pixel(int x, int y, const color_type& c, int8u cover) in blend_pixel() argument
119 copy_or_blend_pix((value_type*)m_rbuf->row(y) + x * Step + Offset, c, cover); in blend_pixel()
134 int8u cover) in blend_hline() argument
138 calc_type alpha = (calc_type(c.a) * (cover + 1)) >> 8; in blend_hline()
146 Blender::blend_pix(p, c.v, alpha, cover); in blend_hline()
Dagg_scanline_u.h69 void add_cell(int x, unsigned cover) in add_cell() argument
72 m_covers[x] = (cover_type)cover; in add_cell()
97 void add_span(int x, unsigned len, unsigned cover) in add_span() argument
100 memset(m_covers + x, cover, len); in add_span()
Dagg_rasterizer_scanline_aa.cpp56 cover = c; in set_cover()
61 cover += c; in add_cover()
73 cover = c; in set()
133 if(m_cur_cell.area | m_cur_cell.cover) { in add_cur_cell()
499 int rasterizer_scanline_aa::calculate_area(int cover, int shift) in calculate_area() argument
501 unsigned int result = cover; in calculate_area()
Dagg_renderer_base.h105 const color_type& c, cover_type cover) in blend_hline() argument
130 m_ren->blend_hline(x1, y, x2 - x1 + 1, c, cover); in blend_hline()
/external/python/oauth2client/
Dtox.ini2 envlist = py26,py27,py33,py34,py35,pypy,gae,cover
28 --cover-package=oauth2client \
29 --cover-package=tests \
30 --cover-erase \
31 --cover-tests \
32 --cover-branches \
37 --cover-package=oauth2client.contrib.appengine \
38 --cover-package=oauth2client.contrib._appengine_ndb \
39 --cover-package=tests.contrib.test_appengine \
40 --cover-package=tests.contrib.test__appengine_ndb \
[all …]
/external/python/apitools/
Dtox.ini29 [testenv:cover]
33 …osetests --with-xunit --with-xcoverage --cover-package=apitools --nocapture --cover-erase --cover-…
42 basepython = {[testenv:cover]basepython} argument
44 {[testenv:cover]commands}
47 {[testenv:cover]deps}
/external/oss-fuzz/infra/base-images/base-runner/gocoverage/gocovmerge/
Dgocovmerge.go16 func mergeProfiles(p *cover.Profile, merge *cover.Profile) {
28 func mergeProfileBlock(p *cover.Profile, pb cover.ProfileBlock, startIndex int) int {
64 p.Blocks = append(p.Blocks, cover.ProfileBlock{})
71 func addProfile(profiles []*cover.Profile, p *cover.Profile) []*cover.Profile {
83 func dumpProfiles(profiles []*cover.Profile, out io.Writer) {
98 var merged []*cover.Profile
101 profiles, err := cover.ParseProfiles(file)
/external/python/google-api-python-client/
Dtox.ini24 …nosetests --with-coverage --cover-package=googleapiclient --nocapture --cover-erase --cover-tests …
/external/s2-geometry-library-java/src/com/google/common/geometry/
DS2EdgeIndex.java112 ArrayList<S2CellId> cover = Lists.newArrayList(); in computeIndex() local
113 int level = getCovering(from, to, true, cover); in computeIndex()
115 for (S2CellId cellId : cover) { in computeIndex()
234 ArrayList<S2CellId> cover = Lists.newArrayList(); in findCandidateCrossings() local
235 getCovering(a, b, false, cover); in findCandidateCrossings()
240 getEdgesInParentCells(cover, uniqueSet); in findCandidateCrossings()
245 getEdgesInChildrenCells(a, b, cover, uniqueSet); in findCandidateCrossings()
422 private void getEdgesInParentCells(List<S2CellId> cover, Set<Integer> candidateCrossings) { in getEdgesInParentCells() argument
425 for (S2CellId coverCell : cover) { in getEdgesInParentCells()
491 private void getEdgesInChildrenCells(S2Point a, S2Point b, List<S2CellId> cover, in getEdgesInChildrenCells() argument
[all …]
/external/cpuinfo/test/dmesg/
Dzenfone-2.log51 [ 0.000000] gran_size: 64K chunk_size: 64K num_reg: 8 lose cover RAM: 3063M
52 [ 0.000000] gran_size: 64K chunk_size: 128K num_reg: 8 lose cover RAM: 3063M
53 [ 0.000000] gran_size: 64K chunk_size: 256K num_reg: 8 lose cover RAM: 3063M
54 [ 0.000000] gran_size: 64K chunk_size: 512K num_reg: 8 lose cover RAM: 3063M
55 [ 0.000000] gran_size: 64K chunk_size: 1M num_reg: 8 lose cover RAM: 3063M
56 [ 0.000000] gran_size: 64K chunk_size: 2M num_reg: 8 lose cover RAM: 3063M
57 [ 0.000000] gran_size: 64K chunk_size: 4M num_reg: 8 lose cover RAM: 3831M
58 [ 0.000000] gran_size: 64K chunk_size: 8M num_reg: 8 lose cover RAM: 3983M
59 [ 0.000000] gran_size: 64K chunk_size: 16M num_reg: 8 lose cover RAM: 3983M
60 [ 0.000000] gran_size: 64K chunk_size: 32M num_reg: 8 lose cover RAM: 3971M
[all …]
/external/freetype/src/smooth/
Dftgrays.c414 TCoord cover; /* same with gray_TWorker.cover */ member
455 TCoord cover; member
513 cell->x, cell->cover, cell->area ); in gray_dump_cells()
551 cell->cover = ras.cover; in gray_record_cell()
561 cell->cover += ras.cover; in gray_record_cell()
584 if ( !ras.invalid && ( ras.area || ras.cover ) ) in gray_set_cell()
588 ras.cover = 0; in gray_set_cell()
659 ras.cover += delta; in gray_render_scanline()
683 ras.cover += delta; in gray_render_scanline()
696 ras.cover += dy; in gray_render_scanline()
[all …]
/external/skqp/src/compute/skc/platforms/cl_12/kernels/
Drender.cl195 union float cover[SKC_REGS_COVER_S][SKC_TILE_HEIGHT][SKC_TILE_WIDTH];
624 union skc_tile_cover * SKC_RESTRICT const cover,
636 cover->aN.c[ii] = nonzero * (SKC_RENDER_TILE_COVER)(SKC_RENDER_FILL_MAX_AREA_RCP_F32);
643 union skc_tile_cover * SKC_RESTRICT const cover,
655cover->aN.c[ii] = SKC_CONVERT(SKC_RENDER_TILE_COVER)(SKC_RENDER_FILL_MAX_AREA - reflect) * (SKC_RE…
1023 // fralunco = cover.wip * acc.a
1054 // cover_min = min(cover.wip,a.acc)
1085 // r.acc = (cover.wip * r.wip) * r.acc
1086 // g.acc = (cover.wip * g.wip) * g.acc
1087 // b.acc = (cover.wip * b.wip) * b.acc
[all …]
/external/python/cpython2/Doc/howto/
Dindex.rst5 Python HOWTOs are documents that cover a single, specific topic,
6 and attempt to cover it fairly completely. Modelled on the Linux
/external/python/cpython3/Doc/howto/
Dindex.rst5 Python HOWTOs are documents that cover a single, specific topic,
6 and attempt to cover it fairly completely. Modelled on the Linux
/external/llvm-project/llvm/bindings/python/
DREADME.txt43 nosetests --with-coverage --cover-html
45 Then open cover/index.html in your browser of choice to see the code coverage.
/external/llvm/bindings/python/
DREADME.txt43 nosetests --with-coverage --cover-html
45 Then open cover/index.html in your browser of choice to see the code coverage.
/external/angle/third_party/zlib/patches/
D0005-infcover-gtest.patch19 /* to use, do: ./configure --cover && make cover */
198 /* cover all of the lines in inflate.c up to inflate() */
212 /* cover all inflate() header and trailer cases and code after inflate() */
265 /* cover inflateBack() up to common deflate data cases and after those */
324 /* cover deflate data cases in both inflate() and inflateBack() */
335 /* cover remaining lines in inftrees.c */
381 /* cover remaining inffast.c decoding and window copying */
/external/zlib/patches/
D0005-infcover-gtest.patch19 /* to use, do: ./configure --cover && make cover */
198 /* cover all of the lines in inflate.c up to inflate() */
212 /* cover all inflate() header and trailer cases and code after inflate() */
265 /* cover inflateBack() up to common deflate data cases and after those */
324 /* cover deflate data cases in both inflate() and inflateBack() */
335 /* cover remaining lines in inftrees.c */
381 /* cover remaining inffast.c decoding and window copying */
/external/autotest/venv/
D.coveragerc6 pragma: no cover
/external/python/mock/
D.coveragerc7 pragma: no cover
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/mq_close/
Dcoverage.txt8 5 WON'T - will not cover as this is undefined behavior
/external/igt-gpu-tools/assembler/test/
Dbreak.g4a4 * should cover 1 loop, and jumping 2 instructions.

12345678910>>...22