Lines Matching full:ones
1338 /* Doesn't handle full ones or full zeroes */ in range_of_ones()
1349 unsigned int immr, imms, n, ones, ror, esz, tmp; in aarch64_encode_immediate() local
1367 /* Can't encode full zeroes, full ones, or value wider than the mask */ in aarch64_encode_immediate()
1391 /* That's how many ones we need to encode */ in aarch64_encode_immediate()
1392 ones = hweight64(imm); in aarch64_encode_immediate()
1395 * imms is set to (ones - 1), prefixed with a string of ones in aarch64_encode_immediate()
1398 imms = ones - 1; in aarch64_encode_immediate()
1414 * Fill the unused top bits with ones, and check if in aarch64_encode_immediate()
1415 * the result is a valid immediate (all ones with a in aarch64_encode_immediate()
1424 * ones, with the first bit set at position 0 in aarch64_encode_immediate()
1431 * original set of ones. Note that this is relative to the in aarch64_encode_immediate()