Searched refs:U32V (Results 1 - 3 of 3) sorted by relevance

/netbsd-current/external/bsd/unbound/dist/compat/
H A Dchacha_private.h21 #define U32V(v) ((u32)(v) & U32C(0xFFFFFFFF)) macro
24 (U32V((v) << (n)) | ((v) >> (32 - (n))))
42 #define PLUS(v,w) (U32V((v) + (w)))
/netbsd-current/crypto/external/bsd/openssh/dist/
H A Dchacha.c23 #define U32V(v) ((u32)(v) & U32C(0xFFFFFFFF)) macro
26 (U32V((v) << (n)) | ((v) >> (32 - (n))))
44 #define PLUS(v,w) (U32V((v) + (w)))
/netbsd-current/sys/external/isc/libsodium/dist/src/libsodium/crypto_stream/chacha20/ref/
H A Dchacha20_ref.c28 #define U32V(v) ((uint32_t)(v) &U32C(0xFFFFFFFF)) macro
32 #define PLUS(v, w) (U32V((v) + (w)))
277 ic_high = U32V(ic >> 32);
278 ic_low = U32V(ic);

Completed in 182 milliseconds