projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
b5c66f92da6a421cc054dfa860075b46e0088188
[platform/framework/web/crosswalk-tizen.git]
/
1
define(function(){
2
/**
3
* Bitwise circular shift right
4
* http://en.wikipedia.org/wiki/Circular_shift
5
*/
6
function ror(val, shift){
7
return (val >> shift) | (val << (32 - shift));
8
}
9
return ror;
10
});