HomeSort by relevance Sort by last modified time
    Searched refs:VoidTy (Results 1 - 25 of 67) sorted by null

1 2 3

  /external/llvm/include/llvm/Support/
ThreadPool.h 53 using VoidTy = void;
59 using VoidTy = bool;
77 inline std::shared_future<VoidTy> async(Function &&F, Args &&... ArgList) {
85 return asyncImpl([Task](VoidTy) mutable -> VoidTy {
87 return VoidTy();
95 inline std::shared_future<VoidTy> async(Function &&F) {
99 return asyncImpl([F] (VoidTy) -> VoidTy { F(); return VoidTy(); });
    [all...]
  /external/llvm/lib/Support/
ThreadPool.cpp 82 std::shared_future<ThreadPool::VoidTy> ThreadPool::asyncImpl(TaskTy Task) {
136 std::shared_future<ThreadPool::VoidTy> ThreadPool::asyncImpl(TaskTy Task) {
  /external/clang/lib/CodeGen/
CodeGenTypeCache.h 34 llvm::Type *VoidTy;
CGDeclCXX.cpp 190 llvm::FunctionType *ty = llvm::FunctionType::get(CGM.VoidTy, false);
204 CGF.StartFunction(&VD, CGM.getContext().VoidTy, fn, FI, FunctionArgList());
312 llvm::FunctionType *FTy = llvm::FunctionType::get(VoidTy, false);
397 llvm::FunctionType *FTy = llvm::FunctionType::get(VoidTy, false);
464 llvm::FunctionType *FTy = llvm::FunctionType::get(VoidTy, false);
486 StartFunction(GlobalDecl(D), getContext().VoidTy, Fn,
509 StartFunction(GlobalDecl(), getContext().VoidTy, Fn,
560 StartFunction(GlobalDecl(), getContext().VoidTy, Fn,
591 getContext().VoidTy, args, FunctionType::ExtInfo(), /*variadic=*/false);
598 StartFunction(VD, getContext().VoidTy, fn, FI, args)
    [all...]
CGCUDANV.cpp 32 llvm::Type *IntTy, *SizeTy, *VoidTy;
87 VoidTy = llvm::Type::getVoidTy(Context);
172 llvm::FunctionType::get(VoidTy, VoidPtrPtrTy, false),
229 llvm::FunctionType::get(VoidTy, VoidPtrTy, false),
296 llvm::FunctionType::get(VoidTy, VoidPtrPtrTy, false),
300 llvm::FunctionType::get(VoidTy, VoidPtrTy, false),
CGOpenMPRuntime.cpp 312 Kmpc_MicroTy = llvm::FunctionType::get(CGM.VoidTy, MicroParams, true);
528 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ true);
558 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false);
569 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false);
587 llvm::FunctionType::get(CGM.VoidTy, CGM.VoidPtrTy, /*isVarArg*/ false)
591 auto FnTy = llvm::FunctionType::get(CGM.VoidTy, FnTyArgs,
603 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false);
620 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false);
628 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false);
638 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false)
    [all...]
CGObjCGNU.cpp     [all...]
CGObjC.cpp 503 CGF.getContext().VoidTy,
593 CGF.EmitCall(CGF.getTypes().arrangeFreeFunctionCall(Context.VoidTy, args,
    [all...]
CGBlocks.cpp     [all...]
CGException.cpp 36 llvm::FunctionType::get(CGM.VoidTy, CGM.Int8PtrTy, /*IsVarArgs=*/false);
45 llvm::FunctionType::get(CGM.VoidTy, CGM.Int8PtrTy, /*IsVarArgs=*/false);
54 llvm::FunctionType::get(VoidTy, /*IsVarArgs=*/false);
79 llvm::FunctionType::get(CGM.VoidTy, CGM.Int8PtrTy, /*IsVarArgs=*/false);
    [all...]
ItaniumCXXABI.cpp     [all...]
CGVTables.cpp 607 llvm::FunctionType::get(CGM.VoidTy, /*isVarArg=*/false);
617 llvm::FunctionType::get(CGM.VoidTy, /*isVarArg=*/false);
    [all...]
CGObjCMac.cpp 81 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(CGM.VoidTy,
146 llvm::FunctionType::get(CGM.VoidTy, params, true),
157 llvm::FunctionType::get(CGM.VoidTy, params, true),
268 Ctx.VoidTy, false, false, Params, FunctionType::ExtInfo(),
294 Ctx.VoidTy, false, false, Params, FunctionType::ExtInfo(),
321 Ctx.VoidTy, false, false, Params, FunctionType::ExtInfo(),
339 Types.GetFunctionType(Types.arrangeLLVMFunctionInfo(Ctx.VoidTy, false, false,
354 Ctx.VoidTy, false, false, Params, FunctionType::ExtInfo(),
427 llvm::FunctionType::get(CGM.VoidTy, args, false);
434 llvm::FunctionType *FTy = llvm::FunctionType::get(CGM.VoidTy, false)
    [all...]
  /frameworks/compile/slang/
slang_rs_special_func.cpp 92 if (FD->getReturnType().getCanonicalType() != C.VoidTy) {
slang_rs_export_foreach.cpp 96 if (mResultType != C.VoidTy) {
182 mHasReturnType = (mResultType != C.VoidTy);
336 C.VoidTy) {
slang_rs_export_func.cpp 39 if (FD->getReturnType().getCanonicalType() != C.VoidTy) {
slang_rs_context.cpp 357 const clang::QualType VoidPtrType = mCtx.getPointerType(mCtx.VoidTy);
slang_rs_foreach_lowering.cpp 168 mASTCtxt.VoidTy, // Return type
  /external/llvm/lib/Transforms/Instrumentation/
SanitizerCoverage.cpp 190 Type *VoidTy = Type::getVoidTy(*C);
198 M.getOrInsertFunction(kSanCovName, VoidTy, Int32PtrTy, nullptr));
200 M.getOrInsertFunction(kSanCovWithCheckName, VoidTy, Int32PtrTy, nullptr));
203 kSanCovIndirCallName, VoidTy, IntptrTy, IntptrTy, nullptr));
206 kSanCovTraceCmp, VoidTy, Int64Ty, Int64Ty, Int64Ty, nullptr));
209 kSanCovTraceSwitch, VoidTy, Int64Ty, Int64PtrTy, nullptr));
217 M.getOrInsertFunction(kSanCovTraceEnter, VoidTy, Int32PtrTy, nullptr));
219 M.getOrInsertFunction(kSanCovTraceBB, VoidTy, Int32PtrTy, nullptr));
InstrProfiling.cpp 382 auto *VoidTy = Type::getVoidTy(M->getContext());
384 auto *RegisterFTy = FunctionType::get(VoidTy, false);
390 auto *RuntimeRegisterTy = FunctionType::get(VoidTy, VoidPtrTy, false);
468 auto *VoidTy = Type::getVoidTy(M->getContext());
469 auto *F = Function::Create(FunctionType::get(VoidTy, false),
482 auto *SetNameTy = FunctionType::get(VoidTy, Int8PtrTy, false);
  /external/clang/lib/AST/
ItaniumCXXABI.cpp 67 Context.getFunctionType(Context.VoidTy, Proto->getParamTypes(),
  /frameworks/compile/libbcc/lib/Renderscript/
RSKernelExpand.cpp 303 llvm::Type *VoidTy = llvm::Type::getVoidTy(*Context);
307 ExpandedForEachType = llvm::FunctionType::get(VoidTy,
346 llvm::Type *VoidTy = llvm::Type::getVoidTy(*Context);
348 llvm::FunctionType::get(VoidTy,
    [all...]
  /external/clang/lib/Analysis/
BodyFarm.cpp 207 CallExpr *CE = new (C) CallExpr(C, ICE, None, C.VoidTy, VK_RValue,
268 CallExpr *CE = new (C) CallExpr(C, ICE, None, C.VoidTy, VK_RValue,
  /external/llvm/lib/IR/
LLVMContextImpl.cpp 24 VoidTy(C, Type::VoidTyID),
  /external/clang/lib/StaticAnalyzer/Core/
Store.cpp 89 if (CanonPointeeTy.getLocalUnqualifiedType() == Ctx.VoidTy)

Completed in 440 milliseconds

1 2 3