#include <stdlib.h>
Go to the source code of this file.
◆ ASM_ALIAS
Definition at line 25 of file rot.c.
◆ _lrotl()
Definition at line 64 of file rot.c.
66 int max_bits =
sizeof(
unsigned long)<<3;
70 if (
shift > max_bits )
unsigned long _lrotr(unsigned long value, int shift) ASM_ALIAS("__lrotr")
Referenced by _lrotr().
◆ _lrotr()
Definition at line 78 of file rot.c.
80 int max_bits =
sizeof(
unsigned long)<<3;
84 if (
shift > max_bits )
unsigned long _lrotl(unsigned long value, int shift) ASM_ALIAS("__lrotl")
Referenced by _lrotl().
◆ _rotl()
Definition at line 36 of file rot.c.
38 int max_bits =
sizeof(
unsigned int)<<3;
42 if (
shift > max_bits )
unsigned int _rotr(unsigned int value, int shift) ASM_ALIAS("__rotr")
unsigned int(__cdecl typeof(jpeg_read_scanlines))(struct jpeg_decompress_struct *
Referenced by _rotr().
◆ _rotr()
Definition at line 50 of file rot.c.
52 int max_bits =
sizeof(
unsigned int)<<3;
56 if (
shift > max_bits )
unsigned int _rotl(unsigned int value, int shift) ASM_ALIAS("__rotl")
unsigned int(__cdecl typeof(jpeg_read_scanlines))(struct jpeg_decompress_struct *
Referenced by _rotl().