Home
last modified time | relevance | path

Searched refs:SHL (Results 1 – 2 of 2) sorted by relevance

/optee_os/core/crypto/
H A Dsm4.c35 #define SHL(x, n) (((x) & 0xFFFFFFFF) << (n)) macro
36 #define ROTL(x, n) (SHL((x), (n)) | ((x) >> (32 - (n))))
H A Dsm3.c53 #define SHL(x, n) ((x) << (n)) macro
62 return SHL(val, shift) | (val >> (32 - shift)); in rotl()