Lines Matching defs:bits
1013 // Test for movz: 16 bits set at positions 0, 16, 32 or 48.
1021 // Test for movn: NOT(16 bits set at positions 0, 16, 32 or 48).
3914 // Check for 16-bit patterns. Set least-significant 16 bits, to make tests
6343 // This is register Rm, but using an element size dependent number of bits
7352 // decimal integer represented by the bits in the instruction between
7356 // become the least-significant bits of the result, and bit AA is the sign bit
7358 int32_t bits = 0;
7369 bits = (bits << chunk_width) | (instr->ExtractBits(msb, lsb));
7372 VIXL_ASSERT(IsUintN(width, bits));
7375 bits = ExtractSignedBitfield32(width - 1, 0, bits);
7386 bits = static_cast<int32_t>(bits + value);
7395 bits = static_cast<int32_t>(bits * value);
7398 AppendToOutput("%d", bits);