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

  /external/vixl/src/aarch64/
decoder-aarch64.cc 36 if (instr->ExtractBits(28, 27) == 0) {
39 switch (instr->ExtractBits(27, 24)) {
178 VIXL_ASSERT(instr->ExtractBits(27, 24) == 0x0);
187 VIXL_ASSERT((instr->ExtractBits(27, 24) == 0x4) ||
188 (instr->ExtractBits(27, 24) == 0x5) ||
189 (instr->ExtractBits(27, 24) == 0x6) ||
190 (instr->ExtractBits(27, 24) == 0x7));
192 switch (instr->ExtractBits(31, 29)) {
223 if ((instr->ExtractBits(4, 2) != 0) ||
237 if (instr->ExtractBits(23, 22) == 0)
    [all...]
constants-aarch64.h 54 V_(Rd, 4, 0, ExtractBits) /* Destination register. */ \
55 V_(Rn, 9, 5, ExtractBits) /* First source register. */ \
56 V_(Rm, 20, 16, ExtractBits) /* Second source register. */ \
57 V_(Ra, 14, 10, ExtractBits) /* Third source register. */ \
58 V_(Rt, 4, 0, ExtractBits) /* Load/store register. */ \
59 V_(Rt2, 14, 10, ExtractBits) /* Load/store second register. */ \
60 V_(Rs, 20, 16, ExtractBits) /* Exclusive access status. */ \
63 V_(SixtyFourBits, 31, 31, ExtractBits) \
64 V_(FlagsUpdate, 29, 29, ExtractBits) \
68 V_(ImmPCRelLo, 30, 29, ExtractBits) \
    [all...]
instructions-aarch64.h 178 uint32_t ExtractBits(int msb, int lsb) const {
181 VIXL_DEPRECATED("ExtractBits", uint32_t Bits(int msb, int lsb) const) {
182 return ExtractBits(msb, lsb);
simulator-aarch64.h 679 uint32_t ExtractBits(int msb, int lsb) const {
682 VIXL_DEPRECATED("ExtractBits", uint32_t Bits(int msb, int lsb) const) {
683 return ExtractBits(msb, lsb);
    [all...]
disasm-aarch64.cc     [all...]
simulator-aarch64.cc     [all...]
  /external/mdnsresponder/mDNSShared/
CommonServices.h 686 /*! @function ExtractBits
697 ExtractBits( 0x30000000U, 0xF0000000U, 28 ) == 0x3
700 #define ExtractBits( X, MASK, SHIFT ) ( ( ( X ) >> ( SHIFT ) ) & ( ( MASK ) >> ( SHIFT ) ) )
    [all...]
  /external/vixl/src/
utils-vixl.h 510 inline Td ExtractBits(Ts value, int least_significant_bit, Td mask) {
  /external/v8/src/mips64/
macro-assembler-mips64.h 847 void ExtractBits(Register rt, Register rs, uint16_t pos, uint16_t size);
    [all...]
macro-assembler-mips64.cc     [all...]
  /external/v8/src/compiler/mips64/
code-generator-mips64.cc     [all...]

Completed in 5104 milliseconds