Home
last modified time | relevance | path

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

12345678910>>...12

/external/pdfium/third_party/agg23/
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_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()
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()
/external/skqp/gm/
Dreveal.cpp408 SkRect cover = drawObj->bounds(); in onDraw() local
409 SkAssertResult(cover.intersect(clipObj->bounds())); in onDraw()
426 canvas->drawRect(cover, paint); in onDraw()
427 canvas->drawRect(cover, strokePaint); in onDraw()
431 cover.makeOutset(10.0f, 10.0f), in onDraw()
438 const SkRRect inner = SkRRect::MakeRectXY(cover.makeInset(10.0f, 10.0f), in onDraw()
441 cover.makeOutset(10.0f, 10.0f), in onDraw()
449 path.moveTo(cover.fLeft, cover.fTop); in onDraw()
450 path.lineTo(cover.centerX(), cover.centerY()); in onDraw()
451 path.lineTo(cover.fRight, cover.fTop); in onDraw()
[all …]
/external/skia/gm/
Dreveal.cpp408 SkRect cover = drawObj->bounds(); in onDraw() local
409 SkAssertResult(cover.intersect(clipObj->bounds())); in onDraw()
426 canvas->drawRect(cover, paint); in onDraw()
427 canvas->drawRect(cover, strokePaint); in onDraw()
431 cover.makeOutset(10.0f, 10.0f), in onDraw()
438 const SkRRect inner = SkRRect::MakeRectXY(cover.makeInset(10.0f, 10.0f), in onDraw()
441 cover.makeOutset(10.0f, 10.0f), in onDraw()
449 path.moveTo(cover.fLeft, cover.fTop); in onDraw()
450 path.lineTo(cover.centerX(), cover.centerY()); in onDraw()
451 path.lineTo(cover.fRight, cover.fTop); in onDraw()
[all …]
/external/freetype/src/smooth/
Dftgrays.c417 TCoord cover; /* same with gray_TWorker.cover */ member
455 TCoord cover; member
511 cell->x, cell->cover, cell->area ); in gray_dump_cells()
550 cell->cover = ras.cover; in gray_record_cell()
560 cell->cover += ras.cover; in gray_record_cell()
586 if ( !ras.invalid && ( ras.area || ras.cover ) ) in gray_set_cell()
590 ras.cover = 0; in gray_set_cell()
658 ras.cover += delta; in gray_render_scanline()
682 ras.cover += delta; in gray_render_scanline()
695 ras.cover += dy; in gray_render_scanline()
[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/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/mesa3d/src/gallium/drivers/softpipe/
Dsp_setup.c1350 float dx, dy, dist2, cover; in sp_setup_point() local
1358 cover = 1.0F - (dist2 - rmin2) * cscale; in sp_setup_point()
1359 setup->quad[0].input.coverage[QUAD_TOP_LEFT] = MIN2(cover, 1.0f); in sp_setup_point()
1367 cover = 1.0F - (dist2 - rmin2) * cscale; in sp_setup_point()
1368 setup->quad[0].input.coverage[QUAD_TOP_RIGHT] = MIN2(cover, 1.0f); in sp_setup_point()
1376 cover = 1.0F - (dist2 - rmin2) * cscale; in sp_setup_point()
1377 setup->quad[0].input.coverage[QUAD_BOTTOM_LEFT] = MIN2(cover, 1.0f); in sp_setup_point()
1385 cover = 1.0F - (dist2 - rmin2) * cscale; in sp_setup_point()
1386 setup->quad[0].input.coverage[QUAD_BOTTOM_RIGHT] = MIN2(cover, 1.0f); in sp_setup_point()
/external/python/cpython3/Doc/library/
Demail.rst74 :mod:`~email.parser` and :mod:`~email.generator` components. Then we cover the
78 The next three sections cover the exceptions the package may raise and the
80 detect. Then we cover the :mod:`~email.headerregistry` and the
92 class, cover the legacy :data:`~email.policy.compat32` API that deals much more
/external/syslinux/core/
Dbcopyxx.inc302 dd 00009b00h ; present, dpl 0, cover 64K
305 dd 00009300h ; present, dpl 0, cover 64K
308 dd 00cf9b00h ; present, dpl 0, cover all 4G
311 dd 00cf9300h ; present, dpl 0, cover all 4G
/external/deqp/doc/testspecs/GLES3/
Dfunctional.primitive_bounding_box.txt62 "*_bbox_equal" cases set the bounding box to tightly cover the primitive
65 cases, the bounding box is set to cover only a subset of the pattern.
96 rendering result with bounding box set to cover full viewport and rendering
/external/autotest/venv/
D.coveragerc6 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/python/cpython2/Modules/zlib/
Dconfigure71 cover=0
117 --cover) cover=1; shift ;;
525 if test $cover -eq 1; then
/external/python/cpython2/
D.gitignore1 *.cover
/external/zlib/src/
Dconfigure83 cover=0
131 --cover) cover=1; shift ;;
611 if test $cover -eq 1; then
/external/python/cpython3/Modules/zlib/
Dconfigure83 cover=0
131 --cover) cover=1; shift ;;
611 if test $cover -eq 1; then
/external/swiftshader/third_party/LLVM/test/CodeGen/X86/
D2010-10-08-cmpxchg8b.ll9 ; Neither Atomic-xx.ll nor atomic_op.ll cover this. Those tests were
/external/walt/pywalt/
D.gitignore45 *,cover
/external/llvm/test/CodeGen/X86/
D2010-10-08-cmpxchg8b.ll9 ; Neither Atomic-xx.ll nor atomic_op.ll cover this. Those tests were
/external/valgrind/
DCOPYING.DOCS144 Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on
145 the back cover. Both covers must also clearly and legibly identify
146 you as the publisher of these copies. The front cover must present
153 If the required texts for either cover are too voluminous to fit
155 reasonably) on the actual cover, and continue the rest onto adjacent
251 includes a cover text for the same cover, previously added by you or

12345678910>>...12