MCPcopy Create free account
hub / github.com/Vectorized/function-selector-miner / rotate_left

Function rotate_left

src/lib.rs:163–168  ·  view source on GitHub ↗
(value: T, shift: u32)

Source from the content-addressed store, hash-verified

161
162#[inline(always)]
163fn rotate_left<T>(value: T, shift: u32) -> T
164where
165 T: Copy + Shl<u32, Output = T> + Shr<u32, Output = T> + BitOr<Output = T>,
166{
167 (value << shift) | (value >> (64 - shift))
168}
169
170#[inline(always)]
171fn chi<T>(a: &mut [T; 25])

Callers 4

theta_Function · 0.85
rho_piFunction · 0.85
rho_pi_Function · 0.85
opsFunction · 0.85

Calls

no outgoing calls

Tested by 1

opsFunction · 0.68