Searched refs:RotateLeft (Results 1 - 4 of 4) sorted by relevance

/external/llvm/utils/TableGen/
H A DCodeGenRegisters.h43 uint8_t RotateLeft; member in struct:llvm::MaskRolPair
45 return Mask == Other.Mask && RotateLeft == Other.RotateLeft;
48 return Mask != Other.Mask || RotateLeft != Other.RotateLeft;
H A DCodeGenRegisters.cpp1232 uint8_t RotateLeft = Shift >= 0 ? (uint8_t)Shift : 32+Shift; local
1234 if (I.RotateLeft == RotateLeft) {
1240 MaskRolPair MaskRol = { SrcMask, RotateLeft };
H A DRegisterInfoEmitter.cpp750 " uint8_t RotateLeft;\n"
759 OS << format("{ 0x%08X, %2u }, ", P.Mask, P.RotateLeft);
788 " Result |= (Masked << Ops->RotateLeft) & 0xFFFFFFFF;\n"
789 " Result |= (Masked >> ((32 - Ops->RotateLeft) & 0x1F));\n"
803 " LaneBitmask Rotated = (LaneMask >> Ops->RotateLeft) |\n"
804 " ((LaneMask << ((32 - Ops->RotateLeft) & 0x1F)) & 0xFFFFFFFF);\n"
/external/ImageMagick/MagickCore/
H A Dcipher.c383 static inline unsigned int RotateLeft(const unsigned int x)
478 RotateLeft(D[(text[map[1][j]] >> 8) & 0xff] ^
479 RotateLeft(D[(text[map[2][j]] >> 16) & 0xff] ^
480 RotateLeft(D[(text[map[3][j]] >> 24) & 0xff])));
375 static inline unsigned int RotateLeft(const unsigned int x) function

Completed in 119 milliseconds