MCPcopy Create free account
hub / github.com/LPC4/Full-Stack / sll

Function sll

crates/virtual-machine/src/cpu/alu.rs:64–66  ·  view source on GitHub ↗
(a: u64, b: u64)

Source from the content-addressed store, hash-verified

62}
63#[inline]
64pub fn sll(a: u64, b: u64) -> u64 {
65 a << (b & 63)
66}
67#[inline]
68pub fn srl(a: u64, b: u64) -> u64 {
69 a >> (b & 63)

Callers 2

exec_alu_immFunction · 0.85
exec_aluFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected