Searched defs:IntType (Results 1 - 10 of 10) sorted by relevance

/external/llvm/unittests/Analysis/
H A DMixedTBAATest.cpp39 auto IntType = Type::getInt32Ty(C); local
41 auto *Value = ConstantInt::get(IntType, 42);
/external/clang/lib/StaticAnalyzer/Core/
H A DRangeConstraintManager.cpp355 APSIntType IntType = BV.getAPSIntType(Sym->getType()); local
356 llvm::APSInt Zero = IntType.getZeroValue();
398 APSIntType IntType = BV.getAPSIntType(T); local
399 Result = Result.Intersect(BV, F, ++IntType.getZeroValue(),
400 --IntType.getZeroValue());
H A DSimpleSValBuilder.cpp378 APSIntType IntType = BasicVals.getAPSIntType(resultTy); local
379 IntType.apply(LHSValue);
380 IntType.apply(RHSValue);
493 APSIntType IntType = BasicVals.getAPSIntType(resultTy); local
494 const llvm::APSInt &first = IntType.convert(symIntExpr->getRHS());
495 const llvm::APSInt &second = IntType.convert(*RHSValue);
/external/llvm/unittests/Transforms/Utils/
H A DCloning.cpp256 DIType IntType = DBuilder.createBasicType("int", 32, 0, local
259 dwarf::DW_TAG_auto_variable, Subprogram, "x", File, 5, IntType, true);
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-open-type-private.hh565 struct IntType struct in namespace:OT
569 inline bool operator == (const IntType<Type,Size> &o) const { return v == o.v; } argument
570 inline bool operator != (const IntType<Type,Size> &o) const { return v != o.v; } argument
571 static inline int cmp (const IntType<Type,Size> *a, const IntType<Type,Size> *b) { return b->cmp (*a); } argument
572 inline int cmp (IntType<Type,Size> va) const { Type a = va; Type b = v; return a < b ? -1 : a == b ? 0 : +1; }
585 typedef IntType<uint16_t, 2> USHORT; /* 16-bit unsigned integer. */
586 typedef IntType<int16_t, 2> SHORT; /* 16-bit signed integer. */
587 typedef IntType<uint32_t, 4> ULONG; /* 32-bit unsigned integer. */
588 typedef IntType<int32_
[all...]
/external/harfbuzz_ng/src/
H A Dhb-open-type-private.hh565 struct IntType struct in namespace:OT
569 inline bool operator == (const IntType<Type,Size> &o) const { return v == o.v; } argument
570 inline bool operator != (const IntType<Type,Size> &o) const { return v != o.v; } argument
571 static inline int cmp (const IntType<Type,Size> *a, const IntType<Type,Size> *b) { return b->cmp (*a); } argument
572 inline int cmp (IntType<Type,Size> va) const { Type a = va; Type b = v; return a < b ? -1 : a == b ? 0 : +1; }
585 typedef IntType<uint16_t, 2> USHORT; /* 16-bit unsigned integer. */
586 typedef IntType<int16_t, 2> SHORT; /* 16-bit signed integer. */
587 typedef IntType<uint32_t, 4> ULONG; /* 32-bit unsigned integer. */
588 typedef IntType<int32_
[all...]
/external/llvm/lib/Analysis/
H A DConstantFolding.cpp397 IntegerType *IntType = dyn_cast<IntegerType>(LoadTy); local
400 if (!IntType) {
427 unsigned BytesLoaded = (IntType->getBitWidth() + 7) / 8;
449 return UndefValue::get(IntType);
456 APInt ResultVal = APInt(IntType->getBitWidth(), 0);
471 return ConstantInt::get(IntType->getContext(), ResultVal);
/external/clang/include/clang/Basic/
H A DTargetInfo.h110 enum IntType { enum in class:clang::TargetInfo
173 IntType SizeType, IntMaxType, UIntMaxType, PtrDiffType, IntPtrType, WCharType,
207 IntType getSizeType() const { return SizeType; }
208 IntType getIntMaxType() const { return IntMaxType; }
209 IntType getUIntMaxType() const { return UIntMaxType; }
210 IntType getPtrDiffType(unsigned AddrSpace) const {
213 IntType getIntPtrType() const { return IntPtrType; }
214 IntType getUIntPtrType() const {
217 IntType getWCharType() const { return WCharType; }
218 IntType getWIntTyp
[all...]
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp93 IntegerType* IntType = IntegerType::get(MI->getContext(), Size<<3); local
94 Type *NewSrcPtrTy = PointerType::get(IntType, SrcAddrSp);
95 Type *NewDstPtrTy = PointerType::get(IntType, DstAddrSp);
/external/clang/lib/CodeGen/
H A DCGBuiltin.cpp57 QualType T, llvm::IntegerType *IntType) {
61 return CGF.Builder.CreatePtrToInt(V, IntType);
63 assert(V->getType() == IntType);
92 llvm::IntegerType *IntType = local
95 llvm::Type *IntPtrType = IntType->getPointerTo(AddrSpace);
101 Args[1] = EmitToInt(CGF, Args[1], T, IntType);
126 llvm::IntegerType *IntType = local
129 llvm::Type *IntPtrType = IntType->getPointerTo(AddrSpace);
134 Args[1] = EmitToInt(CGF, Args[1], T, IntType);
963 llvm::IntegerType *IntType local
56 EmitToInt(CodeGenFunction &CGF, llvm::Value *V, QualType T, llvm::IntegerType *IntType) argument
992 llvm::IntegerType *IntType = local
1524 llvm::IntegerType *IntType = local
[all...]

Completed in 2837 milliseconds