Home | History | Annotate | Download | only in ciphers

Lines Matching refs:pos

900    int N, R, i, pos, r;
932 for (i = 0, pos = 0; i < N; i++, pos += 4) {
934 (key[pos ] << 24) ^
935 (key[pos + 1] << 16) ^
936 (key[pos + 2] << 8) ^
937 (key[pos + 3] );
1041 int i, pos, r;
1049 for (i = 0, pos = 0; i < 4; i++, pos += 4) {
1051 (plaintext[pos ] << 24) ^
1052 (plaintext[pos + 1] << 16) ^
1053 (plaintext[pos + 2] << 8) ^
1054 (plaintext[pos + 3] ) ^
1123 for (i = 0, pos = 0; i < 4; i++, pos += 4) {
1125 ciphertext[pos ] = (unsigned char)(w >> 24);
1126 ciphertext[pos + 1] = (unsigned char)(w >> 16);
1127 ciphertext[pos + 2] = (unsigned char)(w >> 8);
1128 ciphertext[pos + 3] = (unsigned char)(w );