HomeSort by relevance Sort by last modified time
    Searched defs:IntType (Results 1 - 7 of 7) sorted by null

  /frameworks/compile/slang/
slang_rs_export_foreach.cpp 509 const clang::QualType &IntType = FD->getASTContext().IntTy;
510 if (FD->getResultType().getCanonicalType() == IntType) {
560 const clang::QualType &IntType = FD->getASTContext().IntTy;
567 if (QT != IntType) {
580 if (FD->getResultType().getCanonicalType() != IntType) {
  /external/clang/lib/StaticAnalyzer/Core/
RangeConstraintManager.cpp 382 APSIntType IntType = BV.getAPSIntType(T);
383 Result = Result.Intersect(BV, F, ++IntType.getZeroValue(),
384 --IntType.getZeroValue());
SimpleSValBuilder.cpp 373 APSIntType IntType = BasicVals.getAPSIntType(resultTy);
374 IntType.apply(LHSValue);
375 IntType.apply(RHSValue);
484 APSIntType IntType = BasicVals.getAPSIntType(resultTy);
485 const llvm::APSInt &first = IntType.convert(symIntExpr->getRHS());
486 const llvm::APSInt &second = IntType.convert(*RHSValue);
    [all...]
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 393 IntegerType *IntType = dyn_cast<IntegerType>(LoadTy);
396 if (!IntType) {
419 unsigned BytesLoaded = (IntType->getBitWidth() + 7) / 8;
438 return UndefValue::get(IntType);
445 APInt ResultVal = APInt(IntType->getBitWidth(), RawBytes[BytesLoaded-1]);
451 return ConstantInt::get(IntType->getContext(), ResultVal);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 66 IntegerType* IntType = IntegerType::get(MI->getContext(), Size<<3);
67 Type *NewSrcPtrTy = PointerType::get(IntType, SrcAddrSp);
68 Type *NewDstPtrTy = PointerType::get(IntType, DstAddrSp);
    [all...]
  /external/clang/include/clang/Basic/
TargetInfo.h 115 enum IntType {
157 IntType SizeType, IntMaxType, UIntMaxType, PtrDiffType, IntPtrType, WCharType,
186 IntType getSizeType() const { return SizeType; }
187 IntType getIntMaxType() const { return IntMaxType; }
188 IntType getUIntMaxType() const { return UIntMaxType; }
189 IntType getPtrDiffType(unsigned AddrSpace) const {
192 IntType getIntPtrType() const { return IntPtrType; }
193 IntType getWCharType() const { return WCharType; }
194 IntType getWIntType() const { return WIntType; }
195 IntType getChar16Type() const { return Char16Type;
    [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp 56 QualType T, llvm::IntegerType *IntType) {
60 return CGF.Builder.CreatePtrToInt(V, IntType);
62 assert(V->getType() == IntType);
92 llvm::IntegerType *IntType =
95 llvm::Type *IntPtrType = IntType->getPointerTo(AddrSpace);
101 Args[1] = EmitToInt(CGF, Args[1], T, IntType);
127 llvm::IntegerType *IntType =
130 llvm::Type *IntPtrType = IntType->getPointerTo(AddrSpace);
135 Args[1] = EmitToInt(CGF, Args[1], T, IntType);
    [all...]

Completed in 332 milliseconds