Searched refs:CountLeadingZeros_32 (Results 1 - 10 of 10) sorted by relevance

/freebsd-10.0-release/contrib/llvm/include/llvm/Support/
H A DMathExtras.h160 /// CountLeadingZeros_32 - this function performs the platform optimal form of
162 /// bit. Ex. CountLeadingZeros_32(0x00F000FF) == 8.
164 inline unsigned CountLeadingZeros_32(uint32_t Value) { function in namespace:llvm
193 return CountLeadingZeros_32(~Value);
228 Count = CountLeadingZeros_32(Hi);
233 Count = CountLeadingZeros_32(Lo)+32;
336 return 31 - CountLeadingZeros_32(Value);
349 return 32-CountLeadingZeros_32(Value-1);
/freebsd-10.0-release/contrib/llvm/lib/Target/XCore/
H A DXCoreISelDAGToDAG.cpp64 int msksize = 32 - CountLeadingZeros_32(value);
120 SDValue MskSize = getI32Imm(32 - CountLeadingZeros_32(Val));
/freebsd-10.0-release/contrib/llvm/lib/Target/ARM/
H A DThumb2InstrInfo.cpp288 unsigned RotAmt = CountLeadingZeros_32(ThisVal);
305 unsigned RotAmt = CountLeadingZeros_32(ThisVal);
487 unsigned RotAmt = CountLeadingZeros_32(Offset);
H A DARMCodeEmitter.cpp1048 int32_t msb = (32 - CountLeadingZeros_32(v)) - 1;
H A DARMISelLowering.cpp8417 unsigned Width = (32 - CountLeadingZeros_32(~InvMask)) - LSB;
/freebsd-10.0-release/contrib/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMAddressingModes.h299 unsigned RotAmt = CountLeadingZeros_32(V);
H A DARMMCCodeEmitter.cpp1363 uint32_t msb = (32 - CountLeadingZeros_32 (v)) - 1;
/freebsd-10.0-release/contrib/llvm/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp335 MB = CountLeadingZeros_32(Val);
337 ME = CountLeadingZeros_32((Val - 1) ^ Val);
343 ME = CountLeadingZeros_32(Val) - 1;
345 MB = CountLeadingZeros_32((Val - 1) ^ Val) + 1;
/freebsd-10.0-release/contrib/llvm/lib/Target/ARM/InstPrinter/
H A DARMInstPrinter.cpp664 int32_t width = (32 - CountLeadingZeros_32 (v)) - lsb;
/freebsd-10.0-release/contrib/llvm/lib/Support/
H A DAPInt.cpp1515 unsigned shift = CountLeadingZeros_32(v[n-1]);

Completed in 226 milliseconds