Home
last modified time | relevance | path

Searched refs:LeadZ (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DKnownBits.cpp816 unsigned LeadZ = HasOverflow ? 0 : UMaxResult.countl_zero(); in mul() local
880 Res.Zero.setHighBits(LeadZ); in mul()
990 unsigned LeadZ = Res->countLeadingZeros(); in sdiv() local
991 Known.Zero.setHighBits(LeadZ); in sdiv()
1021 unsigned LeadZ = MaxRes.countLeadingZeros(); in udiv() local
1023 Known.Zero.setHighBits(LeadZ); in udiv()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPInt.h494 unsigned LeadZ = countLeadingZerosSlowCase(); in isShiftedMask() local
495 return (Ones + LeadZ + countr_zero()) == BitWidth; in isShiftedMask()
506 unsigned LeadZ = countLeadingZerosSlowCase(); in isShiftedMask() local
508 if ((Ones + LeadZ + TrailZ) != BitWidth) in isShiftedMask()