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.h135 bool isUnsigned() const { return (Flags & UnsignedFlag) != 0; } function in class:clang::NeonTypeFlags
/external/clang/lib/ASTMatchers/Dynamic/
H A DVariantValue.cpp298 bool VariantValue::isUnsigned() const { function in class:clang::ast_matchers::dynamic::VariantValue
303 assert(isUnsigned());
346 if (!isUnsigned())
/external/clang/lib/Lex/
H A DPPExpressions.cpp43 bool isUnsigned() const { return Val.isUnsigned(); } function in class:__anon1423::PPValue
248 Result.Val.setIsUnsigned(Literal.isUnsigned);
254 if (!Literal.isUnsigned && Result.Val.isNegative()) {
371 bool Overflow = !Result.isUnsigned() && Result.Val.isMinSignedValue();
547 Res.setIsUnsigned(LHS.isUnsigned()|RHS.isUnsigned());
550 if (ValueLive && Res.isUnsigned()) {
551 if (!LHS.isUnsigned() && LHS.Val.isNegative())
556 if (!RHS.isUnsigned()
[all...]
/external/llvm/include/llvm/ADT/
H A DAPSInt.h31 explicit APSInt(uint32_t BitWidth, bool isUnsigned = true)
32 : APInt(BitWidth, 0), IsUnsigned(isUnsigned) {}
34 explicit APSInt(APInt I, bool isUnsigned = true)
35 : APInt(std::move(I)), IsUnsigned(isUnsigned) {}
60 bool isUnsigned() const { return IsUnsigned; } function in class:llvm::APSInt
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
H A DvktShaderIntegerFunctionTests.cpp144 const bool isUnsigned = glu::isDataTypeUintOrUVec(dataType); local
146 if (isUnsigned)
/external/deqp/modules/gles31/functional/
H A Des31fShaderIntegerFunctionTests.cpp142 const bool isUnsigned = glu::isDataTypeUintOrUVec(dataType); local
144 if (isUnsigned)
/external/llvm/include/llvm/IR/
H A DInstrTypes.h1032 bool isUnsigned() const { function in class:llvm::CmpInst
1033 return isUnsigned(getPredicate());
1063 static bool isUnsigned(Predicate predicate);
/external/llvm/lib/Target/Hexagon/
H A DHexagonHardwareLoops.cpp138 static bool isUnsigned(Kind Cmp) { function in struct:__anon12608::HexagonHardwareLoops::Comparison
1766 if (!Cmp || Comparison::isUnsigned(Cmp))

Completed in 337 milliseconds