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

  /frameworks/compile/slang/
slang_rs_export_foreach.cpp 327 const clang::QualType &IntType = FD->getASTContext().IntTy;
328 if (FD->getResultType().getCanonicalType() == IntType) {
373 const clang::QualType &IntType = FD->getASTContext().IntTy;
380 if (QT != IntType) {
393 if (FD->getResultType().getCanonicalType() != IntType) {
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 390 IntegerType *IntType = dyn_cast<IntegerType>(LoadTy);
393 if (!IntType) {
416 unsigned BytesLoaded = (IntType->getBitWidth() + 7) / 8;
435 return UndefValue::get(IntType);
442 APInt ResultVal = APInt(IntType->getBitWidth(), RawBytes[BytesLoaded-1]);
448 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 113 enum IntType {
132 IntType SizeType, IntMaxType, UIntMaxType, PtrDiffType, IntPtrType, WCharType,
158 IntType getSizeType() const { return SizeType; }
159 IntType getIntMaxType() const { return IntMaxType; }
160 IntType getUIntMaxType() const { return UIntMaxType; }
161 IntType getPtrDiffType(unsigned AddrSpace) const {
164 IntType getIntPtrType() const { return IntPtrType; }
165 IntType getWCharType() const { return WCharType; }
166 IntType getWIntType() const { return WIntType; }
167 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 160 milliseconds