Home
last modified time | relevance | path

Searched refs:_rotl (Results 1 – 25 of 745) sorted by relevance

12345678910>>...30

/dports/lang/mono/mono-5.10.1.57/external/corert/src/Common/src/TypeSystem/Common/
H A DTypeHashingAlgorithms.cs57 int hash1 = _hash1 + _rotl(_hash1, 8); in ToHashCode()
58 int hash2 = _hash2 + _rotl(_hash2, 8); in ToHashCode()
65 private static int _rotl(int value, int shift) in _rotl() method in Internal.NativeFormat.TypeHashingAlgorithms
85 hash1 += _rotl(hash1, 8); in ComputeNameHashCode()
86 hash2 += _rotl(hash2, 8); in ComputeNameHashCode()
101 hash1 = (hash1 + _rotl(hash1, 5)) ^ b1; in ComputeASCIINameHashCode()
110 hash1 += _rotl(hash1, 8); in ComputeASCIINameHashCode()
111 hash2 += _rotl(hash2, 8); in ComputeASCIINameHashCode()
163 return (hashCode + _rotl(hashCode, 15)); in ComputeArrayTypeHashCode()
208 return (hashcode + _rotl(hashcode, 15)); in ComputeGenericInstanceHashCode()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corert/src/Common/src/Internal/NativeFormat/
H A DTypeHashingAlgorithms.cs20 private static int _rotl(int value, int shift) in _rotl() method in Internal.NativeFormat.TypeHashingAlgorithms
35 hash1 = (hash1 + _rotl(hash1, 5)) ^ src[i]; in ComputeNameHashCode()
37 hash2 = (hash2 + _rotl(hash2, 5)) ^ src[i + 1]; in ComputeNameHashCode()
40 hash1 += _rotl(hash1, 8); in ComputeNameHashCode()
41 hash2 += _rotl(hash2, 8); in ComputeNameHashCode()
90 hashCode = (hashCode + _rotl(hashCode, 13)) ^ elementTypeHashcode; in ComputeArrayTypeHashCode()
91 return (hashCode + _rotl(hashCode, 15)); in ComputeArrayTypeHashCode()
102 return (pointeeTypeHashcode + _rotl(pointeeTypeHashcode, 5)) ^ 0x12D0; in ComputePointerTypeHashCode()
113 return (parameterTypeHashcode + _rotl(parameterTypeHashcode, 7)) ^ 0x4C85; in ComputeByrefTypeHashCode()
134 hashcode = (hashcode + _rotl(hashcode, 13)) ^ argumentHashCode; in ComputeGenericInstanceHashCode()
[all …]
/dports/security/p5-Crypt-Rabbit/Crypt-Rabbit-1.0.0/
H A D_rabbit.c49 uint32 _rotl(uint32 x, int rot) { in _rotl() function
93 p_instance->x[0] = g[0] + _rotl(g[7], 16) + _rotl(g[6], 16); in next_state()
94 p_instance->x[1] = g[1] + _rotl(g[0], 8) + g[7]; in next_state()
95 p_instance->x[2] = g[2] + _rotl(g[1], 16) + _rotl(g[0], 16); in next_state()
96 p_instance->x[3] = g[3] + _rotl(g[2], 8) + g[1]; in next_state()
97 p_instance->x[4] = g[4] + _rotl(g[3], 16) + _rotl(g[2], 16); in next_state()
99 p_instance->x[6] = g[6] + _rotl(g[5], 16) + _rotl(g[4], 16); in next_state()
124 p_instance->c[0] = _rotl(k2, 16); in key_setup()
125 p_instance->c[2] = _rotl(k3, 16); in key_setup()
126 p_instance->c[4] = _rotl(k0, 16); in key_setup()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corert/src/Common/src/Internal/Text/
H A DUtf8String.cs47 private static int _rotl(int value, int shift) in _rotl() method
63 hash = (hash + _rotl(hash, 5)) ^ *(int*)a; in GetHashCode()
68 hash = (hash + _rotl(hash, 5)) ^ *(short*)a; in GetHashCode()
73 hash = (hash + _rotl(hash, 5)) ^ *a; in GetHashCode()
75 hash += _rotl(hash, 7); in GetHashCode()
76 hash += _rotl(hash, 15); in GetHashCode()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Common/src/System/
H A DMarvin.cs84 p0 = _rotl(p0, 20); in Block()
87 p1 = _rotl(p1, 9); in Block()
90 p0 = _rotl(p0, 27); in Block()
93 p1 = _rotl(p1, 19); in Block()
100 private static uint _rotl(uint value, int shift) in _rotl() method in System.Marvin
/dports/lang/mono/mono-5.10.1.57/external/corert/src/System.Private.CoreLib/src/Internal/Runtime/CompilerServices/
H A DOpenMethodResolver.cs177 private static int _rotl(int value, int shift) in _rotl() method
189 hash1 = (hash1 + _rotl(hash1, 5)) ^ hashCode1; in CalcHashCode()
190 hash2 = (hash2 + _rotl(hash2, 5)) ^ hashCode2; in CalcHashCode()
191 hash1 = (hash1 + _rotl(hash1, 5)) ^ hashCode3; in CalcHashCode()
192 hash2 = (hash2 + _rotl(hash2, 5)) ^ hashCode4; in CalcHashCode()
194 hash1 += _rotl(hash1, 8); in CalcHashCode()
195 hash2 += _rotl(hash2, 8); in CalcHashCode()
/dports/sysutils/lizardfs/lizardfs-3.12.0/external/crcutil-1.0/tests/
H A Dbob_jenkins_rng.h24 #define _rotl(value, bits) \ macro
41 value e = a_ - _rotl(b_, 23); in Get()
42 a_ = b_ ^ _rotl(c_, 16); in Get()
43 b_ = c_ + _rotl(d_, 11); in Get()
118 #undef _rotl
/dports/lang/mono/mono-5.10.1.57/external/corert/src/System.Private.CoreLib/src/System/
H A DMarvin.cs106 p0 = _rotl(p0, 20); in Block()
109 p1 = _rotl(p1, 9); in Block()
112 p0 = _rotl(p0, 27); in Block()
115 p1 = _rotl(p1, 19); in Block()
122 private static uint _rotl(uint value, int shift) in _rotl() method in System.Marvin
H A DRuntimeMethodHandle.cs64 private int _rotl(int value, int shift) in _rotl() method
77 hashcode = (hashcode + _rotl(hashcode, 13)) ^ nameAndSignature.Name.GetHashCode(); in GetHashCode()
83 hashcode = (hashcode + _rotl(hashcode, 13)) ^ argumentHashCode; in GetHashCode()
/dports/math/py-pandas/pandas-1.2.5/pandas/_libs/
H A Dhashing.pyx108 cdef inline uint64_t _rotl(uint64_t x, uint64_t b) nogil: function
133 v1[0] = _rotl(v1[0], 13)
135 v0[0] = _rotl(v0[0], 32)
137 v3[0] = _rotl(v3[0], 16)
140 v3[0] = _rotl(v3[0], 21)
143 v1[0] = _rotl(v1[0], 17)
145 v2[0] = _rotl(v2[0], 32)
/dports/games/libretro-yabause/yabause-ea5b118/yabause/src/libchdr/deps/lzma-16.04/C/
H A DRotateDefs.h14 #pragma intrinsic(_rotl)
18 #define rotlFixed(x, n) _rotl((x), (n))
/dports/games/libretro-pcsx_rearmed/pcsx_rearmed-c2d67cd/deps/lzma-16.04/C/
H A DRotateDefs.h14 #pragma intrinsic(_rotl)
18 #define rotlFixed(x, n) _rotl((x), (n))
/dports/games/libretro-play/Play--3cd0a367b5e24c061a6310c68c9fa7f6b531ebd4/deps/Dependencies/lzmasdk-18.05/C/
H A DRotateDefs.h14 #pragma intrinsic(_rotl)
18 #define rotlFixed(x, n) _rotl((x), (n))
/dports/games/libretro-fbneo/FBNeo-bbe3c05/src/dep/libs/lib7z/
H A DRotateDefs.h14 #pragma intrinsic(_rotl)
18 #define rotlFixed(x, n) _rotl((x), (n))
/dports/games/kodi-addon-game.libretro.pcsx-rearmed/game.libretro.pcsx-rearmed-22.0.0.19-Matrix/depends/common/pcsx-rearmed/deps/lzma-16.04/C/
H A DRotateDefs.h14 #pragma intrinsic(_rotl)
18 #define rotlFixed(x, n) _rotl((x), (n))
/dports/www/firefox-esr/firefox-91.8.0/other-licenses/7zstub/src/C/
H A DRotateDefs.h14 #pragma intrinsic(_rotl)
18 #define rotlFixed(x, n) _rotl((x), (n))
/dports/emulators/mess/mame-mame0226/3rdparty/lzma/C/
H A DRotateDefs.h14 #pragma intrinsic(_rotl)
18 #define rotlFixed(x, n) _rotl((x), (n))
/dports/archivers/py-lzma/pylzma-0.5.0/src/sdk/C/
H A DRotateDefs.h14 #pragma intrinsic(_rotl)
18 #define rotlFixed(x, n) _rotl((x), (n))
/dports/archivers/lzma/lzma-19.00/C/
H A DRotateDefs.h14 #pragma intrinsic(_rotl)
18 #define rotlFixed(x, n) _rotl((x), (n))
/dports/archivers/7-zip/7-zip-21.07/C/
H A DRotateDefs.h14 #pragma intrinsic(_rotl)
18 #define rotlFixed(x, n) _rotl((x), (n))
/dports/archivers/maxcso/maxcso-1.10.0/7zip/C/
H A DRotateDefs.h14 #pragma intrinsic(_rotl)
18 #define rotlFixed(x, n) _rotl((x), (n))
/dports/emulators/mgba/mgba-0.9.2/src/third-party/lzma/
H A DRotateDefs.h14 #pragma intrinsic(_rotl)
18 #define rotlFixed(x, n) _rotl((x), (n))
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/lzma_sdk/
H A DRotateDefs.h14 #pragma intrinsic(_rotl)
18 #define rotlFixed(x, n) _rotl((x), (n))
/dports/security/hashcat/hashcat-6.2.5/deps/LZMA-SDK/C/
H A DRotateDefs.h14 #pragma intrinsic(_rotl)
18 #define rotlFixed(x, n) _rotl((x), (n))
/dports/emulators/mame/mame-mame0226/3rdparty/lzma/C/
H A DRotateDefs.h14 #pragma intrinsic(_rotl)
18 #define rotlFixed(x, n) _rotl((x), (n))

12345678910>>...30