HomeSort by relevance Sort by last modified time
    Searched full:retty (Results 26 - 50 of 102) sorted by null

12 3 4 5

  /external/clang/lib/CodeGen/
CGCall.cpp 78 static CanQualType GetReturnType(QualType RetTy) {
79 return RetTy->getCanonicalTypeUnqualified().getUnqualifiedType();
    [all...]
CGAtomic.cpp 793 QualType RetTy;
808 RetTy = getContext().BoolTy;
    [all...]
CodeGenFunction.cpp 587 QualType RetTy,
601 FnRetTy = RetTy;
668 getContext().getFunctionType(RetTy, ArgTypes,
679 if (RetTy->isVoidType()) {
703 ReturnValue = CreateIRTemp(RetTy, "retval");
710 RetTy->isObjCRetainableType())
    [all...]
  /external/clang/utils/ABITest/
TypeGen.py 402 retTy = self.typeGen.get(retIndex)
404 retTy = None
407 return FunctionType(N, retTy, args)
  /external/llvm/lib/Target/NVPTX/
NVPTXISelLowering.cpp     [all...]
  /frameworks/compile/libbcc/lib/Renderscript/
RSScriptGroupFusion.cpp 176 llvm::Type* retTy = lastF->getReturnType();
178 return llvm::FunctionType::get(retTy, ArgTys, false);
  /external/clang/lib/StaticAnalyzer/Checkers/
CallAndMessageChecker.cpp 537 QualType RetTy = Msg.getResultType();
538 CanQualType CanRetTy = Ctx.getCanonicalType(RetTy);
543 SVal V = C.getSValBuilder().makeZeroVal(RetTy);
581 SVal V = C.getSValBuilder().makeZeroVal(RetTy);
  /external/clang/patches/
0003-Add-support-for-RenderScript-specific-options.patch 98 QualType RetTy = FD->getReturnType();
  /external/llvm/include/llvm/Transforms/Utils/
CodeExtractor.h 54 Type *RetTy;
  /external/llvm/lib/CodeGen/
IntrinsicLowering.cpp 30 Type *RetTy) {
35 M.getOrInsertFunction(Name, FunctionType::get(RetTy, ParamTys, false));
67 Type *RetTy) {
76 FunctionType::get(RetTy, ParamTys, false));
  /external/llvm/lib/Transforms/Utils/
CodeExtractor.cpp 304 case 1: RetTy = Type::getVoidTy(header->getContext()); break;
305 case 2: RetTy = Type::getInt1Ty(header->getContext()); break;
306 default: RetTy = Type::getInt16Ty(header->getContext()); break;
329 DEBUG(dbgs() << "Function type: " << *RetTy << " f(");
342 FunctionType::get(RetTy, paramTy, false);
  /external/valgrind/VEX/priv/
host_tilegx_isel.c 215 IRExpr ** args, IRType retTy )
1085 vassert(ty == e->Iex.CCall.retty);
1089 e->Iex.CCall.retty);
1483 IRType retty; local
    [all...]
host_amd64_isel.c 432 IRCallee* cee, IRType retTy, IRExpr** args )
536 if (retTy == Ity_V128 || retTy == Ity_V256)
599 if (retTy == Ity_V128) {
604 else if (retTy == Ity_V256) {
658 if (retTy == Ity_V128 || retTy == Ity_V256) {
668 switch (retTy) {
4565 IRType retty = Ity_INVALID; local
    [all...]
host_arm64_isel.c 480 IRCallee* cee, IRType retTy, IRExpr** args )
576 vassert(retTy == Ity_V128 || retTy == Ity_V256);
577 vassert(retTy != Ity_V256); // we don't handle that yet (if ever)
583 vassert(retTy != Ity_V128 && retTy != Ity_V256);
626 if (retTy == Ity_V128 || retTy == Ity_V256)
737 vassert(nVECRETs == (retTy == Ity_V128 || retTy == Ity_V256) ? 1 : 0)
3704 IRType retty = Ity_INVALID; local
    [all...]
host_x86_isel.c 432 IRCallee* cee, IRType retTy, IRExpr** args )
525 vassert(retTy == Ity_V128 || retTy == Ity_V256);
526 vassert(retTy != Ity_V256); // we don't handle that yet (if ever)
532 vassert(retTy != Ity_V128 && retTy != Ity_V256);
658 switch (retTy) {
4089 IRType retty = Ity_INVALID; local
    [all...]
host_s390_isel.c 514 IRCallee *callee, IRType retTy, IRExpr **args)
620 switch (retTy) {
632 ppIRType(retTy);
3768 IRType retty; local
    [all...]
ir_defs.c     [all...]
  /external/llvm/include/llvm/Bitcode/
LLVMBitCodes.h 101 TYPE_CODE_FUNCTION_OLD = 9, // FUNCTION: [vararg, attrid, retty,
124 TYPE_CODE_FUNCTION = 21 // FUNCTION: [vararg, retty, paramty x N]
  /external/iproute2/tc/
tc.c 218 " OPTIONS := { -s[tatistics] | -d[etails] | -r[aw] | -p[retty] | -b[atch] [filename] }\n");
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 250 void popStackAndReturnValueToCaller(Type *RetTy, GenericValue Result);
  /external/llvm/lib/IR/
Type.cpp 385 bool FunctionType::isValidReturnType(Type *RetTy) {
386 return !RetTy->isFunctionTy() && !RetTy->isLabelTy() &&
387 !RetTy->isMetadataTy();
  /external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp 697 Type *RetTy = ForceRetVoidTy ? Type::getVoidTy(CI->getType()->getContext())
699 CLI.setCallee(CI->getCallingConv(), RetTy, Callee, std::move(Args), NumArgs);
851 return AttributeSet::get(CLI.RetTy->getContext(), AttributeSet::ReturnIndex,
    [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp 259 Type *RetTy =
261 if (!isTypeLegal(RetTy, RetVT))
    [all...]
  /external/iproute2/man/man8/
tc.8 

Completed in 2595 milliseconds

12 3 4 5