.TH "sources/import/edz/lzma/RotateDefs.h" 3 "Version 0.200.1-dev" "QElectroTech" \" -*- nroff -*-
.ad l
.nh
.SH NAME
sources/import/edz/lzma/RotateDefs.h
.SH SYNOPSIS
.br
.PP
.SS "Macros"

.in +1c
.ti -1c
.RI "#define \fBrotlFixed\fP(x,  n)"
.br
.ti -1c
.RI "#define \fBrotrFixed\fP(x,  n)"
.br
.ti -1c
.RI "#define \fBZ7_ROTL64\fP(x,  n)"
.br
.ti -1c
.RI "#define \fBZ7_ROTR64\fP(x,  n)"
.br
.in -1c
.SH "Macro Definition Documentation"
.PP 
.SS "#define rotlFixed( x,  n)"
\fBValue:\fP
.nf
(((x) << (n)) | ((x) >> (32 \- (n))))
.PP
.fi

.SS "#define rotrFixed( x,  n)"
\fBValue:\fP
.nf
(((x) >> (n)) | ((x) << (32 \- (n))))
.PP
.fi

.SS "#define Z7_ROTL64( x,  n)"
\fBValue:\fP
.nf
(((x) << (n)) | ((x) >> (64 \- (n))))
.PP
.fi

.SS "#define Z7_ROTR64( x,  n)"
\fBValue:\fP
.nf
(((x) >> (n)) | ((x) << (64 \- (n))))
.PP
.fi

.SH "Author"
.PP 
Generated automatically by Doxygen for QElectroTech from the source code\&.
