reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Target/AArch64/MCTargetDesc/AArch64AddressingModes.h
  594   uint64_t ByteA = Imm & 0xff00000000000000ULL;
  595   uint64_t ByteB = Imm & 0x00ff000000000000ULL;
  596   uint64_t ByteC = Imm & 0x0000ff0000000000ULL;
  597   uint64_t ByteD = Imm & 0x000000ff00000000ULL;
  598   uint64_t ByteE = Imm & 0x00000000ff000000ULL;
  599   uint64_t ByteF = Imm & 0x0000000000ff0000ULL;
  600   uint64_t ByteG = Imm & 0x000000000000ff00ULL;
  601   uint64_t ByteH = Imm & 0x00000000000000ffULL;