Searched refs:nrWords (Results 1 – 9 of 9) sorted by relevance
/dports/math/cado-nfs/cado-nfs-f4284e2391121b2bfb97bc4880b6273c7250dc2f/utils/ |
H A D | mod_mpz_new.hpp | 351 const size_t nrWords = mpz_size(m); in mul() local 355 t = new mp_limb_t[nrWords + 1]; in mul() 359 t[nrWords] = mpn_mul_1 (t, a.r, nrWords, b.r[nrWords - 1]); in mul() 360 if (t[nrWords] != 0) in mul() 361 mpn_tdiv_qr (Q, t, 0, t, nrWords + 1, m->_mp_d, nrWords); in mul() 364 mpn_copyd(t + 1, t, nrWords); in mul() 367 t[nrWords] += msw; in mul() 373 if (t[nrWords] != 0) in mul() 374 mpn_tdiv_qr (Q, t, 0, t, nrWords + 1, m->_mp_d, nrWords); in mul() 377 mpn_tdiv_qr (Q, t, 0, t, nrWords, m->_mp_d, nrWords); in mul() [all …]
|
H A D | mod_mpz_new.cpp | 37 void ModulusMPZ::pow (Residue &r, const Residue &b, const uint64_t *e, const size_t nrWords) const in pow() 40 E.set(e, nrWords); in pow() 65 void ModulusMPZ::pow2 (Residue &r, const uint64_t *e, const size_t nrWords) const in pow2() 68 E.set(e, nrWords); in pow2()
|
/dports/www/gohugo/hugo-0.91.2/vendor/github.com/jdkato/prose/tag/ |
H A D | aptag_test.go | 40 nrWords := 0 42 nrWords += len(tuple[0]) 50 assert.Equal(t, nrWords*iter, int(tagger.model.instances))
|
/dports/lang/maude/maude-2.7.1/src/FreeTheory/ |
H A D | freeDagNode.hh | 95 DagNode* internal[nrWords]; 97 Word hashCache[nrWords]; 145 if (nrArgs > nrWords) in FreeDagNode() 214 return (nrArgs > nrWords) ? external[i] : internal[i]; in getArgument() 220 return (symbol()->arity() > nrWords) ? external : const_cast<DagNode**>(&(internal[0])); in argArray()
|
H A D | freeDagNode.cc | 82 return hashCache[nrWords - 1].size; in getHashValue() 88 if (nrArgs != nrWords) in getHashValue() 90 hashCache[nrWords - 1].size = hashValue; in getHashValue()
|
/dports/lang/maude/maude-2.7.1/src/BuiltIn/ |
H A D | stringDagNode.cc | 48 Assert(sizeof(Rope) <= DagNode::nrWords * sizeof(MachineWord), in StringDagNode()
|
/dports/lang/maude/maude-2.7.1/src/Mixfix/ |
H A D | renaming.cc | 158 int nrWords = i->second.format.size(); in makeCanonicalName() local 159 for (int k = 0; k < nrWords; k++) in makeCanonicalName()
|
/dports/lang/maude/maude-2.7.1/src/Interface/ |
H A D | dagNode.hh | 193 nrWords = 3 // HACK enumerator
|
H A D | ChangeLog | 1871 * dagNode.hh (class DagNode): set nrWords = 3, ARENA_SIZE = 5460 2911 (class DagNode): nrWords changed to 4; 4121 * dagNode.hh: reduced nrWords to 3, added sortCode, changed
|