Home
last modified time | relevance | path

Searched refs:RotateRight (Results 1 – 10 of 10) sorted by relevance

/external/ImageMagick/MagickCore/
Dsignature.c594 #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()
Dcipher.c987 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/
Dmove_to_front.cpp282 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
Dmove_to_front.h264 uint32_t RotateRight(const uint32_t node);
/external/swiftshader/third_party/SPIRV-Tools/source/comp/
Dmove_to_front.cpp282 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
Dmove_to_front.h264 uint32_t RotateRight(const uint32_t node);
/external/v8/src/arm64/
Dinstructions-arm64.cc70 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/
Dinstructions-aarch64.cc137 return RotateRight(bits, imm_r, 64); in GetImmLogical()
150 RotateRight(bits, imm_r & mask, width), in GetImmLogical()
Dsimulator-aarch64.cc402 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/
Dutils-vixl.h217 inline uint64_t RotateRight(uint64_t value, in RotateRight() function