Home
last modified time | relevance | path

Searched refs:LeftRotate (Results 1 – 25 of 121) sorted by relevance

12345

/dports/devel/godot2/godot-2.1.6-stable/thirdparty/openssl/crypto/camellia/
H A Dcamellia.c94 # define LeftRotate(x, s) _lrotl(x, s) macro
105 # define LeftRotate(x,s) ({u32 ret; asm ("roll %1,%0":"=r"(ret):"I"(s),"0"(x):"cc"); ret; }) macro
116 # define RightRotate(x,s) LeftRotate(x,(32-s))
118 # define LeftRotate(x,s) ({u32 ret; asm ("rll %0,%1,%2":"=r"(ret):"r"(x),"I"(s)); ret; }) macro
119 # define RightRotate(x,s) LeftRotate(x,(32-s))
126 #if !defined(RightRotate) && !defined(LeftRotate)
128 # define LeftRotate(x, s) ( ((x) << (s)) + ((x) >> (32 - s)) ) macro
511 s1 ^= LeftRotate(s0 & k[0], 1); in Camellia_EncryptBlock_Rounds()
514 s3 ^= LeftRotate(s2 & k[2], 1); in Camellia_EncryptBlock_Rounds()
564 s1 ^= LeftRotate(s0 & k[2], 1); in Camellia_DecryptBlock_Rounds()
[all …]
/dports/devel/godot2-tools/godot-2.1.6-stable/thirdparty/openssl/crypto/camellia/
H A Dcamellia.c94 # define LeftRotate(x, s) _lrotl(x, s) macro
105 # define LeftRotate(x,s) ({u32 ret; asm ("roll %1,%0":"=r"(ret):"I"(s),"0"(x):"cc"); ret; }) macro
116 # define RightRotate(x,s) LeftRotate(x,(32-s))
118 # define LeftRotate(x,s) ({u32 ret; asm ("rll %0,%1,%2":"=r"(ret):"r"(x),"I"(s)); ret; }) macro
119 # define RightRotate(x,s) LeftRotate(x,(32-s))
126 #if !defined(RightRotate) && !defined(LeftRotate)
128 # define LeftRotate(x, s) ( ((x) << (s)) + ((x) >> (32 - s)) ) macro
511 s1 ^= LeftRotate(s0 & k[0], 1); in Camellia_EncryptBlock_Rounds()
514 s3 ^= LeftRotate(s2 & k[2], 1); in Camellia_EncryptBlock_Rounds()
564 s1 ^= LeftRotate(s0 & k[2], 1); in Camellia_DecryptBlock_Rounds()
[all …]
/dports/security/openssl-unsafe/openssl-c9ba19c/crypto/camellia/
H A Dcamellia.c94 # define LeftRotate(x, s) _lrotl(x, s) macro
105 # define LeftRotate(x,s) ({u32 ret; asm ("roll %1,%0":"=r"(ret):"I"(s),"0"(x):"cc"); ret; }) macro
116 # define RightRotate(x,s) LeftRotate(x,(32-s))
118 # define LeftRotate(x,s) ({u32 ret; asm ("rll %0,%1,%2":"=r"(ret):"r"(x),"I"(s)); ret; }) macro
119 # define RightRotate(x,s) LeftRotate(x,(32-s))
126 #if !defined(RightRotate) && !defined(LeftRotate)
128 # define LeftRotate(x, s) ( ((x) << (s)) + ((x) >> (32 - s)) ) macro
511 s1 ^= LeftRotate(s0 & k[0], 1); in Camellia_EncryptBlock_Rounds()
514 s3 ^= LeftRotate(s2 & k[2], 1); in Camellia_EncryptBlock_Rounds()
564 s1 ^= LeftRotate(s0 & k[2], 1); in Camellia_DecryptBlock_Rounds()
[all …]
/dports/security/openssl-legacy-static/openssl-1.0.2u/crypto/camellia/
H A Dcamellia.c94 # define LeftRotate(x, s) _lrotl(x, s) macro
105 # define LeftRotate(x,s) ({u32 ret; asm ("roll %1,%0":"=r"(ret):"I"(s),"0"(x):"cc"); ret; }) macro
116 # define RightRotate(x,s) LeftRotate(x,(32-s))
118 # define LeftRotate(x,s) ({u32 ret; asm ("rll %0,%1,%2":"=r"(ret):"r"(x),"I"(s)); ret; }) macro
119 # define RightRotate(x,s) LeftRotate(x,(32-s))
126 #if !defined(RightRotate) && !defined(LeftRotate)
128 # define LeftRotate(x, s) ( ((x) << (s)) + ((x) >> (32 - s)) ) macro
511 s1 ^= LeftRotate(s0 & k[0], 1); in Camellia_EncryptBlock_Rounds()
514 s3 ^= LeftRotate(s2 & k[2], 1); in Camellia_EncryptBlock_Rounds()
564 s1 ^= LeftRotate(s0 & k[2], 1); in Camellia_DecryptBlock_Rounds()
[all …]
/dports/security/libressl/libressl-3.4.3/crypto/camellia/
H A Dcamellia.c97 # define LeftRotate(x,s) ({u32 ret; asm ("roll %1,%0":"=r"(ret):"I"(s),"0"(x):"cc"); ret; }) macro
102 # define LeftRotate(x,s) ({u32 ret; asm ("rlwinm %0,%1,%2,0,31":"=r"(ret):"r"(x),"I"(s)); ret; }) macro
103 # define RightRotate(x,s) LeftRotate(x,(32-s))
108 #if !defined(RightRotate) && !defined(LeftRotate)
110 # define LeftRotate(x, s) ( ((x) << (s)) + ((x) >> (32 - s)) ) macro
493 s1 ^= LeftRotate(s0 & k[0], 1); in Camellia_EncryptBlock_Rounds()
496 s3 ^= LeftRotate(s2 & k[2], 1); in Camellia_EncryptBlock_Rounds()
545 s1 ^= LeftRotate(s0 & k[2], 1); in Camellia_DecryptBlock_Rounds()
548 s3 ^= LeftRotate(s2 & k[0], 1); in Camellia_DecryptBlock_Rounds()
/dports/security/libressl-static/libressl-3.3.5/crypto/camellia/
H A Dcamellia.c97 # define LeftRotate(x,s) ({u32 ret; asm ("roll %1,%0":"=r"(ret):"I"(s),"0"(x):"cc"); ret; }) macro
102 # define LeftRotate(x,s) ({u32 ret; asm ("rlwinm %0,%1,%2,0,31":"=r"(ret):"r"(x),"I"(s)); ret; }) macro
103 # define RightRotate(x,s) LeftRotate(x,(32-s))
108 #if !defined(RightRotate) && !defined(LeftRotate)
110 # define LeftRotate(x, s) ( ((x) << (s)) + ((x) >> (32 - s)) ) macro
493 s1 ^= LeftRotate(s0 & k[0], 1); in Camellia_EncryptBlock_Rounds()
496 s3 ^= LeftRotate(s2 & k[2], 1); in Camellia_EncryptBlock_Rounds()
545 s1 ^= LeftRotate(s0 & k[2], 1); in Camellia_DecryptBlock_Rounds()
548 s3 ^= LeftRotate(s2 & k[0], 1); in Camellia_DecryptBlock_Rounds()
/dports/emulators/citra-qt5/citra-ac98458e0/externals/libressl/crypto/camellia/
H A Dcamellia.c97 # define LeftRotate(x,s) ({u32 ret; asm ("roll %1,%0":"=r"(ret):"I"(s),"0"(x):"cc"); ret; }) macro
102 # define LeftRotate(x,s) ({u32 ret; asm ("rlwinm %0,%1,%2,0,31":"=r"(ret):"r"(x),"I"(s)); ret; }) macro
103 # define RightRotate(x,s) LeftRotate(x,(32-s))
108 #if !defined(RightRotate) && !defined(LeftRotate)
110 # define LeftRotate(x, s) ( ((x) << (s)) + ((x) >> (32 - s)) ) macro
493 s1 ^= LeftRotate(s0 & k[0], 1); in Camellia_EncryptBlock_Rounds()
496 s3 ^= LeftRotate(s2 & k[2], 1); in Camellia_EncryptBlock_Rounds()
545 s1 ^= LeftRotate(s0 & k[2], 1); in Camellia_DecryptBlock_Rounds()
548 s3 ^= LeftRotate(s2 & k[0], 1); in Camellia_DecryptBlock_Rounds()
/dports/emulators/citra/citra-ac98458e0/externals/libressl/crypto/camellia/
H A Dcamellia.c97 # define LeftRotate(x,s) ({u32 ret; asm ("roll %1,%0":"=r"(ret):"I"(s),"0"(x):"cc"); ret; }) macro
102 # define LeftRotate(x,s) ({u32 ret; asm ("rlwinm %0,%1,%2,0,31":"=r"(ret):"r"(x),"I"(s)); ret; }) macro
103 # define RightRotate(x,s) LeftRotate(x,(32-s))
108 #if !defined(RightRotate) && !defined(LeftRotate)
110 # define LeftRotate(x, s) ( ((x) << (s)) + ((x) >> (32 - s)) ) macro
493 s1 ^= LeftRotate(s0 & k[0], 1); in Camellia_EncryptBlock_Rounds()
496 s3 ^= LeftRotate(s2 & k[2], 1); in Camellia_EncryptBlock_Rounds()
545 s1 ^= LeftRotate(s0 & k[2], 1); in Camellia_DecryptBlock_Rounds()
548 s3 ^= LeftRotate(s2 & k[0], 1); in Camellia_DecryptBlock_Rounds()
/dports/www/obhttpd/libressl-3.4.1/crypto/camellia/
H A Dcamellia.c97 # define LeftRotate(x,s) ({u32 ret; asm ("roll %1,%0":"=r"(ret):"I"(s),"0"(x):"cc"); ret; }) macro
102 # define LeftRotate(x,s) ({u32 ret; asm ("rlwinm %0,%1,%2,0,31":"=r"(ret):"r"(x),"I"(s)); ret; }) macro
103 # define RightRotate(x,s) LeftRotate(x,(32-s))
108 #if !defined(RightRotate) && !defined(LeftRotate)
110 # define LeftRotate(x, s) ( ((x) << (s)) + ((x) >> (32 - s)) ) macro
493 s1 ^= LeftRotate(s0 & k[0], 1); in Camellia_EncryptBlock_Rounds()
496 s3 ^= LeftRotate(s2 & k[2], 1); in Camellia_EncryptBlock_Rounds()
545 s1 ^= LeftRotate(s0 & k[2], 1); in Camellia_DecryptBlock_Rounds()
548 s3 ^= LeftRotate(s2 & k[0], 1); in Camellia_DecryptBlock_Rounds()
/dports/math/viennacl/ViennaCL-1.7.1/viennacl/tools/
H A Dsha1.hpp57 inline static uint32_t LeftRotate(uint32_t value, vcl_size_t count) { in LeftRotate() function in viennacl::tools::detail::sha1
171 w[i] = LeftRotate((w[i-3] ^ w[i-8] ^ w[i-14] ^ w[i-16]), 1); in processBlock()
197 uint32_t temp = LeftRotate(a, 5) + f + e + k + w[i]; in processBlock()
200 c = LeftRotate(b, 30); in processBlock()
/dports/graphics/graphviz/graphviz-2.44.1/lib/rbtree/
H A Dred_black_tree.c86 static void LeftRotate(rb_red_blk_tree* tree, rb_red_blk_node* x) { in LeftRotate() function
267 LeftRotate(tree,x); in RBTreeInsert()
287 LeftRotate(tree,x->parent->parent); in RBTreeInsert()
532 LeftRotate(tree,x->parent); in RBDeleteFixUp()
548 LeftRotate(tree,x->parent); in RBDeleteFixUp()
566 LeftRotate(tree,w); in RBDeleteFixUp()
/dports/biology/gffread/gffread-0.12.7/gclib/
H A DGIntervalTree.hh73 void LeftRotate(GIntervalTreeNode* x) { in LeftRotate() function in GIntervalTree
203 LeftRotate(x->parent); in DeleteFixUp()
219 LeftRotate(x->parent); in DeleteFixUp()
237 LeftRotate(w); in DeleteFixUp()
411 LeftRotate(x); in Insert()
433 LeftRotate(x->parent->parent); in Insert()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/platform/wtf/
H A Dpod_red_black_tree.h409 Node* LeftRotate(Node* x) { in LeftRotate() function
500 LeftRotate(x); in InsertNode()
533 Node* new_sub_tree_root = LeftRotate(x->Parent()->Parent()); in InsertNode()
560 LeftRotate(x_parent); in DeleteFixup()
582 LeftRotate(x_parent); in DeleteFixup()
614 LeftRotate(w); in DeleteFixup()
/dports/graphics/inkscape/inkscape-1.1_2021-05-24_c4e8f9ed74/src/3rdparty/2geom/src/2geom/intervaltree/
H A Dinterval_tree.cc75 void IntervalTree::LeftRotate(IntervalTreeNode* x) { in LeftRotate() function in IntervalTree
289 LeftRotate(x); in Insert()
311 LeftRotate(x->parent->parent); in Insert()
506 LeftRotate(x->parent); in DeleteFixUp()
522 LeftRotate(x->parent); in DeleteFixUp()
540 LeftRotate(w); in DeleteFixUp()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/platform/wtf/
H A Dpod_red_black_tree.h409 Node* LeftRotate(Node* x) { in LeftRotate() function
500 LeftRotate(x); in InsertNode()
533 Node* new_sub_tree_root = LeftRotate(x->Parent()->Parent()); in InsertNode()
560 LeftRotate(x_parent); in DeleteFixup()
582 LeftRotate(x_parent); in DeleteFixup()
614 LeftRotate(w); in DeleteFixup()
/dports/math/lib2geom/lib2geom-1.1/src/2geom/intervaltree/
H A Dinterval_tree.cc75 void IntervalTree::LeftRotate(IntervalTreeNode* x) { in LeftRotate() function in IntervalTree
289 LeftRotate(x); in Insert()
311 LeftRotate(x->parent->parent); in Insert()
506 LeftRotate(x->parent); in DeleteFixUp()
522 LeftRotate(x->parent); in DeleteFixUp()
540 LeftRotate(w); in DeleteFixUp()
/dports/sysutils/bareos19-traymonitor/bareos-Release-19.2.11/core/src/lib/
H A Drblist.cc104 LeftRotate(x); in insert()
127 LeftRotate(parent(parent(x))); in insert()
259 void rblist::LeftRotate(void* item) in LeftRotate() function in rblist
/dports/sysutils/bareos18-client/bareos-Release-18.2.12/core/src/lib/
H A Drblist.cc103 LeftRotate(x); in insert()
126 LeftRotate(parent(parent(x))); in insert()
270 void rblist::LeftRotate(void *item) in LeftRotate() function in rblist
/dports/sysutils/bareos19-client/bareos-Release-19.2.11/core/src/lib/
H A Drblist.cc104 LeftRotate(x); in insert()
127 LeftRotate(parent(parent(x))); in insert()
259 void rblist::LeftRotate(void* item) in LeftRotate() function in rblist
/dports/sysutils/bareos-client/bareos-Release-20.0.3/core/src/lib/
H A Drblist.cc105 LeftRotate(x); in insert()
128 LeftRotate(parent(parent(x))); in insert()
260 void rblist::LeftRotate(void* item) in LeftRotate() function in rblist
/dports/sysutils/bareos-traymonitor/bareos-Release-20.0.3/core/src/lib/
H A Drblist.cc105 LeftRotate(x); in insert()
128 LeftRotate(parent(parent(x))); in insert()
260 void rblist::LeftRotate(void* item) in LeftRotate() function in rblist
/dports/sysutils/bareos18-traymonitor/bareos-Release-18.2.12/core/src/lib/
H A Drblist.cc103 LeftRotate(x); in insert()
126 LeftRotate(parent(parent(x))); in insert()
270 void rblist::LeftRotate(void *item) in LeftRotate() function in rblist
/dports/sysutils/bareos-server/bareos-Release-20.0.3/core/src/lib/
H A Drblist.cc105 LeftRotate(x); in insert()
128 LeftRotate(parent(parent(x))); in insert()
260 void rblist::LeftRotate(void* item) in LeftRotate() function in rblist
/dports/sysutils/bareos18-server/bareos-Release-18.2.12/core/src/lib/
H A Drblist.cc103 LeftRotate(x); in insert()
126 LeftRotate(parent(parent(x))); in insert()
270 void rblist::LeftRotate(void *item) in LeftRotate() function in rblist
/dports/sysutils/bareos19-server/bareos-Release-19.2.11/core/src/lib/
H A Drblist.cc104 LeftRotate(x); in insert()
127 LeftRotate(parent(parent(x))); in insert()
259 void rblist::LeftRotate(void* item) in LeftRotate() function in rblist

12345