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

  /external/chromium_org/v8/src/arm64/
instructions-arm64.h 99 V8_INLINE Instr InstructionBits() const {
108 return (InstructionBits() >> pos) & 1;
112 return unsigned_bitextract_32(msb, lsb, InstructionBits());
121 return InstructionBits() & mask;
  /external/vixl/src/a64/
instructions-a64.h 156 inline Instr InstructionBits() const {
165 return (InstructionBits() >> pos) & 1;
169 return unsigned_bitextract_32(msb, lsb, InstructionBits());
178 return InstructionBits() & mask;
  /art/compiler/utils/arm/
constants_arm.h 245 int32_t InstructionBits() const {
256 return (InstructionBits() >> nr) & 1;
261 return (InstructionBits() >> shift) & ((1 << count) - 1);
318 int SImmed24Field() const { return ((InstructionBits() << 8) >> 8); }
373 return ((InstructionBits() & 0xff000000) == 0xef000000);
378 return ((InstructionBits() & 0xfff000f0) == 0xe1200070);
  /external/chromium_org/v8/src/arm/
constants-arm.h 501 inline Instr InstructionBits() const {
512 return (InstructionBits() >> nr) & 1;
517 return (InstructionBits() >> lo) & ((2 << (hi - lo)) - 1);
522 return InstructionBits() & (((2 << (hi - lo)) - 1) << lo);
649 inline int SImmed24Value() const { return ((InstructionBits() << 8) >> 8); }

Completed in 161 milliseconds