Searched defs:ROTR (Results 1 - 6 of 6) sorted by relevance

/macosx-10.9.5/Heimdal-323.92.1/lib/hcrypto/
H A Dsha256.c42 #define ROTR(x,n) (((x)>>(n)) | ((x) << (32 - (n)))) macro
[all...]
H A Dsha512.c42 #define ROTR(x,n) (((x)>>(n)) | ((x) << (64 - (n)))) macro
[all...]
/macosx-10.9.5/vim-53/src/
H A Dsha256.c86 #define ROTR(x, n) (SHR(x, n) | (x << (32 - n))) macro
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/sha1/
H A Dsha256.c69 #define ROTR(x, n) (((x) >> (n)) | ((x) << (32 - (n)))) macro
[all...]
/macosx-10.9.5/CPANInternal-140/Digest-SHA/src/
H A Dsha.c31 #define ROTR(x, n) (SR32(x, n) | SL32(x, 32-(n))) macro
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/CodeGen/
H A DISDOpcodes.h316 SHL, SRA, SRL, ROTL, ROTR, enumerator in enum:llvm::ISD::NodeType

Completed in 193 milliseconds