mirror of
https://github.com/libretro/RetroArch.git
synced 2025-02-09 19:02:37 +00:00
replaced tab by spaces
This commit is contained in:
parent
44ab560dd6
commit
c62723ebe2
16
dynamic.c
16
dynamic.c
@ -624,22 +624,22 @@ static void rarch_log_libretro(enum retro_log_level level,
|
||||
|
||||
static size_t add_bits_down(size_t n)
|
||||
{
|
||||
n |= n >> 1;
|
||||
n |= n >> 2;
|
||||
n |= n >> 4;
|
||||
n |= n >> 8;
|
||||
n |= n >> 16;
|
||||
n |= n >> 1;
|
||||
n |= n >> 2;
|
||||
n |= n >> 4;
|
||||
n |= n >> 8;
|
||||
n |= n >> 16;
|
||||
|
||||
/* double shift to avoid warnings on 32bit (it's dead code, but compilers suck) */
|
||||
if (sizeof(size_t) > 4)
|
||||
if (sizeof(size_t) > 4)
|
||||
n |= n >> 16 >> 16;
|
||||
|
||||
return n;
|
||||
return n;
|
||||
}
|
||||
|
||||
static size_t inflate(size_t addr, size_t mask)
|
||||
{
|
||||
while (mask)
|
||||
while (mask)
|
||||
{
|
||||
size_t tmp = (mask - 1) & ~mask;
|
||||
/* to put in an 1 bit instead, OR in tmp+1 */
|
||||
|
Loading…
x
Reference in New Issue
Block a user