Lines Matching defs:bits

103     int32_t bits =
105 return signed_bitextract_32(msb, lsb, bits);
181 // Imm8: abcdefgh (8 bits)
182 // Single: aBbb.bbbc.defg.h000.0000.0000.0000.0000 (32 bits)
184 uint32_t bits = imm8;
185 uint32_t bit7 = (bits >> 7) & 0x1;
186 uint32_t bit6 = (bits >> 6) & 0x1;
187 uint32_t bit5_to_0 = bits & 0x3f;
194 // Imm8: abcdefgh (8 bits)
196 // 0000.0000.0000.0000.0000.0000.0000.0000 (64 bits)
198 uint32_t bits = imm8;
199 uint64_t bit7 = (bits >> 7) & 0x1;
200 uint64_t bit6 = (bits >> 6) & 0x1;
201 uint64_t bit5_to_0 = bits & 0x3f;
588 uint8_t bits[kNEONFormatMaxBits];
590 // Mapping from concatenated bits to format.
633 // The integer format map uses three bits (Q, size<1:0>) to encode the
642 // The long integer format map uses two bits (size<1:0>) to encode the
650 // The FP format map uses two bits (Q, size<0>) to encode the NEON FP vector
653 // The FP format map assumes two bits (Q, size<0>) are used to encode the
660 // The load/store format map uses three bits (Q, 11, 10) to encode the
676 // The triangular format map uses between two and five bits to encode the NEON
690 // The scalar format map uses two bits (size<1:0>) to encode the NEON scalar
697 // The long scalar format map uses two bits (size<1:0>) to encode the longer
711 // The triangular scalar format map uses between one and four bits to encode
727 // Get the NEONFormat enumerated value for bits obtained from the
737 // Select bits from instrbits_ defined by the bits array, concatenate them,
739 uint8_t PickBits(const uint8_t bits[]);