MCPcopy Create free account
hub / github.com/davisking/dlib / rotate_left

Function rotate_left

dlib/md5/md5_kernel_1.cpp:65–71  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

63 // ------------------------------------------------------------------------------------
64
65 inline uint32 rotate_left (
66 uint32 x,
67 uint32 n
68 )
69 {
70 return ( (x<<n) | (x>>(32-n)) );
71 }
72
73 // ------------------------------------------------------------------------------------
74

Callers 8

keep_node_balancedMethod · 0.85
keep_node_balancedMethod · 0.85
fix_after_addMethod · 0.85
fix_after_removeMethod · 0.85
FFFunction · 0.85
GGFunction · 0.85
HHFunction · 0.85
IIFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected