Searched refs:RotateRight (Results 1 – 10 of 10) sorted by relevance
/external/ImageMagick/MagickCore/ |
D | signature.c | 594 #define RotateRight(x,n) (Trunc32(((x) >> n) | ((x) << (32-n)))) in TransformSignature() macro 595 #define Sigma0(x) (RotateRight(x,7) ^ RotateRight(x,18) ^ Trunc32((x) >> 3)) in TransformSignature() 596 #define Sigma1(x) (RotateRight(x,17) ^ RotateRight(x,19) ^ Trunc32((x) >> 10)) in TransformSignature() 597 #define Suma0(x) (RotateRight(x,2) ^ RotateRight(x,13) ^ RotateRight(x,22)) in TransformSignature() 598 #define Suma1(x) (RotateRight(x,6) ^ RotateRight(x,11) ^ RotateRight(x,25)) in TransformSignature()
|
D | cipher.c | 987 static inline unsigned int RotateRight(const unsigned int x) in RotateRight() function 1045 alpha=ByteSubTransform(RotateRight(alpha),SBox) ^ beta; in SetAESKey()
|
/external/deqp-deps/SPIRV-Tools/source/comp/ |
D | move_to_front.cpp | 282 if (BalanceOf(node) < 0) RotateRight(node); in InsertNode() 293 parent = RotateRight(parent); in InsertNode() 368 parent = RotateRight(parent); in RemoveNode() 375 if (BalanceOf(sibling) < 0) RotateRight(sibling); in RemoveNode() 420 uint32_t MoveToFront::RotateRight(const uint32_t node) { in RotateRight() function in spvtools::comp::MoveToFront
|
D | move_to_front.h | 264 uint32_t RotateRight(const uint32_t node);
|
/external/swiftshader/third_party/SPIRV-Tools/source/comp/ |
D | move_to_front.cpp | 282 if (BalanceOf(node) < 0) RotateRight(node); in InsertNode() 293 parent = RotateRight(parent); in InsertNode() 368 parent = RotateRight(parent); in RemoveNode() 375 if (BalanceOf(sibling) < 0) RotateRight(sibling); in RemoveNode() 420 uint32_t MoveToFront::RotateRight(const uint32_t node) { in RotateRight() function in spvtools::comp::MoveToFront
|
D | move_to_front.h | 264 uint32_t RotateRight(const uint32_t node);
|
/external/v8/src/arm64/ |
D | instructions-arm64.cc | 70 static uint64_t RotateRight(uint64_t value, in RotateRight() function 125 return RotateRight(bits, imm_r, 64); in ImmLogical() 138 RotateRight(bits, imm_r & mask, width), in ImmLogical()
|
/external/vixl/src/aarch64/ |
D | instructions-aarch64.cc | 137 return RotateRight(bits, imm_r, 64); in GetImmLogical() 150 RotateRight(bits, imm_r & mask, width), in GetImmLogical()
|
D | simulator-aarch64.cc | 402 uvalue = RotateRight(uvalue, amount, reg_size); in ShiftOperand() 2692 mask = RotateRight(mask, R, reg_size); in VisitBitfield() 2721 uint64_t result = RotateRight(src, R, reg_size); in VisitBitfield()
|
/external/vixl/src/ |
D | utils-vixl.h | 217 inline uint64_t RotateRight(uint64_t value, in RotateRight() function
|