Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
4b7f7acf
Commit
4b7f7acf
authored
Dec 03, 2013
by
Stefan Krah
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make a couple of parameters constant.
parent
827f5d35
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
14 deletions
+14
-14
Modules/_decimal/libmpdec/mpdecimal.c
Modules/_decimal/libmpdec/mpdecimal.c
+7
-7
Modules/_decimal/libmpdec/mpdecimal.h
Modules/_decimal/libmpdec/mpdecimal.h
+7
-7
No files found.
Modules/_decimal/libmpdec/mpdecimal.c
View file @
4b7f7acf
...
...
@@ -392,42 +392,42 @@ mpd_radix(void)
/* Dynamic decimal */
ALWAYS_INLINE
int
mpd_isdynamic
(
mpd_t
*
dec
)
mpd_isdynamic
(
const
mpd_t
*
dec
)
{
return
!
(
dec
->
flags
&
MPD_STATIC
);
}
/* Static decimal */
ALWAYS_INLINE
int
mpd_isstatic
(
mpd_t
*
dec
)
mpd_isstatic
(
const
mpd_t
*
dec
)
{
return
dec
->
flags
&
MPD_STATIC
;
}
/* Data of decimal is dynamic */
ALWAYS_INLINE
int
mpd_isdynamic_data
(
mpd_t
*
dec
)
mpd_isdynamic_data
(
const
mpd_t
*
dec
)
{
return
!
(
dec
->
flags
&
MPD_DATAFLAGS
);
}
/* Data of decimal is static */
ALWAYS_INLINE
int
mpd_isstatic_data
(
mpd_t
*
dec
)
mpd_isstatic_data
(
const
mpd_t
*
dec
)
{
return
dec
->
flags
&
MPD_STATIC_DATA
;
}
/* Data of decimal is shared */
ALWAYS_INLINE
int
mpd_isshared_data
(
mpd_t
*
dec
)
mpd_isshared_data
(
const
mpd_t
*
dec
)
{
return
dec
->
flags
&
MPD_SHARED_DATA
;
}
/* Data of decimal is const */
ALWAYS_INLINE
int
mpd_isconst_data
(
mpd_t
*
dec
)
mpd_isconst_data
(
const
mpd_t
*
dec
)
{
return
dec
->
flags
&
MPD_CONST_DATA
;
}
...
...
@@ -597,7 +597,7 @@ mpd_set_sign(mpd_t *result, uint8_t sign)
/* Copy sign from another decimal */
ALWAYS_INLINE
void
mpd_signcpy
(
mpd_t
*
result
,
mpd_t
*
a
)
mpd_signcpy
(
mpd_t
*
result
,
const
mpd_t
*
a
)
{
uint8_t
sign
=
a
->
flags
&
MPD_NEG
;
...
...
Modules/_decimal/libmpdec/mpdecimal.h
View file @
4b7f7acf
...
...
@@ -752,12 +752,12 @@ EXTINLINE uint8_t mpd_sign(const mpd_t *dec);
/* 1 if dec is positive, -1 if dec is negative */
EXTINLINE
int
mpd_arith_sign
(
const
mpd_t
*
dec
);
EXTINLINE
long
mpd_radix
(
void
);
EXTINLINE
int
mpd_isdynamic
(
mpd_t
*
dec
);
EXTINLINE
int
mpd_isstatic
(
mpd_t
*
dec
);
EXTINLINE
int
mpd_isdynamic_data
(
mpd_t
*
dec
);
EXTINLINE
int
mpd_isstatic_data
(
mpd_t
*
dec
);
EXTINLINE
int
mpd_isshared_data
(
mpd_t
*
dec
);
EXTINLINE
int
mpd_isconst_data
(
mpd_t
*
dec
);
EXTINLINE
int
mpd_isdynamic
(
const
mpd_t
*
dec
);
EXTINLINE
int
mpd_isstatic
(
const
mpd_t
*
dec
);
EXTINLINE
int
mpd_isdynamic_data
(
const
mpd_t
*
dec
);
EXTINLINE
int
mpd_isstatic_data
(
const
mpd_t
*
dec
);
EXTINLINE
int
mpd_isshared_data
(
const
mpd_t
*
dec
);
EXTINLINE
int
mpd_isconst_data
(
const
mpd_t
*
dec
);
EXTINLINE
mpd_ssize_t
mpd_trail_zeros
(
const
mpd_t
*
dec
);
...
...
@@ -769,7 +769,7 @@ EXTINLINE mpd_ssize_t mpd_trail_zeros(const mpd_t *dec);
EXTINLINE
void
mpd_setdigits
(
mpd_t
*
result
);
EXTINLINE
void
mpd_set_sign
(
mpd_t
*
result
,
uint8_t
sign
);
/* copy sign from another decimal */
EXTINLINE
void
mpd_signcpy
(
mpd_t
*
result
,
mpd_t
*
a
);
EXTINLINE
void
mpd_signcpy
(
mpd_t
*
result
,
const
mpd_t
*
a
);
EXTINLINE
void
mpd_set_infinity
(
mpd_t
*
result
);
EXTINLINE
void
mpd_set_qnan
(
mpd_t
*
result
);
EXTINLINE
void
mpd_set_snan
(
mpd_t
*
result
);
...
...
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