#include <stdlib.h>
Go to the source code of this file.
◆ _lrotl()
Definition at line 71 of file rot.c.
72{
73 int max_bits =
sizeof(
unsigned long)<<3;
76
77 if (
shift > max_bits )
80}
unsigned long _lrotr(unsigned long value, int shift)
Referenced by _lrotr().
◆ _lrotr()
Definition at line 85 of file rot.c.
86{
87 int max_bits =
sizeof(
unsigned long)<<3;
90
91 if (
shift > max_bits )
94}
unsigned long _lrotl(unsigned long value, int shift)
Referenced by _lrotl().
◆ _rotl()
Definition at line 43 of file rot.c.
44{
45 int max_bits =
sizeof(
unsigned int)<<3;
48
49 if (
shift > max_bits )
52}
unsigned int(__cdecl typeof(jpeg_read_scanlines))(struct jpeg_decompress_struct *
unsigned int _rotr(unsigned int value, int shift)
Referenced by _rotr().
◆ _rotr()
Definition at line 57 of file rot.c.
58{
59 int max_bits =
sizeof(
unsigned int)<<3;
62
63 if (
shift > max_bits )
66}
unsigned int _rotl(unsigned int value, int shift)
Referenced by _rotl().