HomeSort by relevance Sort by last modified time
    Searched refs:OutTy (Results 1 - 2 of 2) sorted by null

  /external/clang/lib/Sema/
SemaStmtAsm.cpp 410 QualType OutTy = OutputExpr->getType();
411 if (Context.hasSameType(InTy, OutTy))
427 if (OutTy->isIntegerType() || OutTy->isPointerType())
429 else if (OutTy->isRealFloatingType())
440 uint64_t OutSize = Context.getTypeSize(OutTy);
480 (OutTy->isBooleanType() ? CK_IntegralToBoolean : CK_IntegralCast);
481 InputExpr = ImpCastExprToType(InputExpr, OutTy, castKind).get();
489 << InTy << OutTy << OutputExpr->getSourceRange()
  /frameworks/compile/libbcc/lib/Renderscript/
RSForEachExpand.cpp 567 llvm::Type *OutTy = nullptr;
570 OutTy = (FunctionArgIter++)->getType();
571 OutStep = getStepValue(&DL, OutTy, Arg_outstep);
605 // values and only cast at the very end to OutTy. This is because the step
609 // type 'OutTy' in cases where the element type of the allocation allows.
614 OutPtr = Builder.CreatePointerCast(OutPtr, OutTy);
708 llvm::Type *OutTy = nullptr;
720 OutTy = ArgIter->getType();
726 OutTy = OutBaseTy->getPointerTo();
729 OutStep = getStepValue(&DL, OutTy, Arg_outstep)
    [all...]

Completed in 56 milliseconds