Home
last modified time | relevance | path

Searched refs:bdigits (Results 1 – 21 of 21) sorted by relevance

/dports/cad/irsim/irsim-9.7.110/analyzer/
H A Dbase.c28 short bdigits; local
38 bdigits = 1;
41 bdigits = 2;
44 bdigits = 3;
47 bdigits = 4;
50 bdigits = 5;
53 bdigits = 6;
60 if (IsVector(trace) && trace->bdigit != bdigits) {
61 trace->bdigit = bdigits;
/dports/textproc/zorba/zorba-2.7.0/src/zorbatypes/mapm/
H A Dmapm_add.c62 int j, carry, sign, aexp, bexp, adigits, bdigits; in m_apm_add() local
131 bdigits = M_work2->m_apm_datalength; in m_apm_add()
133 if (adigits >= bdigits) in m_apm_add()
136 j = (bdigits + 1) >> 1; in m_apm_add()
188 borrow, adigits, bdigits; in m_apm_subtract() local
261 bdigits = M_work2->m_apm_datalength; in m_apm_subtract()
263 if (adigits > bdigits) in m_apm_subtract()
266 if (adigits < bdigits) in m_apm_subtract()
267 M_apm_pad(M_work1, bdigits); in m_apm_subtract()
/dports/databases/pgadmin3/pgadmin3-1.22.2/pgadmin/pgscript/utilities/m_apm/
H A Dmapm_add.cpp48 int j, carry, sign, aexp, bexp, adigits, bdigits; in m_apm_add() local
117 bdigits = M_work2->m_apm_datalength; in m_apm_add()
119 if (adigits >= bdigits) in m_apm_add()
122 j = (bdigits + 1) >> 1; in m_apm_add()
174 borrow, adigits, bdigits; in m_apm_subtract() local
247 bdigits = M_work2->m_apm_datalength; in m_apm_subtract()
249 if (adigits > bdigits) in m_apm_subtract()
252 if (adigits < bdigits) in m_apm_subtract()
253 M_apm_pad(M_work1, bdigits); in m_apm_subtract()
/dports/games/yadex/yadex-1.7.0/src/
H A Dcolour1.cc51 int bdigits; in getcolour() local
70 for (b = 0, bdigits = 0; (digit = hextoi (s[i])) >= 0; i++, bdigits++) in getcolour()
78 globaldigits = y_max (globaldigits, bdigits); in getcolour()
/dports/devel/py-mypy/mypy-0.910/mypyc/lib-rt/
H A Dint_ops.c355 digit *bdigits = GetIntDigits(b, &bsize, bbuf); in BitwiseLongOp() local
366 adigits = bdigits; in BitwiseLongOp()
367 bdigits = tmp; in BitwiseLongOp()
379 r->ob_digit[i] = adigits[i] & bdigits[i]; in BitwiseLongOp()
384 r->ob_digit[i] = adigits[i] | bdigits[i]; in BitwiseLongOp()
388 r->ob_digit[i] = adigits[i] ^ bdigits[i]; in BitwiseLongOp()
392 r->ob_digit[i] = bdigits[i]; in BitwiseLongOp()
/dports/textproc/xmlroff/xmlroff-0.6.3/testing/
H A Dmake-testsuite.pl162 $b =~ m/(\d+)\.(xml|fo)/ and $bprefix = $` and $bdigits = $1 and
163 $aprefix eq $bprefix and $adigits <=> $bdigits
H A Dmake-fop-testsuite.pl173 $b =~ m/(\d+)\.xml/ and $bprefix = $` and $bdigits = $1 and
174 $aprefix eq $bprefix and $adigits <=> $bdigits
/dports/textproc/libfo/xmlroff-0.6.3/testing/
H A Dmake-testsuite.pl162 $b =~ m/(\d+)\.(xml|fo)/ and $bprefix = $` and $bdigits = $1 and
163 $aprefix eq $bprefix and $adigits <=> $bdigits
H A Dmake-fop-testsuite.pl173 $b =~ m/(\d+)\.xml/ and $bprefix = $` and $bdigits = $1 and
174 $aprefix eq $bprefix and $adigits <=> $bdigits
/dports/math/py-mpmath/mpmath-1.2.1/mpmath/libmp/
H A Dlibintmath.py131 def bin_to_radix(x, xbits, base, bdigits): argument
134 return x * (MPZ(base)**bdigits) >> xbits
/dports/lang/ruby26/ruby-2.6.9/
H A Dbignum.c1098 bary_unpack_internal(BDIGIT *bdigits, size_t num_bdigits, const void *words, size_t numwords, size_… in bary_unpack_internal() argument
1105 dp = bdigits; in bary_unpack_internal()
1271 (bdigits[num_bdigits-1] >> (BITSPERDIG - nlp_bits - 1))) { in bary_unpack_internal()
1272 bdigits[num_bdigits-1] |= BIGLO(BDIGMAX << (BITSPERDIG - nlp_bits)); in bary_unpack_internal()
1281 sign = bary_zero_p(bdigits, num_bdigits) ? -2 : -1; in bary_unpack_internal()
1284 if (num_bdigits != 0 && BDIGIT_MSB(bdigits[num_bdigits-1])) in bary_unpack_internal()
1291 bary_2comp(bdigits, num_bdigits); in bary_unpack_internal()
1299 bary_unpack(BDIGIT *bdigits, size_t num_bdigits, const void *words, size_t numwords, size_t wordsiz… in bary_unpack() argument
1320 …sign = bary_unpack_internal(bdigits, num_bdigits0, words, numwords, wordsize, nails, flags, nlp_bi… in bary_unpack()
1323 BDIGITS_ZERO(bdigits + num_bdigits0, num_bdigits - num_bdigits0); in bary_unpack()
[all …]
/dports/games/libretro-scummvm/scummvm-7b1e929/backends/platform/libretro/deps/libpng/contrib/tools/
H A Dpngfix.c363 uarb_cmp(uarb a, int adigits, uarb b, int bdigits) in uarb_cmp() argument
366 if (adigits < bdigits) in uarb_cmp()
369 if (adigits > bdigits) in uarb_cmp()
/dports/emulators/mgba/mgba-0.9.2/src/third-party/libpng/contrib/tools/
H A Dpngfix.c362 uarb_cmp(uarb a, int adigits, uarb b, int bdigits) in uarb_cmp() argument
365 if (adigits < bdigits) in uarb_cmp()
368 if (adigits > bdigits) in uarb_cmp()
/dports/games/SRB2/SRB2-SRB2_release_2.2.9/libs/libpng-src/contrib/tools/
H A Dpngfix.c362 uarb_cmp(uarb a, int adigits, uarb b, int bdigits) in uarb_cmp() argument
365 if (adigits < bdigits) in uarb_cmp()
368 if (adigits > bdigits) in uarb_cmp()
/dports/graphics/optipng/optipng-0.7.7/src/libpng/contrib/tools/
H A Dpngfix.c362 uarb_cmp(uarb a, int adigits, uarb b, int bdigits) in uarb_cmp() argument
365 if (adigits < bdigits) in uarb_cmp()
368 if (adigits > bdigits) in uarb_cmp()
/dports/multimedia/opentoonz/opentoonz-1.5.0/thirdparty/libpng-1.6.21/contrib/tools/
H A Dpngfix.c363 uarb_cmp(uarb a, int adigits, uarb b, int bdigits) in uarb_cmp() argument
366 if (adigits < bdigits) in uarb_cmp()
369 if (adigits > bdigits) in uarb_cmp()
/dports/games/libretro-mgba/mgba-6186d45/src/third-party/libpng/contrib/tools/
H A Dpngfix.c362 uarb_cmp(uarb a, int adigits, uarb b, int bdigits) in uarb_cmp() argument
365 if (adigits < bdigits) in uarb_cmp()
368 if (adigits > bdigits) in uarb_cmp()
/dports/graphics/png/libpng-1.6.37/contrib/tools/
H A Dpngfix.c362 uarb_cmp(uarb a, int adigits, uarb b, int bdigits) in uarb_cmp() argument
365 if (adigits < bdigits) in uarb_cmp()
368 if (adigits > bdigits) in uarb_cmp()
/dports/net-mgmt/net-snmp/net-snmp-5.9/snmplib/
H A Dparse.c4652 enum { bdigits, xdigits, other } seenSymbols; in get_token() enumerator
4671 seenSymbols = bdigits; in get_token()
4674 case bdigits: in get_token()
4698 if (seenSymbols > bdigits) { in get_token()
/dports/devel/ppl/ppl-1.2/src/
H A Dppl.hh.dist14173 mantissa: bdigits
14174 | POINT bdigits MINUS : '-'
14175 | bdigits POINT ;
14176 | bdigits POINT bdigits
14183 bdigits : BDIGIT BASE : '^^'
14184 | bdigits BDIGIT ;
/dports/lang/ruby26/ruby-2.6.9/doc/
H A DChangeLog-1.8.013891 * bignum.c (bigdivrem): should trim trailing zero bdigits of