HomeSort by relevance Sort by last modified time
    Searched refs:isUnsigned (Results 1 - 25 of 38) sorted by null

1 2

  /external/clang/test/CodeGen/
pascal-wchar-string.c 38 // CHECK: store volatile i32 1, i32* %isUnsigned
40 volatile int isUnsigned = (wchar_t)-1 > (wchar_t)0;
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
APSIntType.h 21 bool IsUnsigned;
25 : BitWidth(Width), IsUnsigned(Unsigned) {}
28 : BitWidth(Value.getBitWidth()), IsUnsigned(Value.isUnsigned()) {}
31 bool isUnsigned() const { return IsUnsigned; }
41 Value.setIsUnsigned(IsUnsigned);
49 llvm::APSInt Result(Value, Value.isUnsigned());
56 return llvm::APSInt(BitWidth, IsUnsigned);
61 return llvm::APSInt::getMinValue(BitWidth, IsUnsigned);
    [all...]
BasicValueFactory.h 79 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) {
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) {
158 return getValue(X, Ctx.getTypeSize(Ctx.VoidPtrTy), isUnsigned);
SValBuilder.h 244 NonLoc makeIntVal(const llvm::APInt& integer, bool isUnsigned) {
245 return nonloc::ConcreteInt(BasicVals.getValue(integer, isUnsigned));
255 NonLoc makeIntVal(uint64_t integer, bool isUnsigned) {
256 return nonloc::ConcreteInt(BasicVals.getIntValue(integer, isUnsigned));
259 NonLoc makeIntValWithPtrWidth(uint64_t integer, bool isUnsigned) {
261 BasicVals.getIntWithPtrWidth(integer, isUnsigned));
  /frameworks/compile/slang/
slang_rs_export_var.h 56 inline bool isUnsigned() const { return mIsUnsigned; }
  /external/clang/lib/Lex/
PPExpressions.cpp 43 bool isUnsigned() const { return Val.isUnsigned(); }
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() && RHS.Val.isNegative()
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
BasicValueFactory.cpp 90 bool isUnsigned) {
91 llvm::APSInt V(X, isUnsigned);
96 bool isUnsigned) {
97 llvm::APSInt V(BitWidth, isUnsigned);
SVals.cpp 255 if (C.getValue().isUnsigned())
259 os << ' ' << (C.getValue().isUnsigned() ? 'U' : 'S')
SymbolManager.cpp 36 if (getRHS().isUnsigned())
42 if (getLHS().isUnsigned())
SimpleSValBuilder.cpp 886 assert(leftI.isUnsigned());
887 llvm::APSInt rightI(rhsInt->getValue(), /* isUnsigned */ true);
    [all...]
  /external/llvm/include/llvm/ADT/
APSInt.h 23 bool IsUnsigned;
26 explicit APSInt() : IsUnsigned(false) {}
30 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) {}
38 IsUnsigned = RHS.IsUnsigned;
    [all...]
  /external/clang/include/clang/Basic/
TargetBuiltins.h 89 NeonTypeFlags(EltType ET, bool IsUnsigned, bool IsQuad) : Flags(ET) {
90 if (IsUnsigned)
101 bool isUnsigned() const { return (Flags & UnsignedFlag) != 0; }
  /external/clang/include/clang/Lex/
LiteralSupport.h 56 bool isUnsigned;
  /external/webkit/Source/JavaScriptCore/jit/
JITArithmetic32_64.cpp 403 void JIT::emitRightShift(Instruction* currentInstruction, bool isUnsigned)
415 if (isUnsigned) {
434 if (isUnsigned) {
442 void JIT::emitRightShiftSlowCase(Instruction* currentInstruction, Vector<SlowCaseEntry>::iterator& iter, bool isUnsigned)
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);
    [all...]
JIT.h     [all...]
  /external/llvm/include/llvm/IR/
InstrTypes.h     [all...]
  /external/webkit/Source/JavaScriptCore/assembler/
ARMv7Assembler.h     [all...]
  /external/clang/lib/Sema/
SemaInit.cpp     [all...]
SemaChecking.cpp 335 return Flags.isUnsigned() ? Context.UnsignedCharTy : Context.SignedCharTy;
337 return Flags.isUnsigned() ? Context.UnsignedShortTy : Context.ShortTy;
339 return Flags.isUnsigned() ? Context.UnsignedIntTy : Context.IntTy;
341 return Flags.isUnsigned() ? Context.UnsignedLongLongTy : Context.LongLongTy;
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp 419 } else if (ICI->isUnsigned()) {
    [all...]
InstCombineCompares.cpp     [all...]
  /external/clang/lib/AST/
MicrosoftMangle.cpp 332 llvm::APSInt APSNumber(/*BitWidth=*/64, /*isUnsigned=*/false);
358 llvm::APSInt NibbleMask(Value.getBitWidth(), Value.isUnsigned());
    [all...]
ExprConstant.cpp     [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp     [all...]

Completed in 860 milliseconds

1 2