Searched refs:Unsigned (Results 1 - 12 of 12) sorted by relevance

/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DAPSIntType.h24 APSIntType(uint32_t Width, bool Unsigned) argument
25 : BitWidth(Width), IsUnsigned(Unsigned) {}
97 /// Unsigned integers are considered to be better conversion types than
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/
H A DVariantValue.h213 VariantValue(unsigned Unsigned);
217 /// \brief Unsigned value functions.
220 void setUnsigned(unsigned Unsigned);
248 unsigned Unsigned; member in union:clang::ast_matchers::dynamic::VariantValue::AllValues
/freebsd-9.3-release/contrib/llvm/include/llvm/ADT/
H A DAPSInt.h254 static APSInt getMaxValue(uint32_t numBits, bool Unsigned) { argument
255 return APSInt(Unsigned ? APInt::getMaxValue(numBits)
256 : APInt::getSignedMaxValue(numBits), Unsigned);
261 static APSInt getMinValue(uint32_t numBits, bool Unsigned) { argument
262 return APSInt(Unsigned ? APInt::getMinValue(numBits)
263 : APInt::getSignedMinValue(numBits), Unsigned);
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/
H A DVariantValue.cpp149 VariantValue::VariantValue(unsigned Unsigned) : Type(VT_Nothing) { argument
150 setUnsigned(Unsigned);
205 return Value.Unsigned;
211 Value.Unsigned = NewValue;
248 case VT_Unsigned: return "Unsigned";
/freebsd-9.3-release/contrib/llvm/lib/Target/NVPTX/
H A DNVPTX.h121 Unsigned = 0, enumerator in enum:llvm::NVPTX::PTXLdStInstCode::FromType
H A DNVPTXISelDAGToDAG.cpp246 fromType = NVPTX::PTXLdStInstCode::Unsigned;
475 FromType = NVPTX::PTXLdStInstCode::Unsigned;
1343 toType = NVPTX::PTXLdStInstCode::Unsigned;
1563 ToType = NVPTX::PTXLdStInstCode::Unsigned;
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.h262 void addConstantValue(DIE *Die, const ConstantInt *CI, bool Unsigned);
263 void addConstantValue(DIE *Die, const APInt &Val, bool Unsigned);
H A DDwarfCompileUnit.cpp810 bool Unsigned) {
811 addConstantValue(Die, CI->getValue(), Unsigned);
815 void CompileUnit::addConstantValue(DIE *Die, const APInt &Val, bool Unsigned) { argument
819 if (!Unsigned) {
809 addConstantValue(DIE *Die, const ConstantInt *CI, bool Unsigned) argument
/freebsd-9.3-release/contrib/llvm/lib/Target/NVPTX/InstPrinter/
H A DNVPTXInstPrinter.cpp251 else if (Imm == NVPTX::PTXLdStInstCode::Unsigned)
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/AST/
H A DASTContext.cpp7551 bool Signed = false, Unsigned = false; local
7563 assert(!Unsigned && "Can't use both 'S' and 'U' modifiers!");
7569 assert(!Unsigned && "Can't use 'S' modifier multiple times!");
7570 Unsigned = true;
7585 assert(HowLong == 0 && !Signed && !Unsigned &&
7590 assert(HowLong == 0 && !Signed && !Unsigned &&
7595 assert(HowLong == 0 && !Signed && !Unsigned &&
7600 assert(HowLong < 2 && !Signed && !Unsigned &&
7609 if (Unsigned)
7616 Type = Unsigned
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGExprScalar.cpp600 bool Unsigned = DstType->isUnsignedIntegerOrEnumerationType(); local
602 APSInt Min = APSInt::getMinValue(Width, Unsigned);
604 if (MinSrc.convertFromAPInt(Min, !Unsigned, APFloat::rmTowardZero) &
614 APSInt Max = APSInt::getMaxValue(Width, Unsigned);
616 if (MaxSrc.convertFromAPInt(Max, !Unsigned, APFloat::rmTowardZero) &
2769 // Unsigned integers and pointers.
/freebsd-9.3-release/contrib/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp9860 bool Unsigned = false; local
9866 case ISD::SETUGT: Unsigned = true;
9868 case ISD::SETULT: Unsigned = true;
9870 case ISD::SETUGE: Unsigned = true;
9872 case ISD::SETULE: Unsigned = true;
9875 unsigned Opc = Unsigned ? X86ISD::CMPMU: X86ISD::CMPM;

Completed in 327 milliseconds