Home
last modified time | relevance | path

Searched refs:rotateRight (Results 1 – 25 of 679) sorted by relevance

12345678910>>...28

/dports/net-p2p/vuze/vuze-5.7.4.0_2/org/gudy/bouncycastle/crypto/digests/
H A DSHA256Digest.java209 private int rotateRight( in rotateRight() method in SHA256Digest
236 return rotateRight(x, 2) ^ rotateRight(x, 13) ^ rotateRight(x, 22); in Sum0()
242 return rotateRight(x, 6) ^ rotateRight(x, 11) ^ rotateRight(x, 25); in Sum1()
248 return rotateRight(x, 7) ^ rotateRight(x, 18) ^ (x >>> 3); in Theta0()
254 return rotateRight(x, 17) ^ rotateRight(x, 19) ^ (x >>> 10); in Theta1()
H A DLongDigest.java273 private long rotateRight( in rotateRight() method in LongDigest
300 return rotateRight(x, 28) ^ rotateRight(x, 34) ^ rotateRight(x, 39); in Sum0()
306 return rotateRight(x, 14) ^ rotateRight(x, 18) ^ rotateRight(x, 41); in Sum1()
312 return rotateRight(x, 1) ^ rotateRight(x, 8) ^ (x >>> 7); in Sigma0()
318 return rotateRight(x, 19) ^ rotateRight(x, 61) ^ (x >>> 6); in Sigma1()
/dports/java/bouncycastle15/crypto-169/core/src/main/java/org/bouncycastle/crypto/engines/
H A DHC256Engine.java40 + (rotateRight(x, 10) ^ rotateRight(y, 23)) in step()
53 + (rotateRight(x, 10) ^ rotateRight(y, 23)) in step()
121 w[i] = (rotateRight(x, 17) ^ rotateRight(x, 19) ^ (x >>> 10)) in init()
123 + (rotateRight(y, 7) ^ rotateRight(y, 18) ^ (y >>> 3)) in init()
240 private static int rotateRight( in rotateRight() method in HC256Engine
H A DHC128Engine.java32 return rotateRight(x, 7) ^ rotateRight(x, 18) in f1()
38 return rotateRight(x, 17) ^ rotateRight(x, 19) in f2()
44 return (rotateRight(x, 10) ^ rotateRight(z, 23)) in g1()
45 + rotateRight(y, 8); in g1()
60 private static int rotateRight( in rotateRight() method in HC128Engine
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/hotspot/jtreg/compiler/intrinsics/
H A DTestRotate.java203 int res1 = Integer.rotateRight(val, 1); in test_ror_int_const()
208 res1 = Integer.rotateRight(val, 127); in test_ror_int_const()
213 res1 = Integer.rotateRight(val, 128); in test_ror_int_const()
218 res1 = Integer.rotateRight(val, -128); in test_ror_int_const()
223 res1 = Integer.rotateRight(val, -129); in test_ror_int_const()
257 long res1 = Long.rotateRight(val, 1); in test_ror_long_const()
262 res1 = Long.rotateRight(val, 127); in test_ror_long_const()
267 res1 = Long.rotateRight(val, 128); in test_ror_long_const()
272 res1 = Long.rotateRight(val, -128); in test_ror_long_const()
277 res1 = Long.rotateRight(val, -129); in test_ror_long_const()
[all …]
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/jdk/java/lang/invoke/VarHandles/
H A DVarHandleBaseByteArrayTest.java202 static double rotateRight(double i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
204 Long.rotateRight(Double.doubleToRawLongBits(i), distance)); in rotateRight()
212 static float rotateRight(float i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
221 static long rotateRight(long i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
222 return Long.rotateRight(i, distance); in rotateRight()
229 static int rotateRight(int i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
230 return Integer.rotateRight(i, distance); in rotateRight()
239 static short rotateRight(short i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
241 v = Integer.rotateRight(v, distance); in rotateRight()
251 static char rotateRight(char i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
[all …]
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/jdk/java/lang/invoke/VarHandles/
H A DVarHandleBaseByteArrayTest.java202 static double rotateRight(double i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
204 Long.rotateRight(Double.doubleToRawLongBits(i), distance)); in rotateRight()
212 static float rotateRight(float i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
221 static long rotateRight(long i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
222 return Long.rotateRight(i, distance); in rotateRight()
229 static int rotateRight(int i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
230 return Integer.rotateRight(i, distance); in rotateRight()
239 static short rotateRight(short i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
241 v = Integer.rotateRight(v, distance); in rotateRight()
251 static char rotateRight(char i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
[all …]
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/jdk/java/lang/invoke/VarHandles/
H A DVarHandleBaseByteArrayTest.java202 static double rotateRight(double i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
204 Long.rotateRight(Double.doubleToRawLongBits(i), distance)); in rotateRight()
212 static float rotateRight(float i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
221 static long rotateRight(long i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
222 return Long.rotateRight(i, distance); in rotateRight()
229 static int rotateRight(int i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
230 return Integer.rotateRight(i, distance); in rotateRight()
239 static short rotateRight(short i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
241 v = Integer.rotateRight(v, distance); in rotateRight()
251 static char rotateRight(char i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
[all …]
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/jdk/java/lang/invoke/VarHandles/
H A DVarHandleBaseByteArrayTest.java202 static double rotateRight(double i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
204 Long.rotateRight(Double.doubleToRawLongBits(i), distance)); in rotateRight()
212 static float rotateRight(float i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
221 static long rotateRight(long i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
222 return Long.rotateRight(i, distance); in rotateRight()
229 static int rotateRight(int i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
230 return Integer.rotateRight(i, distance); in rotateRight()
239 static short rotateRight(short i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
241 v = Integer.rotateRight(v, distance); in rotateRight()
251 static char rotateRight(char i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
[all …]
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/jdk/java/lang/invoke/VarHandles/
H A DVarHandleBaseByteArrayTest.java202 static double rotateRight(double i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
204 Long.rotateRight(Double.doubleToRawLongBits(i), distance)); in rotateRight()
212 static float rotateRight(float i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
221 static long rotateRight(long i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
222 return Long.rotateRight(i, distance); in rotateRight()
229 static int rotateRight(int i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
230 return Integer.rotateRight(i, distance); in rotateRight()
239 static short rotateRight(short i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
241 v = Integer.rotateRight(v, distance); in rotateRight()
251 static char rotateRight(char i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
[all …]
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/jdk/java/lang/invoke/VarHandles/
H A DVarHandleBaseByteArrayTest.java202 static double rotateRight(double i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
204 Long.rotateRight(Double.doubleToRawLongBits(i), distance)); in rotateRight()
212 static float rotateRight(float i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
221 static long rotateRight(long i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
222 return Long.rotateRight(i, distance); in rotateRight()
229 static int rotateRight(int i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
230 return Integer.rotateRight(i, distance); in rotateRight()
239 static short rotateRight(short i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
241 v = Integer.rotateRight(v, distance); in rotateRight()
251 static char rotateRight(char i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
[all …]
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/jdk/java/lang/invoke/VarHandles/
H A DVarHandleBaseByteArrayTest.java202 static double rotateRight(double i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
204 Long.rotateRight(Double.doubleToRawLongBits(i), distance)); in rotateRight()
212 static float rotateRight(float i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
221 static long rotateRight(long i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
222 return Long.rotateRight(i, distance); in rotateRight()
229 static int rotateRight(int i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
230 return Integer.rotateRight(i, distance); in rotateRight()
239 static short rotateRight(short i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
241 v = Integer.rotateRight(v, distance); in rotateRight()
251 static char rotateRight(char i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
[all …]
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/jdk/java/lang/invoke/VarHandles/
H A DVarHandleBaseByteArrayTest.java202 static double rotateRight(double i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
204 Long.rotateRight(Double.doubleToRawLongBits(i), distance)); in rotateRight()
212 static float rotateRight(float i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
221 static long rotateRight(long i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
222 return Long.rotateRight(i, distance); in rotateRight()
229 static int rotateRight(int i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
230 return Integer.rotateRight(i, distance); in rotateRight()
239 static short rotateRight(short i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
241 v = Integer.rotateRight(v, distance); in rotateRight()
251 static char rotateRight(char i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest
[all …]
/dports/graphics/lightzone/LightZone-4.1.8-3-g36e87773/lightcrafts/src/com/lightcrafts/ui/browser/view/
H A DRotateActions.java114 rotateRight(browser); in createRotateRightAction()
129 rotateRight(browser); in rotateRightAndAdvance()
140 static void rotateRight(AbstractImageBrowser browser) { in rotateRight() method in RotateActions
143 rotateRight(datum, browser); in rotateRight()
158 static void rotateRight(ImageDatum datum, AbstractImageBrowser browser) { in rotateRight() method in RotateActions
160 datum.rotateRight(); in rotateRight()
/dports/devel/hs-haskell-language-server/haskell-language-server-1.4.0/plugins/hls-rename-plugin/test/testdata/
H A DTypeConstructor.expected.hs3 rotateRight :: BinaryTree a -> BinaryTree a
4 rotateRight (Node v (Node v' l' r') r) = Node v' l' (Node v r' r) function
5 rotateRight t = t function
H A DTypeConstructor.hs3 rotateRight :: Tree a -> Tree a
4 rotateRight (Node v (Node v' l' r') r) = Node v' l' (Node v r' r) function
5 rotateRight t = t function
/dports/devel/hs-hls-install/haskell-language-server-1.4.0/plugins/hls-rename-plugin/test/testdata/
H A DTypeConstructor.expected.hs3 rotateRight :: BinaryTree a -> BinaryTree a
4 rotateRight (Node v (Node v' l' r') r) = Node v' l' (Node v r' r) function
5 rotateRight t = t function
H A DTypeConstructor.hs3 rotateRight :: Tree a -> Tree a
4 rotateRight (Node v (Node v' l' r') r) = Node v' l' (Node v r' r) function
5 rotateRight t = t function
/dports/sysutils/sensu-go/sensu-go-5.11.1/vendor/github.com/petar/GoLLRB/llrb/
H A Dllrb.go226 h = rotateRight(h)
252 h = rotateRight(h)
310 h = rotateRight(h)
353 h = rotateRight(h)
402 func rotateRight(h *Node) *Node { func
425 h.Right = rotateRight(h.Right)
436 h = rotateRight(h)
448 h = rotateRight(h)
/dports/devel/qmake/qt-x11-free-3.3.8/src/tools/
H A Dqmap.cpp62 void QMapPrivateBase::rotateRight( NodePtr x, NodePtr& root ) in rotateRight() function in QMapPrivateBase
98 rotateRight (x->parent->parent, root ); in rebalance()
110 rotateRight( x, root ); in rebalance()
210 rotateRight(w, root); in removeAndRebalance()
225 rotateRight(x_parent, root); in removeAndRebalance()
245 rotateRight(x_parent, root); in removeAndRebalance()
/dports/x11-toolkits/skinlf/skinlf-6.7/src/com/l2fprod/gui/plaf/skin/
H A DDefaultButton.java359 b.center = ImageUtils.rotateRight(center); in rotateClockWise()
362 b.top = ImageUtils.rotateRight(left); in rotateClockWise()
366 b.right = ImageUtils.rotateRight(top); in rotateClockWise()
370 b.bottom = ImageUtils.rotateRight(right); in rotateClockWise()
374 b.left = ImageUtils.rotateRight(bottom); in rotateClockWise()
378 b.topleft = ImageUtils.rotateRight(bottomleft); in rotateClockWise()
379 b.topright = ImageUtils.rotateRight(topleft); in rotateClockWise()
380 b.bottomleft = ImageUtils.rotateRight(bottomright); in rotateClockWise()
381 b.bottomright = ImageUtils.rotateRight(topright); in rotateClockWise()
/dports/games/opencity/opencity-0.0.6.5stable/src/mas/
H A Dagent.cpp157 dir = rotateRight(m_direction); in doRandomMove()
166 dir = rotateRight(m_direction); in doRandomMove()
180 dir = rotateRight(m_direction); in doRandomMove()
189 dir = rotateRight(m_direction); in doRandomMove()
/dports/java/bouncycastle15/crypto-169/core/src/main/java/org/bouncycastle/util/
H A DLongs.java36 public static long rotateRight(long i, int distance) in rotateRight() method in Longs
38 return Long.rotateRight(i, distance); in rotateRight()
H A DIntegers.java36 public static int rotateRight(int i, int distance) in rotateRight() method in Integers
38 return Integer.rotateRight(i, distance); in rotateRight()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/test/java/lang/Integer/
H A DBitTwiddle.java101 if (bitCount(x) != bitCount(rotateRight(x, dist))) in main()
107 if (rotateRight(x, dist) != rotateLeft(x, -dist)) in main()
110 if (rotateRight(x, -dist) != rotateLeft(x, dist)) in main()

12345678910>>...28