Home
last modified time | relevance | path

Searched refs:logA (Results 1 – 25 of 46) sorted by relevance

12

/dports/net/freerdp/freerdp-2.5.0/winpr/libwinpr/utils/test/
H A DTestWLog.c10 wLog* logA; in TestWLog() local
39 logA = WLog_Get("com.test.ChannelA"); in TestWLog()
42 WLog_SetLogLevel(logA, WLOG_INFO); in TestWLog()
45 WLog_Print(logA, WLOG_INFO, "this is a test"); in TestWLog()
46 WLog_Print(logA, WLOG_WARN, "this is a %dnd %s", 2, "test"); in TestWLog()
47 WLog_Print(logA, WLOG_ERROR, "this is an error"); in TestWLog()
48 WLog_Print(logA, WLOG_TRACE, "this is a trace output"); in TestWLog()
H A DTestWLogCallback.c80 wLog* logA; in TestWLogCallback() local
107 logA = WLog_Get(channels[0]); in TestWLogCallback()
110 WLog_SetLogLevel(logA, WLOG_TRACE); in TestWLogCallback()
113 WLog_Print(logA, messages[0].level, messages[0].msg); in TestWLogCallback()
115 WLog_Print(logA, messages[2].level, messages[2].msg, 2, "test"); in TestWLogCallback()
117 WLog_Print(logA, messages[4].level, messages[4].msg); in TestWLogCallback()
119 WLog_Print(logA, messages[6].level, messages[6].msg); in TestWLogCallback()
/dports/math/e-antic/e-antic-1.0.0-rc.13/libeantic/upstream/antic/nmod_poly/test/
H A Dt-log_series_monomial_ui.c32 nmod_poly_t A, logA, res; in main() local
43 nmod_poly_init(logA, mod); in main()
52 nmod_poly_log_series(logA, A, n); in main()
55 result = nmod_poly_equal(logA, res); in main()
63 flint_printf("log(A): "); nmod_poly_print(logA), flint_printf("\n\n"); in main()
69 nmod_poly_clear(logA); in main()
H A Dt-log_series.c33 nmod_poly_t A, B, AB, logA, logB, logAB, S; in main() local
44 nmod_poly_init(logA, mod); in main()
62 nmod_poly_log_series(logA, A, n); in main()
66 nmod_poly_add(S, logA, logB); in main()
76 flint_printf("log(A): "); nmod_poly_print(logA), flint_printf("\n\n"); in main()
86 nmod_poly_clear(logA); in main()
/dports/math/e-antic/flint2-ae7ec89/nmod_poly/test/
H A Dt-log_series_monomial_ui.c32 nmod_poly_t A, logA, res; in main() local
43 nmod_poly_init(logA, mod); in main()
52 nmod_poly_log_series(logA, A, n); in main()
55 result = nmod_poly_equal(logA, res); in main()
63 flint_printf("log(A): "); nmod_poly_print(logA), flint_printf("\n\n"); in main()
69 nmod_poly_clear(logA); in main()
H A Dt-log_series.c33 nmod_poly_t A, B, AB, logA, logB, logAB, S; in main() local
44 nmod_poly_init(logA, mod); in main()
62 nmod_poly_log_series(logA, A, n); in main()
66 nmod_poly_add(S, logA, logB); in main()
76 flint_printf("log(A): "); nmod_poly_print(logA), flint_printf("\n\n"); in main()
86 nmod_poly_clear(logA); in main()
/dports/math/flint2/flint-2.8.4/nmod_poly/test/
H A Dt-log_series_monomial_ui.c32 nmod_poly_t A, logA, res; in main() local
43 nmod_poly_init(logA, mod); in main()
52 nmod_poly_log_series(logA, A, n); in main()
55 result = nmod_poly_equal(logA, res); in main()
63 flint_printf("log(A): "); nmod_poly_print(logA), flint_printf("\n\n"); in main()
69 nmod_poly_clear(logA); in main()
H A Dt-log_series.c33 nmod_poly_t A, B, AB, logA, logB, logAB, S; in main() local
44 nmod_poly_init(logA, mod); in main()
62 nmod_poly_log_series(logA, A, n); in main()
66 nmod_poly_add(S, logA, logB); in main()
76 flint_printf("log(A): "); nmod_poly_print(logA), flint_printf("\n\n"); in main()
86 nmod_poly_clear(logA); in main()
/dports/security/snowflake-tor/snowflake-ead5a960d7fa19dc890ccbfc0765c5ab6629eaa9/vendor/github.com/klauspost/reedsolomon/
H A Dgentables.go91 logA := int(logTable[a])
93 result[v] = expTable[logA+logB]
106 logA := int(logTable[a])
108 result[a][b] = expTable[logA+logB]
119 logA := int(logTable[a])
121 result = int(expTable[logA+logB])
H A Dgalois.go876 logA := int(logTable[a])
878 logResult := logA - logB
896 logA := logTable[a]
897 logResult := int(logA) * n
/dports/math/cado-nfs/cado-nfs-f4284e2391121b2bfb97bc4880b6273c7250dc2f/sieve/
H A Ddisplay-lattice-adjust.sage37 logA=0
64 def graphics_common(f, qbits, lpb, logA):
69 print "logA=",logA
78 K=logA//2 + ceil(qbits/2) + 1
170 J=2^(logA-logI)
184 # J=2^(logA-logI)
219 global logA
224 if logA == 0:
226 print("# Set logA=%d"%logA)
236 if logA == 0:
[all …]
H A Dlas-norms.hpp120 int logA; member
134 logA = conf.logA;
147 logA = conf.logA; in sieve_range_adjust()
H A Dlas-norms.cpp879 logI = (logA+1)/2; in sieve_info_update_norm_data_Jmax()
884 const double B = (1 << (logA - logI))*sqrt(q/skew); in sieve_info_update_norm_data_Jmax()
885 double Jmax = (1 << (logA - logI)); in sieve_info_update_norm_data_Jmax()
973 double X = 1UL << ((logA-logA/2) - squeeze); in estimate_yield_in_sieve_area()
974 double Y = 1UL << (logA/2 + squeeze + 1); in estimate_yield_in_sieve_area()
1011 sum *= 1UL << logA; in estimate_yield_in_sieve_area()
1119 logI = ((logA-logA/2) - best_squeeze); in adjust_with_estimated_yield()
1121 J = 1 << (logA/2 + best_squeeze); in adjust_with_estimated_yield()
1206 uint32_t I = 1UL << ((logA+1)/2); in sieve_info_adjust_IJ()
1207 J = 1UL << ((logA-1)/2); in sieve_info_adjust_IJ()
[all …]
H A Dlas-siever-config.cpp90 complete &= param_list_parse_int (pl, "A", &(sc.logA)); in parse_default()
98 sc.logA = 2 * I - 1; in parse_default()
99 verbose_output_print(0, 1, "# Interpreting -I %d as meaning -A %d\n", I, sc.logA); in parse_default()
341 sc.logA = 2*z-1; in siever_config_pool()
343 sc.logA = z; in siever_config_pool()
/dports/biology/p5-BioPerl/BioPerl-1.7.7/lib/Bio/Matrix/PSM/
H A DSiteMatrix.pm222 $self->{logA} = $input{lA};
296 if ((!defined($self->{logA})) && ($input{model})) {
383 my $lA=${$self->{logA}}[$pos];
713 return @{$self->{logA}} if (($base eq 'A') && ($self->{logA}));
935 if ($base eq 'A') {@prob= @{$self->{logA}} unless (!defined($self->{logA})); last BASE; }
960 return unless ($self->{logA});
962 …which are exactly my size for $seq, my width is $width\n") unless (length($seq)==@{$self->{logA}});
/dports/math/cado-nfs/cado-nfs-f4284e2391121b2bfb97bc4880b6273c7250dc2f/tests/sieve/
H A Dtest-smallsieve.cpp690 int logA; member
692 bench_base(int logB, int logI, int logA) : logI(logI), logA(logA) { in bench_base()
705 int Nmax = 1 << (logA - LOG_BUCKET_REGION); in test()
826 int Nmax = 1 << (logA - LOG_BUCKET_REGION); in test_correctness()
843 Nmax, logA, LOG_BUCKET_REGION, logI); in test_correctness()
940 int logA = 0; in main() local
962 param_list_parse_int(pl, "A", &logA); in main()
970 if (!logA) logA = 2*logI-1; in main()
997 bench_base bbase(LOG_BUCKET_REGION, logI, logA); in main()
1071 bench_base bbase(LOG_BUCKET_REGION, logI, logA); in main()
/dports/sysutils/helmfile/helmfile-0.138.7/vendor/go.mozilla.org/sops/v3/shamir/
H A Dshamir.go106 logA := logTable[a]
108 diff := (int(logA) - int(logB)) % 255
/dports/science/teem/teem-1.11.0-src/src/ten/
H A Dpath.c184 double logA[7], logB[7], tmp1[7], tmp2[7], logMean[7], in tenInterpTwo_d() local
204 tenLogSingle_d(logA, tenA); in tenInterpTwo_d()
206 TEN_T_LERP(logMean, aa, logA, logB); in tenInterpTwo_d()
238 tenLogSingle_d(logA, tenA); in tenInterpTwo_d()
240 TEN_T_LERP(logMean, aa, logA, logB); /* "B" = logMean */ in tenInterpTwo_d()
905 double ret, diff[7], logA[7], logB[7], invA[7], det, siA[7], in tenInterpDistanceTwo_d() local
920 tenLogSingle_d(logA, tenA); in tenInterpDistanceTwo_d()
922 TEN_T_SUB(diff, logA, logB); in tenInterpDistanceTwo_d()
/dports/emulators/mess/mame-mame0226/src/lib/netlist/examples/
H A Dbjt_eb_pnp.c31 LOG(logA, clk)
/dports/emulators/mame/mame-mame0226/src/lib/netlist/examples/
H A Dbjt_eb_pnp.c31 LOG(logA, clk)
/dports/graphics/mirtk/MIRTK-2.0.0-122-g38210fa/Modules/Transformation/include/mirtk/
H A DBSplineFreeFormTransformationSV.h493 EvaluateGlobalSVFFD(const Matrix &logA, BaseImage *output) in EvaluateGlobalSVFFD() argument
495 _LogA(logA), _Output(output) in EvaluateGlobalSVFFD()
532 EvaluateGlobalSVFFD3D(const Matrix &logA, BaseImage *output) in EvaluateGlobalSVFFD3D() argument
534 _LogA (logA), in EvaluateGlobalSVFFD3D()
/dports/misc/vxl/vxl-3.3.2/contrib/brl/bseg/bvxm/breg3d/
H A Dbreg3d_ekf_camera_optimizer.cxx500 bool breg3d_ekf_camera_optimizer::logm_approx(vnl_matrix<double> const& A, vnl_matrix<double> &logA in logm_approx() argument
510 logA.set_size(nr,nr); in logm_approx()
511 logA.fill(0.0); in logm_approx()
532 logA += term; in logm_approx()
H A Dbreg3d_ekf_camera_optimizer.h68 bool logm_approx(vnl_matrix<double> const& A, vnl_matrix<double> &logA, double tol = 1e-12);
/dports/java/jfreechart/jfreechart-1.0.17/source/org/jfree/chart/axis/
H A DLogAxis.java818 double logA = log1 + length * (1 - upperPercent); in zoomRange() local
820 adjusted = new Range(calculateValue(logA), calculateValue(logB)); in zoomRange()
823 double logA = log1 + length * lowerPercent; in zoomRange() local
825 adjusted = new Range(calculateValue(logA), calculateValue(logB)); in zoomRange()
/dports/lang/elm/compiler-0.19.1/_cabal_deps/snap-server-1.1.1.2/src/Snap/Http/
H A DServer.hs133 logA :: Maybe (ByteString -> IO ())
138 logA alog = maybe (\_ _ _ -> return $! ()) logA' alog function
167 Ty.setLogAccess (logA alog) .

12