Searched defs:isUnsigned (Results 1 - 21 of 21) 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.h257 NonLoc makeIntVal(const llvm::APInt& integer, bool isUnsigned) { argument
258 return nonloc::ConcreteInt(BasicVals.getValue(integer, isUnsigned));
268 NonLoc makeIntVal(uint64_t integer, bool isUnsigned) { argument
269 return nonloc::ConcreteInt(BasicVals.getIntValue(integer, isUnsigned));
272 NonLoc makeIntValWithPtrWidth(uint64_t integer, bool isUnsigned) { argument
274 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/deqp/external/vulkancts/modules/vulkan/subgroups/
H A DvktSubgroupsClusteredTests.cpp257 bool isUnsigned = false; local
273 isUnsigned = true;
309 else if (isUnsigned)
326 else if (isUnsigned)
H A DvktSubgroupsArithmeticTests.cpp312 bool isUnsigned = false; local
328 isUnsigned = true;
370 else if (isUnsigned)
389 else if (isUnsigned)
/external/swiftshader/third_party/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(const APInt &I, bool isUnsigned = true)
34 : APInt(I), IsUnsigned(isUnsigned) {}
56 bool isUnsigned() const { return IsUnsigned; } function in class:llvm::APSInt
/external/clang/lib/Lex/
H A DPPExpressions.cpp49 bool isUnsigned() const { return Val.isUnsigned(); } function in class:__anon1738::PPValue
302 Result.Val.setIsUnsigned(Literal.isUnsigned);
308 if (!Literal.isUnsigned && Result.Val.isNegative()) {
428 bool Overflow = !Result.isUnsigned() && Result.Val.isMinSignedValue();
613 Res.setIsUnsigned(LHS.isUnsigned()|RHS.isUnsigned());
616 if (ValueLive && Res.isUnsigned()) {
617 if (!LHS.isUnsigned() && LHS.Val.isNegative())
622 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/skia/src/sksl/ir/
H A DSkSLType.h228 bool isUnsigned() const { function in class:SkSL::Type
236 return isSigned() || isUnsigned();
/external/skqp/src/sksl/ir/
H A DSkSLType.h228 bool isUnsigned() const { function in class:SkSL::Type
236 return isSigned() || isUnsigned();
/external/swiftshader/third_party/LLVM/include/llvm/
H A DInstrTypes.h781 bool isUnsigned() const { function in class:llvm::CmpInst
782 return isUnsigned(getPredicate());
799 static bool isUnsigned(unsigned short predicate);
/external/swiftshader/third_party/LLVM/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp614 bool isUnsigned = false; local
644 isUnsigned = true; // FALLTHROUGH
654 isUnsigned = true; // FALLTHROUGH
664 isUnsigned = true; // FALLTHROUGH
674 isUnsigned = true; // FALLTHROUGH
684 return DAG.getNode((isUnsigned ? SystemZISD::UCMP : SystemZISD::CMP),
/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.h1016 bool isUnsigned() const { function in class:llvm::CmpInst
1017 return isUnsigned(getPredicate());
1059 static bool isUnsigned(Predicate predicate);
/external/llvm/lib/Target/Hexagon/
H A DHexagonHardwareLoops.cpp138 static bool isUnsigned(Kind Cmp) { function in struct:__anon14346::HexagonHardwareLoops::Comparison
1768 if (!Cmp || Comparison::isUnsigned(Cmp))
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DInstructions.cpp3043 bool CmpInst::isUnsigned(unsigned short predicate) { function in class:CmpInst

Completed in 632 milliseconds