Home | History | Annotate | Download | only in arm64

Lines Matching defs:bits

41 // Used for instructions which have a wide variant with the size bits set to either x0 or x1.
45 // Used for instructions which have a wide variant with the sf and n bits set to 1.
49 // Used for FP instructions which have a single and double precision variants, with he type bits set
703 uint32_t bits = opcode_is_wide ? encoder->xskeleton : encoder->wskeleton;
799 // their bottom 5 bits are correctly set to 31 == 0b11111, which is the right
807 bits |= value;
821 bits |= value;
826 bits |= value;
831 bits |= value;
841 write_pos[0] = (bits & 0xff);
842 write_pos[1] = ((bits >> 8) & 0xff);
843 write_pos[2] = ((bits >> 16) & 0xff);
844 write_pos[3] = ((bits >> 24) & 0xff);