Searched defs:isUnsigned (Results 1 - 14 of 14) 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.h28 : BitWidth(Value.getBitWidth()), IsUnsigned(Value.isUnsigned()) {}
31 bool isUnsigned() const { return IsUnsigned; } function in class:clang::ento::APSIntType
49 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.h244 NonLoc makeIntVal(const llvm::APInt& integer, bool isUnsigned) { argument
245 return nonloc::ConcreteInt(BasicVals.getValue(integer, isUnsigned));
255 NonLoc makeIntVal(uint64_t integer, bool isUnsigned) { argument
256 return nonloc::ConcreteInt(BasicVals.getIntValue(integer, isUnsigned));
259 NonLoc makeIntValWithPtrWidth(uint64_t integer, bool isUnsigned) { argument
261 BasicVals.getIntWithPtrWidth(integer, isUnsigned));
/external/clang/include/clang/Basic/
H A DTargetBuiltins.h101 bool isUnsigned() const { return (Flags & UnsignedFlag) != 0; } function in class:clang::NeonTypeFlags
/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/lib/Lex/
H A DPPExpressions.cpp43 bool isUnsigned() const { return Val.isUnsigned(); } function in class:__anon3808::PPValue
248 Result.Val.setIsUnsigned(Literal.isUnsigned);
254 if (!Literal.isUnsigned && Result.Val.isNegative()) {
367 bool Overflow = !Result.isUnsigned() && Result.Val.isMinSignedValue();
543 Res.setIsUnsigned(LHS.isUnsigned()|RHS.isUnsigned());
546 if (ValueLive && Res.isUnsigned()) {
547 if (!LHS.isUnsigned() && LHS.Val.isNegative())
552 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(const APInt &I, bool isUnsigned = true)
34 : APInt(I), IsUnsigned(isUnsigned) {}
56 bool isUnsigned() const { return IsUnsigned; } function in class:llvm::APSInt
/external/clang/include/clang/Lex/
H A DLiteralSupport.h56 bool isUnsigned; member in class:clang::NumericLiteralParser
/external/llvm/include/llvm/IR/
H A DInstrTypes.h780 bool isUnsigned() const { function in class:llvm::CmpInst
781 return isUnsigned(getPredicate());
798 static bool isUnsigned(unsigned short predicate);
/external/webkit/Source/JavaScriptCore/jit/
H A DJITArithmetic32_64.cpp403 void JIT::emitRightShift(Instruction* currentInstruction, bool isUnsigned) argument
415 if (isUnsigned) {
434 if (isUnsigned) {
442 void JIT::emitRightShiftSlowCase(Instruction* currentInstruction, Vector<SlowCaseEntry>::iterator& iter, bool isUnsigned) argument
456 if (isUnsigned) {
467 if (isUnsigned && (shift < 0 || !(shift & 31)))
479 if (isUnsigned)
492 if (isUnsigned)
496 JITStubCall stubCall(this, isUnsigned ? cti_op_urshift : cti_op_rshift);
/external/llvm/lib/IR/
H A DInstructions.cpp3087 bool CmpInst::isUnsigned(unsigned short predicate) { function in class:CmpInst
/external/webkit/Source/JavaScriptCore/assembler/
H A DARMv7Assembler.h1894 VFPOperand vcvtOp(bool toInteger, bool isUnsigned, bool isRoundZero) argument
1901 // opc2 indicates both toInteger & isUnsigned.
1902 op |= isUnsigned ? 0x4 : 0x5;
1907 // 'op' field in instruction is isUnsigned
1908 if (!isUnsigned)
/external/clang/lib/Serialization/
H A DASTReader.cpp6863 bool isUnsigned = Record[Idx++]; local
6864 return llvm::APSInt(ReadAPInt(Record, Idx), isUnsigned);

Completed in 314 milliseconds