Lines Matching full:ones
1535 /* Doesn't handle full ones or full zeroes */ in range_of_ones()
1546 unsigned int immr, imms, n, ones, ror, esz, tmp; in aarch64_encode_immediate() local
1564 /* Can't encode full zeroes, full ones, or value wider than the mask */ in aarch64_encode_immediate()
1588 /* That's how many ones we need to encode */ in aarch64_encode_immediate()
1589 ones = hweight64(imm); in aarch64_encode_immediate()
1592 * imms is set to (ones - 1), prefixed with a string of ones in aarch64_encode_immediate()
1595 imms = ones - 1; in aarch64_encode_immediate()
1611 * Fill the unused top bits with ones, and check if in aarch64_encode_immediate()
1612 * the result is a valid immediate (all ones with a in aarch64_encode_immediate()
1621 * ones, with the first bit set at position 0 in aarch64_encode_immediate()
1628 * original set of ones. Note that this is relative to the in aarch64_encode_immediate()