Searched defs:isUnsigned (Results 1 - 13 of 13) sorted by relevance

/external/clang/test/CodeGen/
H A Dpascal-wchar-string.c38 // CHECK: store volatile i32 1, i32* %isUnsigned
40 volatile int isUnsigned = (wchar_t)-1 > (wchar_t)0; local
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DAPSIntType.h29 : BitWidth(Value.getBitWidth()), IsUnsigned(Value.isUnsigned()) {}
32 bool isUnsigned() const { return IsUnsigned; } function in class:clang::ento::APSIntType
50 llvm::APSInt Result(Value, Value.isUnsigned());
H A DBasicValueFactory.h79 const llvm::APSInt& getValue(uint64_t X, unsigned BitWidth, bool isUnsigned);
91 const llvm::APSInt& getValue(const llvm::APInt& X, bool isUnsigned);
120 const llvm::APSInt& getIntValue(uint64_t X, bool isUnsigned) { argument
121 QualType T = isUnsigned ? Ctx.UnsignedIntTy : Ctx.IntTy;
153 inline const llvm::APSInt& getZeroWithPtrWidth(bool isUnsigned = true) {
154 return getValue(0, Ctx.getTypeSize(Ctx.VoidPtrTy), isUnsigned);
157 inline const llvm::APSInt &getIntWithPtrWidth(uint64_t X, bool isUnsigned) { argument
158 return getValue(X, Ctx.getTypeSize(Ctx.VoidPtrTy), isUnsigned);
H A DSValBuilder.h252 NonLoc makeIntVal(const llvm::APInt& integer, bool isUnsigned) { argument
253 return nonloc::ConcreteInt(BasicVals.getValue(integer, isUnsigned));
263 NonLoc makeIntVal(uint64_t integer, bool isUnsigned) { argument
264 return nonloc::ConcreteInt(BasicVals.getIntValue(integer, isUnsigned));
267 NonLoc makeIntValWithPtrWidth(uint64_t integer, bool isUnsigned) { argument
269 BasicVals.getIntWithPtrWidth(integer, isUnsigned));
/external/clang/lib/StaticAnalyzer/Core/
H A DBasicValueFactory.cpp90 bool isUnsigned) {
91 llvm::APSInt V(X, isUnsigned);
96 bool isUnsigned) {
97 llvm::APSInt V(BitWidth, isUnsigned);
89 getValue(const llvm::APInt& X, bool isUnsigned) argument
95 getValue(uint64_t X, unsigned BitWidth, bool isUnsigned) argument
/external/clang/include/clang/Basic/
H A DTargetBuiltins.h134 bool isUnsigned() const { return (Flags & UnsignedFlag) != 0; } function in class:clang::NeonTypeFlags
/external/clang/lib/ASTMatchers/Dynamic/
H A DVariantValue.cpp209 bool VariantValue::isUnsigned() const { function in class:clang::ast_matchers::dynamic::VariantValue
214 assert(isUnsigned());
/external/clang/lib/Lex/
H A DPPExpressions.cpp43 bool isUnsigned() const { return Val.isUnsigned(); } function in class:__anon17946::PPValue
252 Result.Val.setIsUnsigned(Literal.isUnsigned);
258 if (!Literal.isUnsigned && Result.Val.isNegative()) {
372 bool Overflow = !Result.isUnsigned() && Result.Val.isMinSignedValue();
548 Res.setIsUnsigned(LHS.isUnsigned()|RHS.isUnsigned());
551 if (ValueLive && Res.isUnsigned()) {
552 if (!LHS.isUnsigned() && LHS.Val.isNegative())
557 if (!RHS.isUnsigned()
[all...]
/external/llvm/include/llvm/ADT/
H A DAPSInt.h30 explicit APSInt(uint32_t BitWidth, bool isUnsigned = true)
31 : APInt(BitWidth, 0), IsUnsigned(isUnsigned) {}
33 explicit APSInt(APInt I, bool isUnsigned = true)
34 : APInt(std::move(I)), IsUnsigned(isUnsigned) {}
50 bool isUnsigned() const { return IsUnsigned; } function in class:llvm::APSInt
/external/clang/include/clang/Lex/
H A DLiteralSupport.h61 bool isUnsigned; member in class:clang::NumericLiteralParser
/external/llvm/include/llvm/IR/
H A DInstrTypes.h791 bool isUnsigned() const { function in class:llvm::CmpInst
792 return isUnsigned(getPredicate());
809 static bool isUnsigned(unsigned short predicate);
/external/deqp/modules/gles31/functional/
H A Des31fShaderIntegerFunctionTests.cpp142 const bool isUnsigned = glu::isDataTypeUintOrUVec(dataType); local
144 if (isUnsigned)
/external/llvm/lib/IR/
H A DInstructions.cpp3288 bool CmpInst::isUnsigned(unsigned short predicate) { function in class:CmpInst

Completed in 7441 milliseconds