Home
last modified time | relevance | path

Searched refs:nfl (Results 1 – 25 of 671) sorted by relevance

12345678910>>...27

/dports/graphics/sane-epkowa/iscan-2.11.0/non-free/
H A DMakefile.am59 @list="$(NON_FREE_SOLIBS)"; for nfl in $$list; do \
60 echo installing $${nfl} in $(libdir)/$${nfl}...; \
61 $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $(srcdir)/$${nfl} \
62 $(DESTDIR)$(libdir)/$${nfl}.$(V_MAJOR).$(V_MINOR).$(V_REV); \
64 && ln -fs $${nfl}.$(V_MAJOR).$(V_MINOR).$(V_REV) $${nfl}.$(V_MAJOR)); \
66 && ln -fs $${nfl}.$(V_MAJOR).$(V_MINOR).$(V_REV) $${nfl}); \
70 @list="$(NON_FREE_SOLIBS)"; for nfl in $$list; do \
71 rm -f $(DESTDIR)$(libdir)/$${nfl}; \
72 rm -f $(DESTDIR)$(libdir)/$${nfl}.$(V_MAJOR); \
73 rm -f $(DESTDIR)$(libdir)/$${nfl}.$(V_MAJOR).$(V_MINOR).$(V_REV); \
H A DMakefile.in415 @ENABLE_FRONTEND_TRUE@ @list="$(NON_FREE_SOLIBS)"; for nfl in $$list; do \
416 @ENABLE_FRONTEND_TRUE@ echo installing $${nfl} in $(libdir)/$${nfl}...; \
417 @ENABLE_FRONTEND_TRUE@ $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $(srcdir)/$${nfl} \
418 @ENABLE_FRONTEND_TRUE@ $(DESTDIR)$(libdir)/$${nfl}.$(V_MAJOR).$(V_MINOR).$(V_REV); \
420 @ENABLE_FRONTEND_TRUE@ && ln -fs $${nfl}.$(V_MAJOR).$(V_MINOR).$(V_REV) $${nfl}.$(V_MAJOR)); \
422 @ENABLE_FRONTEND_TRUE@ && ln -fs $${nfl}.$(V_MAJOR).$(V_MINOR).$(V_REV) $${nfl}); \
426 @ENABLE_FRONTEND_TRUE@ @list="$(NON_FREE_SOLIBS)"; for nfl in $$list; do \
427 @ENABLE_FRONTEND_TRUE@ rm -f $(DESTDIR)$(libdir)/$${nfl}; \
428 @ENABLE_FRONTEND_TRUE@ rm -f $(DESTDIR)$(libdir)/$${nfl}.$(V_MAJOR); \
429 @ENABLE_FRONTEND_TRUE@ rm -f $(DESTDIR)$(libdir)/$${nfl}.$(V_MAJOR).$(V_MINOR).$(V_REV); \
/dports/security/nflib/NFLlib-1.0.0-23-g5cf40ed/tests/
H A Dnfllib_demo_main_op.cpp64 std::fill(resa, resa + REPETITIONS, nfl::uniform()); in test_mulmod_shoup()
68 resd[i] = nfl::compute_shoup(resb[i]); in test_mulmod_shoup()
73 resc[i] = nfl::shoup(resa[i] * resb[i], resd[i]); in test_mulmod_shoup()
79 …ptmp = nfl::ops::make_op<nfl::ops::mulmod_shoup<typename P::value_type, nfl::simd::serial>>(resa[i… in test_mulmod_shoup()
249 resd[i] = nfl::compute_shoup(resb[i]); in run()
279 sprime = nfl::compute_shoup(s); in run()
282 pka = nfl::uniform(); in run()
283 pkb = nfl::gaussian<uint8_t, T, 2>(&g_prng, 2); in run()
287 pkb = pkb + nfl::shoup(pka * s, sprime); in run()
288 pkaprime = nfl::compute_shoup(pka); in run()
[all …]
H A Dnfllib_demo_main_func.cpp64 std::fill(resa, resa + REPETITIONS, nfl::uniform()); in run()
65 std::fill(resb, resb + REPETITIONS, nfl::uniform()); in run()
69 nfl::add(resa[i], resa[i], resb[i]); in run()
76 std::fill(resa, resa + REPETITIONS, nfl::uniform()); in run()
77 std::fill(resb, resb + REPETITIONS, nfl::uniform()); in run()
81 nfl::add(resc[i], resa[i], resb[i]); in run()
88 std::fill(resa, resa + REPETITIONS, nfl::uniform()); in run()
89 std::fill(resb, resb + REPETITIONS, nfl::uniform()); in run()
93 nfl::sub(resc[i], resa[i], resb[i]); in run()
100 std::fill(resa, resa + REPETITIONS, nfl::uniform()); in run()
[all …]
H A Dpoly_p.cpp7 using poly_p = nfl::poly_p_from_modulus<T, degree, modulus>; in run()
8 using poly_t = nfl::poly_from_modulus<T, degree, modulus>; in run()
13 poly_p a{nfl::uniform()}; in run()
14 poly_p b{nfl::uniform()}; in run()
43 poly_p bshoup = nfl::compute_shoup(b); in run()
44 poly_t& Bshoup = *alloc_aligned<poly_t, 32>(1, nfl::compute_shoup(B)); in run()
47 poly_p mul2_p = nfl::shoup(a * b, bshoup); in run()
48 poly_t& mul2 = *alloc_aligned<poly_t, 32>(1, nfl::shoup(A * B, Bshoup)); in run()
H A Dnfl_neq.cpp10 using poly_t = nfl::poly_from_modulus<T, degree, modulus>; in run()
12 poly_t* resa = alloc_aligned<poly_t, 32>(ITERATIONS, nfl::uniform()); in run()
13 poly_t* resb = alloc_aligned<poly_t, 32>(ITERATIONS, nfl::uniform()); in run()
31 using poly_p = nfl::poly_p_from_modulus<T, degree, modulus>; in run_p()
36 resa[i] = nfl::uniform(); in run_p()
37 resb[i] = nfl::uniform(); in run_p()
H A Dnfl_eq.cpp9 using poly_t = nfl::poly_from_modulus<T, degree, modulus>; in run()
11 poly_t* resa = alloc_aligned<poly_t, 32>(ITERATIONS, nfl::uniform()); in run()
26 using poly_p = nfl::poly_p_from_modulus<T, degree, modulus>; in run_p()
30 resa[i] = nfl::uniform(); in run_p()
H A Dpoly_serialize_manually.cpp8 using poly_t = nfl::poly_from_modulus<T, degree, modulus>; in run()
15 poly_t& p0 = *alloc_aligned<poly_t, 32>(1, nfl::uniform()); in run()
44 using poly_p = nfl::poly_p_from_modulus<T, degree, modulus>; in run_p()
51 poly_p* p0 = new poly_p(nfl::uniform()); in run_p()
H A Dpoly_serialize_cereal.cpp9 using poly_t = nfl::poly_from_modulus<T, degree, modulus>; in run()
20 poly_t& p0 = *alloc_aligned<poly_t, 32>(1, nfl::uniform()); in run()
49 using poly_p = nfl::poly_p_from_modulus<T, degree, modulus>; in run_p()
60 poly_p* p0 = new poly_p(nfl::uniform()); in run_p()
H A Dprng_demo_main.cpp10 nfl::FastGaussianNoise<uint8_t, T, 2> rng(3.19, 128, 1UL << 19, 5.25, true); in main()
17 uint64_t start = nfl::rdtsc(); in main()
19 uint64_t stop = nfl::rdtsc(); in main()
/dports/shells/ast-ksh/ast-ksh93v/src/lib/libvcodex/Vcmisc/
H A Dvcnetflow.c121 Netflow_t* nfl; in v9whole()
250 Netflow_t *nfl; local
306 for(rc = dtfirst(nfl->rcdt); rc; rc = dtnext(nfl->rcdt, rc))
348 for(rc = dtfirst(nfl->rcdt); rc; rc = dtnext(nfl->rcdt, rc))
710 Netflow_t *nfl; local
758 Netflow_t *nfl; local
849 Netflow_t *nfl; local
865 if(!(nfl->rcdt = dtopen(&nfl->disc, Dtoset)) )
876 if(nfl->tbl)
878 if(nfl->bwt)
[all …]
/dports/science/afni/afni-AFNI_21.3.16/src/
H A Dnimel.c5 int nfl , ii , ct ; in main() local
15 nfl = strtol( argv[1] , NULL , 10) ; in main()
16 if( nfl < 1 ) nfl = 100000 ; in main()
23 nel = NI_new_data_element( "Tester" , nfl ) ; in main()
24 flar = (float *)malloc(sizeof(float)*nfl) ; in main()
25 for( ii=0 ; ii < nfl ; ii++ ) flar[ii] = (float)ii ; in main()
40 fprintf(stderr,"Wrote %d floats in %d ms\n",nfl,ct) ; in main()
/dports/security/nflib/NFLlib-1.0.0-23-g5cf40ed/include/nfl/
H A Dops.hpp16 namespace nfl { namespace
20 auto SYM(nfl::poly<T, Degree, NbModuli> const& op) -> decltype(ops::make_op<ops::NAME<T, CC_SIMD>>(…
24 …uto SYM(nfl::ops::expr<Op, Args...> const& op) -> decltype(ops::make_op<ops::NAME<typename nfl::op…
25 …return ops::make_op<ops::NAME<typename nfl::ops::expr<Op, Args...>::value_type, typename nfl::ops:…
30 auto SYM(nfl::poly<T, Degree, NbModuli> const& op0, nfl::poly<T, Degree, NbModuli> const& op1) -> d…
34nfl::poly<T, Degree, NbModuli> const& op0, nfl::ops::expr<Op, Args...> const& op1) -> decltype(ops…
35 …return ops::make_op<ops::NAME<typename nfl::ops::expr<Op, Args...>::value_type, typename nfl::ops:…
38nfl::ops::expr<Op, Args...> const& op0, nfl::poly<T, Degree, NbModuli> const& op1) -> decltype(ops…
39 …return ops::make_op<ops::NAME<typename nfl::ops::expr<Op, Args...>::value_type, typename nfl::ops:…
42 auto SYM(nfl::ops::expr<Op0, Args0...> const& op0, nfl::ops::expr<Op1, Args1...> const& op1) -> de…
[all …]
H A Dpoly_p.hpp8 namespace nfl { namespace
214 std::ostream& operator<<(std::ostream& os, nfl::poly_p<T, Degree, NbModuli> const& p) in operator <<()
237 auto SYM(nfl::poly_p<T, Degree, NbModuli> const& op0, nfl::poly_p<T, Degree, NbModuli> const& op1) …
241nfl::poly_p<T, Degree, NbModuli> const& op0, nfl::ops::expr<Op, Args...> const& op1) -> decltype(o…
242 …return ops::make_op<ops::NAME<typename nfl::ops::expr<Op, Args...>::value_type, typename nfl::ops:…
245nfl::ops::expr<Op, Args...> const& op0, nfl::poly_p<T, Degree, NbModuli> const& op1) -> decltype(o…
246 …return ops::make_op<ops::NAME<typename nfl::ops::expr<Op, Args...>::value_type, typename nfl::ops:…
H A Darch.hpp9 #define CC_SIMD nfl::simd::avx2
11 #define CC_SIMD nfl::simd::sse
17 #define CC_SIMD nfl::simd::serial
/dports/science/nwchem-data/nwchem-7.0.2-release/src/ccsd/
H A Dccsd_idx1.F1 subroutine ccsd_idx1(snsi,sisn,eri1,eri2,t1ao,nfj,nfl,nocc, argument
13 double precision, intent(inout) :: snsi(nbf,nfj,nfl,nocc)
14 double precision, intent(inout) :: sisn(nbf,nfl,nfj,nocc)
18 integer, intent(in) :: nfj,nfl,nocc,nbf,idim,nsh
50 & nfl,nocc,nbf,ilo,ihi,klo,khi,factor,
52 ict=ict+nfk*nfl*nfi*nfj
65 double precision, intent(inout) :: snsi(nbf,nfj,nfl,nocc)
66 double precision, intent(inout) :: sisn(nbf,nfl,nfj,nocc)
71 integer, intent(in) :: nfj,nfl,nocc,nbf
84 do l=1,nfl
[all …]
H A Dccsd_t2pm.F419 nfl=shinf(lsh,1)
423 call dcopy(lnoo*nfj*nfl,0.0d00,0,scrb,1)
424 call dcopy(nfj*nfl*nbf*nocc,0.0d00,0,snsi,1)
425 call dcopy(nfj*nfl*nbf*nocc,0.0d00,0,sisn,1)
472 & nfj,nfl,ncor,nocc,nact,nbf,
522 nfl=shinf(lsh,1)
526 call dcopy(lnoo*nfj*nfl,0.0d00,0,scrb,1)
527 call dcopy(nfj*nfl*nbf*nocc,0.0d00,0,snsi,1)
528 call dcopy(nfj*nfl*nbf*nocc,0.0d00,0,sisn,1)
568 lnijkl=nfi*nfj*nfk*nfl
[all …]
/dports/science/nwchem/nwchem-7b21660b82ebd85ef659f6fba7e1e73433b0bd0a/src/ccsd/
H A Dccsd_idx1.F1 subroutine ccsd_idx1(snsi,sisn,eri1,eri2,t1ao,nfj,nfl,nocc, argument
13 integer, intent(in) :: nfj,nfl,nocc,nbf,idim,nsh
14 double precision, intent(inout) :: snsi(nbf,nfj,nfl,nocc)
15 double precision, intent(inout) :: sisn(nbf,nfl,nfj,nocc)
50 & nfl,nocc,nbf,ilo,ihi,klo,khi,factor,
52 ict=ict+nfk*nfl*nfi*nfj
65 integer, intent(in) :: nfj,nfl,nocc,nbf
67 double precision, intent(inout) :: snsi(nbf,nfj,nfl,nocc)
68 double precision, intent(inout) :: sisn(nbf,nfl,nfj,nocc)
84 do l=1,nfl
[all …]
H A Dccsd_t2pm.F419 nfl=shinf(lsh,1)
423 call dcopy(lnoo*nfj*nfl,0.0d00,0,scrb,1)
424 call dcopy(nfj*nfl*nbf*nocc,0.0d00,0,snsi,1)
425 call dcopy(nfj*nfl*nbf*nocc,0.0d00,0,sisn,1)
472 & nfj,nfl,ncor,nocc,nact,nbf,
522 nfl=shinf(lsh,1)
526 call dcopy(lnoo*nfj*nfl,0.0d00,0,scrb,1)
527 call dcopy(nfj*nfl*nbf*nocc,0.0d00,0,snsi,1)
528 call dcopy(nfj*nfl*nbf*nocc,0.0d00,0,sisn,1)
568 lnijkl=nfi*nfj*nfk*nfl
[all …]
/dports/www/py-protego/Protego-0.1.16/tests/test_data/
H A Dwww.nfl.com13 Sitemap: http://www.nfl.com/sitemap.xml
14 Sitemap: http://www.nfl.com/content/static/config/google/sitemap-watchgamesonline.xml
15 Sitemap: http://www.nfl.com/sitemap/news.xml
16 Sitemap: http://www.nfl.com/videositemap.xml?domain=www.nfl.com
17 Sitemap: https://www.nfl.com/util/sitemap.xml
/dports/astro/nightfall/nightfall-1.92/
H A DMakefile.in530 echo '$(mkinstalldirs) $(DESTDIR)$(docdir)/$$nfl'; \
531 $(mkinstalldirs) $(DESTDIR)$(docdir)/$$nfl; \
532 echo '$(mkinstalldirs) $(DESTDIR)$(docdir)/$$nfl/edu'; \
533 $(mkinstalldirs) $(DESTDIR)$(docdir)/$$nfl/edu; \
535 if test -f $(Nightfall_docdir)/$$nfl/$$p; then \
537 $(INSTALL_DATA) $(Nightfall_docdir)/$$nfl/$$p $(DESTDIR)$(docdir)/$$nfl/$$p; \
542 if test -f $(Nightfall_docdir)/$$nfl/edu/$$p; then \
544 $(INSTALL_DATA) $(Nightfall_docdir)/$$nfl/edu/$$p $(DESTDIR)$(docdir)/$$nfl/edu/$$p; \
598 echo "rm -f $(DESTDIR)$(docdir)/$$nfl/$$p"; \
599 rm -f $(DESTDIR)$(docdir)/$$nfl/$$p; \
[all …]
/dports/games/cgoban/cgoban-1.9.14/wmslib/src/but/
H A Di_general.c50 int nfl; in but_init() local
71 nfl &= ~BUT_KEYACTIVE; in but_init()
72 but_newFlags(win->keyBut, nfl); in but_init()
78 nfl = but->flags; in but_init()
80 but_newFlags(but, nfl); in but_init()
209 if (!(nfl & BUT_PRESSABLE)) { in but_newFlags()
215 but->flags = nfl; in but_newFlags()
227 nfl &= ~BUT_KEYACTIVE; in but_newFlags()
236 nfl |= BUT_KEYACTIVE; in but_newFlags()
262 if (nfl != oldflags) { in but_newFlags()
[all …]
/dports/cad/feappv/feappv-4.1i/plot/
H A Drprint.f2 subroutine rprint(dr,ndf,nfl) argument
32 integer ndf,nfl, i,n local
76 nfl = -abs(nfl)
/dports/cad/verilator/verilator-4.216/src/
H A DV3Expand.cpp358 FileLine* const nfl = nodep->fileline(); in visit() local
387 nfl, in visit()
390 new AstEq{nfl, new AstConst{nfl, 0}, newSelBitBit(nodep->lsbp())}, in visit()
392 new AstConst{nfl, zero}, in visit()
410 nfl, in visit()
412 new AstEq{nfl, new AstConst{nfl, 0}, newSelBitBit(nodep->lsbp())}, in visit()
421 if (midp) newp = new AstOr{nfl, midp, newp}; in visit()
422 if (hip) newp = new AstOr{nfl, hip, newp}; in visit()
452 FileLine* const nfl = nodep->fileline(); in expandWide() local
486 FileLine* const nfl = nodep->fileline(); in expandLhs() local
[all …]
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/clang/test/Modules/
H A Dcxx-decls.cpp33 int use_name_for_linkage(NameForLinkage &nfl) { in use_name_for_linkage() argument
34 return nfl.n + nfl.m; in use_name_for_linkage()

12345678910>>...27