Home
last modified time | relevance | path

Searched refs:overall (Results 1 – 25 of 7577) sorted by relevance

12345678910>>...304

/dports/biology/hyphy/hyphy-2.5.33/tests/hbltests/libv3/
H A DCFEL.wbf25 … 3.270 - 54.054 | 5 | overall |…
26 … 0.000 - 2.307 | 2 | overall |…
27 … 0.000 - 2.152 | 3 | overall |…
28 … 0.000 - 2.345 | 2 | overall |…
29 … 0.000 - 13.804 | 5 | overall |…
30 … 0.000 - 7.942 | 4 | overall |…
31 … 0.557 - 7.023 | 4 | overall |…
32 … 0.000 - 2.284 | 0 | overall |…
33 … 2.213 - 9938.183 | 5 | overall |…
34 … 0.000 - 4.578 | 4 | overall |…
[all …]
/dports/mail/nextcloud-mail/mail/vendor/rubix/ml/src/CrossValidation/Reports/
H A DMulticlassBreakdown.php86 $overall = $averages + $counts;
135 $overall['accuracy'] += $accuracy;
137 $overall['f1_score'] += $f1score;
139 $overall['recall'] += $recall;
149 $overall['mcc'] += $mcc;
150 $overall['true_positives'] += $tp;
151 $overall['true_negatives'] += $tn;
152 $overall['false_positives'] += $fp;
157 $overall[$metric] /= $k;
160 $overall += [
[all …]
/dports/x11/libX11/libX11-1.7.2/modules/om/generic/
H A DomTextExt.c48 XCharStruct overall, tmp_overall; in _XomGenericTextExtents() local
79 overall = tmp_overall; in _XomGenericTextExtents()
84 overall.lbearing = min(overall.lbearing, in _XomGenericTextExtents()
86 overall.rbearing = max(overall.rbearing, in _XomGenericTextExtents()
88 overall.ascent = max(overall.ascent, tmp_overall.ascent); in _XomGenericTextExtents()
89 overall.descent = max(overall.descent, tmp_overall.descent); in _XomGenericTextExtents()
97 overall_ink->x = overall.lbearing; in _XomGenericTextExtents()
98 overall_ink->y = -(overall.ascent); in _XomGenericTextExtents()
99 overall_ink->width = overall.rbearing - overall.lbearing; in _XomGenericTextExtents()
100 overall_ink->height = overall.ascent + overall.descent; in _XomGenericTextExtents()
[all …]
H A DomTextPer.c52 XCharStruct *def, *cs, overall; in _XomGenericTextPerCharExtents() local
120 logical_buf->x = overall.width; in _XomGenericTextPerCharExtents()
127 overall = *cs; in _XomGenericTextPerCharExtents()
130 overall.ascent = max(overall.ascent, cs->ascent); in _XomGenericTextPerCharExtents()
131 overall.descent = max(overall.descent, cs->descent); in _XomGenericTextPerCharExtents()
132 overall.lbearing = min(overall.lbearing, in _XomGenericTextPerCharExtents()
134 overall.rbearing = max(overall.rbearing, in _XomGenericTextPerCharExtents()
136 overall.width += cs->width; in _XomGenericTextPerCharExtents()
148 overall_ink->x = overall.lbearing; in _XomGenericTextPerCharExtents()
150 overall_ink->width = overall.rbearing - overall.lbearing; in _XomGenericTextPerCharExtents()
[all …]
H A DomDefault.c147 XCharStruct overall; in _XmbDefaultTextExtents() local
155 overall_ink->width = overall.rbearing - overall.lbearing; in _XmbDefaultTextExtents()
156 overall_ink->height = overall.ascent + overall.descent; in _XmbDefaultTextExtents()
166 return overall.width; in _XmbDefaultTextExtents()
255 overall = *cs; in _XmbDefaultTextPerCharExtents()
258 overall.ascent = max(overall.ascent, cs->ascent); in _XmbDefaultTextPerCharExtents()
259 overall.descent = max(overall.descent, cs->descent); in _XmbDefaultTextPerCharExtents()
260 overall.lbearing = min(overall.lbearing, overall.width + in _XmbDefaultTextPerCharExtents()
262 overall.rbearing = max(overall.rbearing, overall.width + in _XmbDefaultTextPerCharExtents()
273 overall_ink->width = overall.rbearing - overall.lbearing; in _XmbDefaultTextPerCharExtents()
[all …]
/dports/multimedia/mjpegtools/mjpegtools-2.1.0/yuvcorrect/
H A Dyuvcorrect_tune.c180 overall->RefFrame=overall->ImgFrame; in handle_args_overall()
213 overall->mode = 0; in yuvcorrect_tune_handle_args()
218 overall->mode = 1; in yuvcorrect_tune_handle_args()
223 overall->mode = 2; in yuvcorrect_tune_handle_args()
433 overall->verbose=1; in main()
434 overall->mode=overall->stat=0; in main()
435 overall->RefFrame=overall->ImgFrame=-1; in main()
478 mjpeg_debug("overall: verbose=%u, mode=%d, stat=%u",overall->verbose,overall->mode,overall->stat); in main()
495 if (overall->RefFrame!=overall->ImgFrame) in main()
1092 if (overall->mode!=0) in main()
[all …]
H A Dyuvcorrect.c136 overall->verbose = verb; in handle_args_overall()
174 overall->stat = 1; in yuvcorrect_handle_args()
179 overall->rgbfirst = 1; in yuvcorrect_handle_args()
327 overall_t *overall=NULL; in main() local
345 overall->verbose = 1; in main()
346 overall->mode = overall->stat = overall->rgbfirst = 0; in main()
347 handle_args_overall (argc, argv, overall); in main()
395 overall->mode, overall->stat); in main()
406 if (overall->stat == 1) in main()
450 if (overall->rgbfirst == 1) in main()
[all …]
/dports/x11/libX11/libX11-1.7.2/src/
H A DTextExt16.c55 register XCharStruct *overall) /* RETURN character information */ in XTextExtents16() argument
93 *overall = *cs; in XTextExtents16()
95 overall->ascent = max (overall->ascent, cs->ascent); in XTextExtents16()
96 overall->descent = max (overall->descent, cs->descent); in XTextExtents16()
97 overall->lbearing = min (overall->lbearing, in XTextExtents16()
98 overall->width + cs->lbearing); in XTextExtents16()
99 overall->rbearing = max (overall->rbearing, in XTextExtents16()
100 overall->width + cs->rbearing); in XTextExtents16()
101 overall->width += cs->width; in XTextExtents16()
110 overall->width = overall->ascent = overall->descent = in XTextExtents16()
[all …]
H A DTextExt.c81 register XCharStruct *overall) /* RETURN character information */ in XTextExtents() argument
118 *overall = *cs; in XTextExtents()
120 overall->ascent = max (overall->ascent, cs->ascent); in XTextExtents()
121 overall->descent = max (overall->descent, cs->descent); in XTextExtents()
122 overall->lbearing = min (overall->lbearing, in XTextExtents()
123 overall->width + cs->lbearing); in XTextExtents()
124 overall->rbearing = max (overall->rbearing, in XTextExtents()
125 overall->width + cs->rbearing); in XTextExtents()
126 overall->width += cs->width; in XTextExtents()
135 overall->width = overall->ascent = overall->descent = in XTextExtents()
[all …]
/dports/misc/p5-List-Compare/List-Compare-0.53/t/Test/
H A DListCompareSpecial.pm170 my @overall;
174 return \@overall;
180 my @overall;
184 return \@overall;
190 my @overall;
203 my @overall;
227 my @overall;
237 my @overall;
269 my @overall;
279 my @overall;
[all …]
/dports/graphics/py-pyglet/pyglet-1.5.21/tools/ffmpeg/
H A Dsummarize.py71 if len(overall.no_dbg_samples):
72 parts.append("Samples with no .dbg recording: %d" % len(overall.no_dbg_samples))
76 if len(overall.crashed_samples):
77 parts.append("Samples that always crashed: %d" % len(overall.crashed_samples))
81 n = overall.total_relevant_samples()
102 if len(overall.counters_non_perfect_play_samples):
105 for sample in sorted(overall.counters_non_perfect_play_samples.keys()):
106 counters = overall.counters_non_perfect_play_samples[sample]
113 for sample in overall.counters_non_perfect_play_samples.keys():
118 if len(overall.no_dbg_samples):
[all …]
/dports/math/py-Pyomo/Pyomo-6.1.2/pyomo/util/tests/
H A Dtest_model_size.py46 self.assertEqual(model_size.overall.variables, 44)
52 self.assertEqual(model_size.overall.constraints, 52)
54 self.assertEqual(model_size.overall.disjuncts, 12)
56 self.assertEqual(model_size.overall.disjunctions, 5)
73 self.assertEqual(model_size.overall.variables, 30)
81 self.assertEqual(model_size.overall.disjuncts, 18)
94 self.assertEqual(model_size.overall.variables, 2)
111 self.assertEqual(model_size.overall.variables, 4)
119 self.assertEqual(model_size.overall.disjuncts, 0)
128 self.assertEqual(model_size.overall.variables, 10)
[all …]
/dports/net/measurement-kit/measurement-kit-0.10.14/src/libmeasurement_kit/common/
H A Dparallel.hpp15 Callback<Error> cb, SharedPtr<Error> overall, in run() argument
21 if (error && *overall == NoError()) { in run()
23 overall->code = template_error.code; in run()
24 overall->reason = template_error.reason; in run()
27 overall->child_errors[idx] = error; in run()
30 cb(*overall); in run()
38 run(idx + parallelism, input, cb, overall, completed, parallelism); in run()
45 SharedPtr<Error> overall(new Error(NoError())); in parallel() local
47 cb(*overall); in parallel()
50 overall->child_errors.resize(input.size(), NoError()); in parallel()
[all …]
/dports/multimedia/xvid/xvidcore/src/utils/
H A Dtimer.c36 int64_t overall; member
90 tim.coding = tim.global = tim.overall = 0; in init_timer()
186 tim.overall += (read_counter() - tim.global); in stop_global_timer()
210 (float) (((float) ((float) tim.dct / (float) tim.overall)) * in write_timer()
213 (float) (((float) ((float) tim.quant / (float) tim.overall)) * in write_timer()
216 (float) (((float) ((float) tim.idct / (float) tim.overall)) * in write_timer()
225 (float) (((float) ((float) tim.comp / (float) tim.overall)) * in write_timer()
228 (float) (((float) ((float) tim.edges / (float) tim.overall)) * in write_timer()
231 (float) (((float) ((float) tim.inter / (float) tim.overall)) * in write_timer()
234 (float) (((float) ((float) tim.conv / (float) tim.overall)) * in write_timer()
[all …]
/dports/games/xrot/xrot/
H A Dtitle.c156 XCharStruct overall; in ti_draw() local
173 s_width = overall.rbearing - overall.lbearing; in ti_draw()
174 x = (WWIDTH - s_width) / 2 - overall.lbearing; in ti_draw()
180 s_width = overall.rbearing - overall.lbearing; in ti_draw()
181 x = (WWIDTH - s_width) / 2 - overall.lbearing; in ti_draw()
187 s_width = overall.rbearing - overall.lbearing; in ti_draw()
188 x = (WWIDTH - s_width) / 2 - overall.lbearing; in ti_draw()
235 XCharStruct overall; in show_keys() local
255 s_width = overall.rbearing - overall.lbearing; in show_keys()
256 x = (WWIDTH - s_width) / 2 - overall.lbearing; in show_keys()
[all …]
/dports/japanese/kinput2/kinput2-v3.1/lib/
H A Dxwstr.c316 XCharStruct *overall;
370 overall->lbearing = MIN(overall->lbearing,
372 overall->rbearing = MAX(overall->rbearing,
374 overall->width += oa.width;
375 overall->ascent = MAX(overall->ascent, oa.ascent);
376 overall->descent = MAX(overall->descent, oa.descent);
394 overall->lbearing = MIN(overall->lbearing,
396 overall->rbearing = MAX(overall->rbearing,
398 overall->width += oa.width;
399 overall->ascent = MAX(overall->ascent, oa.ascent);
[all …]
/dports/devel/liballium/liballium-0c9b50f/tests/
H A Dsput.h77 } overall; member
202 __sput.overall.checks += __sput.suite.checks; \
203 __sput.overall.ok += __sput.suite.ok; \
204 __sput.overall.nok += __sput.suite.nok; \
211 (__sput.overall.nok > 0 ? EXIT_FAILURE : EXIT_SUCCESS)
225 __sput.suite.nr = ++__sput.overall.suites; \
243 failp = __sput.overall.checks ? (float) \
244 ((__sput.overall.nok * 100.0) / __sput.overall.checks) : \
254 __sput.overall.checks, __sput.overall.suites, \
256 __sput.overall.ok, __sput.overall.nok, failp, \
/dports/graphics/xtexcad/xtexcad-2.4.1/
H A Dio_trans.c530 TeXObjExtent overall; in SaveToFile() local
551 GetOverallExtent(&overall); in SaveToFile()
561 overall.x_max - overall.x_min, overall.y_max - overall.y_min, in SaveToFile()
565 ObjSave(obj, file, overall.x_min, overall.y_max); in SaveToFile()
590 TeXObjExtent overall; in MoveBase() local
624 GetOverallExtent(&overall); in MoveBase()
630 x_off =((float) w - overall.x_max - overall.x_min)/2.0; in MoveBase()
631 y_off =((float) h - overall.y_max - overall.y_min)/2.0; in MoveBase()
646 x_off = xf - overall.x_min; in MoveBase()
698 overall->x_min = overall->y_min = LARGE_COORD; in GetOverallExtent()
[all …]
/dports/devel/R-cran-reshape2/reshape2/R/
H A Dcast.r128 overall <- id(rev(ids), drop = FALSE) functionVar
129 n <- attr(overall, "n")
132 if (any(duplicated(overall)) || !is.null(fun.aggregate)) {
138 ordered <- vaggregate(.value = value, .group = overall,
140 overall <- seq_len(n)
144 if (length(overall) < n) {
145 overall <- match(seq_len(n), overall, nomatch = NA)
147 overall <- order(overall)
150 ordered <- value[overall]
/dports/devel/R-cran-tidyr/tidyr/R/
H A Dspread.R84 overall <- id(list(col_id, row_id), drop = FALSE) functionVar
85 n <- attr(overall, "n")
87 if (anyDuplicated(overall)) {
88 groups <- split(seq_along(overall), overall)
103 if (length(overall) < n) {
104 overall <- match(seq_len(n), overall, nomatch = NA)
106 overall <- order(overall)
110 ordered <- value[overall]
/dports/math/xgraph/xgraph/
H A Ddialog.c350 Window overall; local
378 frame->win = overall;
407 xtb_br_new(overall, 2, fodstrs, found,
520 XSetNormalHints(disp, overall, &hints);
527 XDefineCursor(disp, overall, diag_cursor);
585 if (!overall.win) {
587 &okbtn, &overall);
600 XMoveWindow(disp, overall.win,
617 XRaiseWindow(disp, overall.win);
618 XMapWindow(disp, overall.win);
[all …]
/dports/x11/xscreensaver/xscreensaver-5.44/hacks/glx/
H A Dtexfont.c383 overall.ascent = MAX (overall.ascent, -y2 + c.ascent); in iterate_texture_string()
384 overall.descent = MAX (overall.descent, y2 + c.descent); in iterate_texture_string()
385 overall.lbearing = MIN (overall.lbearing, (x + c.lbearing)); in iterate_texture_string()
386 overall.rbearing = MAX (overall.rbearing, x + c.rbearing); in iterate_texture_string()
387 overall.width = MAX (overall.width, x + c.width); in iterate_texture_string()
538 width = overall.rbearing - overall.lbearing; in string_to_texture()
539 height = overall.ascent + overall.descent; in string_to_texture()
556 -overall.lbearing, overall.ascent, in string_to_texture()
653 memset (&overall, 0, sizeof(overall)); in print_texture_string()
703 tx1 = (overall.rbearing - overall.lbearing) / (GLfloat) tex_width; in print_texture_string()
[all …]
/dports/x11/libX11/libX11-1.7.2/src/xlibi18n/
H A DXDefaultOMIF.c223 ink->width = overall.rbearing - overall.lbearing; in set_fontset_extents()
224 ink->height = overall.ascent + overall.descent; in set_fontset_extents()
643 overall_ink->width = overall.rbearing - overall.lbearing; in _XmbDefaultTextExtents()
644 overall_ink->height = overall.ascent + overall.descent; in _XmbDefaultTextExtents()
717 overall = *cs; in _XmbDefaultTextPerCharExtents()
720 overall.ascent = max(overall.ascent, cs->ascent); in _XmbDefaultTextPerCharExtents()
721 overall.descent = max(overall.descent, cs->descent); in _XmbDefaultTextPerCharExtents()
722 overall.lbearing = min(overall.lbearing, overall.width + in _XmbDefaultTextPerCharExtents()
724 overall.rbearing = max(overall.rbearing, overall.width + in _XmbDefaultTextPerCharExtents()
734 overall_ink->width = overall.rbearing - overall.lbearing; in _XmbDefaultTextPerCharExtents()
[all …]
/dports/science/cdk/cdk-cdk-2.3/misc/extra/src/main/java/org/openscience/cdk/index/
H A DCASNumber.java60 boolean overall = true; in isValid()
67 overall = overall && matcher.matches(); in isValid()
78 overall = false; in isValid()
82 overall = overall && (digit == Integer.parseInt(part3)); in isValid()
86 return overall; in isValid()
/dports/devel/allegro5/allegro5-5.2.7.0/tools/x11/
H A Dxf2pcx.c81 XCharStruct overall; in main() local
209 &descent, &overall); in main()
210 width = overall.width; in main()
217 if (max_ascent < overall.ascent) in main()
218 max_ascent = overall.ascent; in main()
219 if (max_descent < overall.descent) in main()
220 max_descent = overall.descent; in main()
253 &descent, &overall); in main()
255 if (overall.width < 1) in main()
256 overall.width = 1; in main()
[all …]

12345678910>>...304