Home
last modified time | relevance | path

Searched defs:rot (Results 1 – 5 of 5) sorted by relevance

/f-stack/dpdk/drivers/net/bnxt/tf_core/
H A Dlookup3.h16 #define rot(x, k) (((x) << (k)) | ((x) >> (32 - (k)))) macro
/f-stack/freebsd/libkern/
H A Djenkins_hash.c45 #define rot(x,k) (((x)<<(k)) | ((x)>>(32-(k)))) macro
/f-stack/freebsd/contrib/dpdk_rte_lpm/
H A Drte_jhash.h39 #define rot(x, k) (((x) << (k)) | ((x) >> (32-(k)))) macro
/f-stack/dpdk/lib/librte_hash/
H A Drte_jhash.h45 #define rot(x, k) (((x) << (k)) | ((x) >> (32-(k)))) macro
/f-stack/freebsd/contrib/pcg-c/include/
H A Dpcg_variants.h56 static inline uint8_t pcg_rotr_8(uint8_t value, unsigned int rot) in pcg_rotr_8()
70 static inline uint16_t pcg_rotr_16(uint16_t value, unsigned int rot) in pcg_rotr_16()
80 static inline uint32_t pcg_rotr_32(uint32_t value, unsigned int rot) in pcg_rotr_32()
90 static inline uint64_t pcg_rotr_64(uint64_t value, unsigned int rot) in pcg_rotr_64()
103 static inline pcg128_t pcg_rotr_128(pcg128_t value, unsigned int rot) in pcg_rotr_128()