Lines Matching full:ones
1294 /* Doesn't handle full ones or full zeroes */ in range_of_ones()
1305 unsigned int immr, imms, n, ones, ror, esz, tmp; in aarch64_encode_immediate() local
1323 /* Can't encode full zeroes, full ones, or value wider than the mask */ in aarch64_encode_immediate()
1347 /* That's how many ones we need to encode */ in aarch64_encode_immediate()
1348 ones = hweight64(imm); in aarch64_encode_immediate()
1351 * imms is set to (ones - 1), prefixed with a string of ones in aarch64_encode_immediate()
1354 imms = ones - 1; in aarch64_encode_immediate()
1370 * Fill the unused top bits with ones, and check if in aarch64_encode_immediate()
1371 * the result is a valid immediate (all ones with a in aarch64_encode_immediate()
1380 * ones, with the first bit set at position 0 in aarch64_encode_immediate()
1387 * original set of ones. Note that this is relative to the in aarch64_encode_immediate()