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

  /frameworks/compile/slang/
slang_rs_foreach_lowering.cpp 153 const clang::QualType& AllocTy = mCtxt->getAllocationType();
154 clang::QualType AllocPtrTy = mASTCtxt.getPointerType(AllocTy);
288 const clang::QualType& AllocTy = mCtxt->getAllocationType();
291 AllocTy,
328 const clang::QualType AllocPtrTy = mASTCtxt.getPointerType(AllocTy);
  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 46 AllocType AllocTy;
101 static const AllocFnsTy *getAllocationData(const Value *V, AllocType AllocTy,
125 if ((FnData->AllocTy & AllocTy) != FnData->AllocTy)
477 if (FnData->AllocTy == StrDupLike) {
693 if (FnData->AllocTy == StrDupLike) {
ScalarEvolution.cpp 213 Type *AllocTy;
214 if (U->isSizeOf(AllocTy)) {
215 OS << "sizeof(" << *AllocTy << ")";
218 if (U->isAlignOf(AllocTy)) {
219 OS << "alignof(" << *AllocTy << ")";
380 bool SCEVUnknown::isSizeOf(Type *&AllocTy) const {
389 AllocTy = cast<PointerType>(CE->getOperand(0)->getType())
397 bool SCEVUnknown::isAlignOf(Type *&AllocTy) const {
413 AllocTy = STy->getElementType(1);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 695 Type *AllocTy = GetElementPtrInst::getIndexedType(
699 if (!AllocTy || !AllocTy->isSized())
702 uint64_t TyAllocSize = DL.getTypeAllocSize(AllocTy);
    [all...]

Completed in 71 milliseconds