a148f444d55c9d1e500fa386bab5744d8dec51d4
[platform/framework/web/crosswalk-tizen.git] /
1 define(function(){
2     /**
3      * Bitwise circular shift left
4      * http://en.wikipedia.org/wiki/Circular_shift
5      */
6     function rol(val, shift){
7         return (val << shift) | (val >> (32 - shift));
8     }
9     return rol;
10 });