Home
last modified time | relevance | path

Searched refs:cover (Results 126 – 150 of 28555) sorted by relevance

12345678910>>...1143

/dports/math/py-matplotlib/matplotlib-3.4.3/extern/agg24-svn/include/
H A Dagg_scanline_boolean_algebra.h158 unsigned cover; in operator() local
270 unsigned cover; in operator() local
375 if(cover > cover_mask) cover = cover_mask + cover_mask - cover; in calculate()
376 return cover; in calculate()
441 unsigned cover; in operator() local
462 if(cover) sl.add_cell(x, cover); in operator()
474 if(cover) sl.add_cell(x, cover); in operator()
486 if(cover) sl.add_cell(x, cover); in operator()
494 if(cover) sl.add_span(x, len, cover); in operator()
530 unsigned cover; in operator() local
[all …]
/dports/graphics/mapserver/mapserver-7.6.4/renderers/agg/include/
H A Dagg_scanline_boolean_algebra.h158 unsigned cover; in operator() local
270 unsigned cover; in operator() local
375 if(cover > cover_mask) cover = cover_mask + cover_mask - cover; in calculate()
376 return cover; in calculate()
441 unsigned cover; in operator() local
462 if(cover) sl.add_cell(x, cover); in operator()
474 if(cover) sl.add_cell(x, cover); in operator()
486 if(cover) sl.add_cell(x, cover); in operator()
494 if(cover) sl.add_span(x, len, cover); in operator()
530 unsigned cover; in operator() local
[all …]
H A Dagg_rasterizer_scanline_aa.h49 int cover; member
56 cover = 0; in initial()
172 return m_gamma[cover]; in apply_gamma()
218 if(cover < 0) cover = -cover; in calculate_alpha()
221 cover &= aa_mask2; in calculate_alpha()
224 cover = aa_scale2 - cover; in calculate_alpha()
227 if(cover > aa_mask) cover = aa_mask; in calculate_alpha()
228 return m_gamma[cover]; in calculate_alpha()
240 int cover = 0; in sweep_scanline() local
249 cover += cur_cell->cover; in sweep_scanline()
[all …]
/dports/sysutils/fluxengine/fluxengine-61ff48c/dep/agg/include/
H A Dagg_scanline_boolean_algebra.h157 unsigned cover; in operator() local
269 unsigned cover; in operator() local
374 if(cover > cover_mask) cover = cover_mask + cover_mask - cover; in calculate()
375 return cover; in calculate()
440 unsigned cover; in operator() local
461 if(cover) sl.add_cell(x, cover); in operator()
473 if(cover) sl.add_cell(x, cover); in operator()
485 if(cover) sl.add_cell(x, cover); in operator()
493 if(cover) sl.add_span(x, len, cover); in operator()
529 unsigned cover; in operator() local
[all …]
H A Dagg_rasterizer_scanline_aa_nogamma.h49 int cover; in __construct()
56 cover = 0; in __construct()
146 return cover;
192 if(cover < 0) cover = -cover;
195 cover &= aa_mask2;
198 cover = aa_scale2 - cover;
201 if(cover > aa_mask) cover = aa_mask;
202 return cover;
214 int cover = 0; in _query()
223 cover += cur_cell->cover; in _query()
[all …]
/dports/graphics/agg/agg-2.5/include/
H A Dagg_rasterizer_scanline_aa.h59 int cover; member
66 cover = 0; in initial()
182 return m_gamma[cover]; in apply_gamma()
228 if(cover < 0) cover = -cover; in calculate_alpha()
231 cover &= aa_mask2; in calculate_alpha()
234 cover = aa_scale2 - cover; in calculate_alpha()
237 if(cover > aa_mask) cover = aa_mask; in calculate_alpha()
238 return m_gamma[cover]; in calculate_alpha()
250 int cover = 0; in sweep_scanline() local
259 cover += cur_cell->cover; in sweep_scanline()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/pdfium/third_party/agg23/
H A Dagg_rasterizer_scanline_aa.h55 int cover; member
284 if(cover < 0) { in calculate_alpha()
285 cover = -cover; 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()
299 return cover; in calculate_alpha()
336 int cover = 0; in sweep_scanline() local
343 if(!safe_add(&cover, cur_cell->cover)) { in sweep_scanline()
[all …]
H A 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);
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/pdfium/third_party/agg23/
H A Dagg_rasterizer_scanline_aa.h57 int cover; member
286 if(cover < 0) { in calculate_alpha()
287 cover = -cover; in calculate_alpha()
292 cover = aa_2num - cover; in calculate_alpha()
296 cover = cover > aa_mask / 2 ? aa_mask : 0; in calculate_alpha()
298 if(cover > aa_mask) { in calculate_alpha()
299 cover = aa_mask; in calculate_alpha()
301 return cover; in calculate_alpha()
338 int cover = 0; in sweep_scanline() local
345 if(!safe_add(&cover, cur_cell->cover)) { in sweep_scanline()
[all …]
H A 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);
/dports/math/py-networkx/networkx-2.6.3/networkx/algorithms/approximation/tests/
H A Dtest_vertex_cover.py22 cover = min_weighted_vertex_cover(G)
23 assert 2 == len(cover)
24 assert is_cover(G, cover)
30 cover = min_weighted_vertex_cover(sg)
31 assert 2 == len(cover)
32 assert is_cover(sg, cover)
52 cover = min_weighted_vertex_cover(wg, weight="weight")
53 csum = sum(wg.nodes[node]["weight"] for node in cover)
55 assert is_cover(wg, cover)
/dports/textproc/dblatex/dblatex-0.3.11py3/latex/style/
H A Ddbk_cover.sty2 %% To make a cover page, put an image covering the whole page
4 \newdimen\cover@voff
5 \newdimen\cover@hoff
11 \setlength{\cover@voff}{-\voffset-\headheight-\headsep-\topmargin-\topskip-1in}%
12 \setlength{\cover@hoff}{\hoffset+1in}%
14 \advance\cover@hoff\oddsidemargin%
16 \advance\cover@hoff\evensidemargin%
19 \noindent\begin{picture}(0,0)(\strip@pt\cover@hoff,\strip@pt\cover@voff)
/dports/math/clingo/clingo-5.5.1/app/clingo/tests/lua/
H A Dcover-lua.lp38 local cover = {}
49 if atom.name == "cover" then
50 cover[#cover + 1] = atom.arguments[2]
55 self.cover = function (self) return cover end
76 cover(k,X) :- edge(k-1,X,Y), leaf(k,Y).\n\
77 edge(k,X,Y) :- edge(k-1,X,Y), not cover(k,X), not cover(k,Y).\n\
94 cover(X) :- X = @cover().\n\
96 { cover(X) : vertex(X) }.\n\
97 :- edge(X,Y), not cover(X), not cover(Y).\n\
98 %#minimize { 1,X : cover(X) }.\n\
[all …]
/dports/multimedia/gpodder/gpodder-3.10.17/share/gpodder/extensions/
H A Dtagging.py79 self.cover = cover
130 def get_cover_picture(self, cover): argument
137 f = file(cover)
141 p.mime = mimetypes.guess_type(cover)[0]
153 p = self.get_cover_picture(self.cover)
165 if self.cover.endswith('png'):
170 data = open(self.cover, 'rb').read()
191 data=open(self.cover, 'rb').read()
215 cover = None
219 cover = self.get_cover(episode.channel)
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/depot_tools/external_bin/gsutil/gsutil_4.28/gsutil/third_party/oauth2client/
H A Dtox.ini2 envlist = py26,py27,py33,py34,pypy,gae,cover
26 --cover-package=oauth2client \
27 --cover-package=tests \
28 --cover-erase \
29 --cover-tests \
30 --cover-branches \
37 --cover-package=tests.contrib.test_appengine \
40 --cover-tests \
41 --cover-branches \
83 [testenv:cover]
[all …]
/dports/deskutils/calibre/calibre-src-5.34.0/src/calibre/gui2/convert/
H A Dmetadata.py28 old_cover = mi.cover
29 mi.cover = None
32 mi.cover = old_cover
41 cover = db.cover(book_id, index_is_id=True)
43 if cover:
45 cf.write(cover)
105 cover = self.db.cover(self.book_id, index_is_id=True)
106 if cover:
211 if cover:
282 cover = self.db.cover(self.book_id, index_is_id=True)
[all …]
/dports/math/clingo/clingo-5.5.1/examples/clingo/cover/
H A Dcover.lp3 cover(X) :- X = @cover().
5 { cover(X) : vertex(X) }.
6 :- edge(X,Y), not cover(X), not cover(Y).
7 #minimize { 1,X : cover(X) }.
9 #show cover/1.
/dports/math/minizinc/libminizinc-2.5.5/share/minizinc/std/
H A Dglobal_cardinality_low_up_closed.mzn5 Requires that for all \p i, the value \a cover[\p i] appears at least \a lbound[\p i]
8 The elements of \a x must take their values from \a cover.
11 array[$Y] of int: cover,
15 index_sets_agree(cover,lbound) /\ index_sets_agree(cover,ubound),
17 "cover, lbound and ubound must have identical index sets",
20 \/ length(cover) == 0,
24 elseif length(cover) == 0 then
26 "cover must be empty when x is empty",
29 … fzn_global_cardinality_low_up_closed(array1d(x), array1d(cover), array1d(lbound), array1d(ubound))
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/workhorse/vendor/github.com/uber/jaeger-lib/
H A DMakefile69 .PHONY: cover
70 cover: target
71 $(GOTEST) -cover -coverprofile cover.out ./...
73 .PHONY: cover-html
74 cover-html: cover
75 go tool cover -html=cover.out -o cover.html
93 go get golang.org/x/tools/cmd/cover
97 test-ci: dep-check cover lint
/dports/net-im/dendrite/dendrite-0.5.1/vendor/github.com/uber/jaeger-lib/
H A DMakefile69 .PHONY: cover
70 cover: target
71 $(GOTEST) -cover -coverprofile cover.out ./...
73 .PHONY: cover-html
74 cover-html: cover
75 go tool cover -html=cover.out -o cover.html
93 go get golang.org/x/tools/cmd/cover
97 test-ci: dep-check cover lint
/dports/net-mgmt/promscale/promscale-0.6.2/vendor/github.com/uber/jaeger-lib/
H A DMakefile69 .PHONY: cover
70 cover: target
71 $(GOTEST) -cover -coverprofile cover.out ./...
73 .PHONY: cover-html
74 cover-html: cover
75 go tool cover -html=cover.out -o cover.html
93 go get golang.org/x/tools/cmd/cover
97 test-ci: dep-check cover lint
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/github.com/uber/jaeger-lib/
H A DMakefile69 .PHONY: cover
70 cover: target
71 $(GOTEST) -cover -coverprofile cover.out ./...
73 .PHONY: cover-html
74 cover-html: cover
75 go tool cover -html=cover.out -o cover.html
93 go get golang.org/x/tools/cmd/cover
97 test-ci: dep-check cover lint
/dports/devel/gitlab-shell/gitlab-shell-65b8ec55bebd0aea64ac52b9878bafcc2ad992d3/vendor/github.com/uber/jaeger-lib/
H A DMakefile69 .PHONY: cover
70 cover: target
71 $(GOTEST) -cover -coverprofile cover.out ./...
73 .PHONY: cover-html
74 cover-html: cover
75 go tool cover -html=cover.out -o cover.html
93 go get golang.org/x/tools/cmd/cover
97 test-ci: dep-check cover lint
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/uber/jaeger-lib/
H A DMakefile69 .PHONY: cover
70 cover: target
71 $(GOTEST) -cover -coverprofile cover.out ./...
73 .PHONY: cover-html
74 cover-html: cover
75 go tool cover -html=cover.out -o cover.html
93 go get golang.org/x/tools/cmd/cover
97 test-ci: dep-check cover lint
/dports/devel/py-pytest-benchmark/pytest-benchmark-3.4.1/
H A D.travis.yml19 - TOXENV=py27-pytest46-pygal24-nodist-cover,codecov,coveralls
25 - TOXENV=py27-pytest46-pygal24-xdist-cover,codecov,coveralls
31 - TOXENV=py36-pytest6-pygal24-nodist-cover,codecov,coveralls
37 - TOXENV=py36-pytest6-pygal24-xdist-cover,codecov,coveralls
43 - TOXENV=py37-pytest6-pygal24-nodist-cover,codecov,coveralls
49 - TOXENV=py37-pytest6-pygal24-xdist-cover,codecov,coveralls
55 - TOXENV=py38-pytest6-pygal24-nodist-cover,codecov,coveralls
61 - TOXENV=py38-pytest6-pygal24-xdist-cover,codecov,coveralls
67 - TOXENV=py39-pytest6-pygal24-nodist-cover,codecov,coveralls
73 - TOXENV=py39-pytest6-pygal24-xdist-cover,codecov,coveralls
[all …]

12345678910>>...1143