_rotl, _rotl64, _rotr, _rotr64
Ruota i bit a sinistra (_rotl) o a destra (_rotr).
unsigned int _rotl(
unsigned int value,
int shift
);
unsigned __int64 _rotl64(
unsigned __int64 value,
int shift
);
unsigned int _rotr(
unsigned int value,
int shift
);
unsigned __int64 _rotr64(
unsigned __int64 value,
int shift
);
Parametri
corrispondente
Valore da ruotare.shift
Numero di bit da muovere.
Valore restituito
Il valore ruotato. Nessun ritorno di errore.
Note
Le funzioni _rotr e _rotl ruotano il valore unsigned di shift bit. _rotl ruota il valore a sinistra. _rotr ruota il valore a destra. Entrambe le funzioni ruotano i bit del valore da una estremità all'altra.
Requisiti
Routine |
Intestazione obbligatoria |
---|---|
_rotl, _rotl64 |
<stdlib.h> |
_rotr, _rotr64 |
<stdlib.h> |
Per ulteriori informazioni sulla compatibilità, vedere Compatibilità nell'introduzione.
Librerie
Tutte le versioni delle Librerie di runtime C.
Esempio
// crt_rot.c
/* This program shifts values to rotate an integer.
*/
#include <stdlib.h>
#include <stdio.h>
int main( void )
{
unsigned val = 0x0fd93;
__int64 val2 = 0x0101010101010101;
printf( "0x%4.4x rotated left three times is 0x%4.4x\n",
val, _rotl( val, 3 ) );
printf( "0x%4.4x rotated right four times is 0x%4.4x\n",
val, _rotr( val, 4 ) );
printf( "%I64x rotated left three times is %I64x\n",
val2, _rotl64( val2, 3 ) );
printf( "%I64x rotated right four times is %I64x\n",
val2, _rotr64( val2, 4 ) );
}
Output
0xfd93 rotated left three times is 0x7ec98
0xfd93 rotated right four times is 0x30000fd9
101010101010101 rotated left three times is 808080808080808
101010101010101 rotated right four times is 1010101010101010
Equivalente .NET Framework
Non applicabile. Per chiamare la funzione standard C, utilizzare PInvoke. Per ulteriori informazioni, vedere Esempi di Invocazione della Piattaforma.