Searched defs:ROTL64 (Results 1 - 2 of 2) sorted by relevance

/openbsd-current/gnu/usr.bin/perl/
H A Dhv_macro.h63 #define ROTL64(x,r) _rotl64(x,r) macro
69 #define ROTL64(x,r) ( ( (U64)(x) << (r) ) | ( (U64)(x) >> ( 64 - (r) ) ) ) macro
/openbsd-current/lib/libcrypto/sha/
H A Dsha3.c33 #define ROTL64(x, y) (((x) << (y)) | ((x) >> (64 - (y)))) macro

Completed in 110 milliseconds