HomeSort by relevance Sort by last modified time
    Searched refs:RotateLeft (Results 1 - 4 of 4) sorted by null

  /external/llvm/utils/TableGen/
CodeGenRegisters.h 43 uint8_t RotateLeft;
45 return Mask == Other.Mask && RotateLeft == Other.RotateLeft;
48 return Mask != Other.Mask || RotateLeft != Other.RotateLeft;
CodeGenRegisters.cpp     [all...]
RegisterInfoEmitter.cpp 750 " 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"
    [all...]
  /external/ImageMagick/MagickCore/
cipher.c 383 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])));
    [all...]

Completed in 232 milliseconds