Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
f31b6035
Kaydet (Commit)
f31b6035
authored
Ara 21, 2012
tarafından
Stefan Krah
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge 3.3.
üst
1724bb19
fb7f580e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
_decimal.c
Modules/_decimal/_decimal.c
+1
-1
mpdecimal.c
Modules/_decimal/libmpdec/mpdecimal.c
+7
-7
No files found.
Modules/_decimal/_decimal.c
Dosyayı görüntüle @
f31b6035
...
...
@@ -3484,7 +3484,7 @@ PyDec_Round(PyObject *dec, PyObject *args)
}
}
PyObject
*
DecimalTuple
=
NULL
;
static
PyObject
*
DecimalTuple
=
NULL
;
/* Return the DecimalTuple representation of a PyDecObject. */
static
PyObject
*
PyDec_AsTuple
(
PyObject
*
dec
,
PyObject
*
dummy
UNUSED
)
...
...
Modules/_decimal/libmpdec/mpdecimal.c
Dosyayı görüntüle @
f31b6035
...
...
@@ -107,7 +107,7 @@ static inline void _mpd_qpow_uint(mpd_t *result, const mpd_t *base,
mpd_uint_t
exp
,
uint8_t
resultsign
,
const
mpd_context_t
*
ctx
,
uint32_t
*
status
);
mpd_uint_t
mpd_qsshiftr
(
mpd_t
*
result
,
const
mpd_t
*
a
,
mpd_ssize_t
n
);
static
mpd_uint_t
mpd_qsshiftr
(
mpd_t
*
result
,
const
mpd_t
*
a
,
mpd_ssize_t
n
);
/******************************************************************************/
...
...
@@ -2301,7 +2301,7 @@ _mpd_get_rnd(const mpd_uint_t *data, mpd_ssize_t len, int use_msd)
* It is the caller's responsibility to ensure that the coefficient is big
* enough. The function cannot fail.
*/
mpd_uint_t
static
mpd_uint_t
mpd_qsshiftr
(
mpd_t
*
result
,
const
mpd_t
*
a
,
mpd_ssize_t
n
)
{
mpd_uint_t
rnd
;
...
...
@@ -5123,7 +5123,7 @@ _karatsuba_rec(mpd_uint_t *c, const mpd_uint_t *a, const mpd_uint_t *b,
* to the result or NULL in case of failure (malloc error).
* Conditions: ulen >= vlen, ulen >= 4
*/
mpd_uint_t
*
static
mpd_uint_t
*
_mpd_kmul
(
const
mpd_uint_t
*
u
,
const
mpd_uint_t
*
v
,
mpd_size_t
ulen
,
mpd_size_t
vlen
,
mpd_size_t
*
rsize
)
...
...
@@ -5208,7 +5208,7 @@ _mpd_set_control87(unsigned short cw)
}
#endif
unsigned
int
static
unsigned
int
mpd_set_fenv
(
void
)
{
unsigned
int
cw
;
...
...
@@ -5228,7 +5228,7 @@ mpd_set_fenv(void)
return
cw
;
}
void
static
void
mpd_restore_fenv
(
unsigned
int
cw
)
{
#ifdef _MSC_VER
...
...
@@ -5246,7 +5246,7 @@ mpd_restore_fenv(unsigned int cw)
* Multiply u and v, using the fast number theoretic transform. Returns
* a pointer to the result or NULL in case of failure (malloc error).
*/
mpd_uint_t
*
static
mpd_uint_t
*
_mpd_fntmul
(
const
mpd_uint_t
*
u
,
const
mpd_uint_t
*
v
,
mpd_size_t
ulen
,
mpd_size_t
vlen
,
mpd_size_t
*
rsize
)
...
...
@@ -5432,7 +5432,7 @@ _karatsuba_rec_fnt(mpd_uint_t *c, const mpd_uint_t *a, const mpd_uint_t *b,
* base case. Returns a pointer to the result or NULL in case of failure
* (malloc error). Conditions: ulen >= vlen, ulen >= 4.
*/
mpd_uint_t
*
static
mpd_uint_t
*
_mpd_kmul_fnt
(
const
mpd_uint_t
*
u
,
const
mpd_uint_t
*
v
,
mpd_size_t
ulen
,
mpd_size_t
vlen
,
mpd_size_t
*
rsize
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment