Home
last modified time | relevance | path

Searched refs:MaxThreads (Results 1 – 11 of 11) sorted by relevance

/external/llvm/lib/Target/XCore/
DXCoreLowerThreadLocal.cpp33 static cl::opt<unsigned> MaxThreads( variable
65 return ArrayType::get(OriginalType, MaxThreads); in createLoweredType()
70 SmallVector<Constant *, 8> Elements(MaxThreads); in createLoweredInitializer()
71 for (unsigned i = 0; i != MaxThreads; ++i) { in createLoweredInitializer()
/external/swiftshader/third_party/LLVM/lib/Target/XCore/
DXCoreAsmPrinter.cpp46 static cl::opt<unsigned> MaxThreads("xcore-max-threads", cl::Optional, variable
157 Size *= MaxThreads; in EmitGlobalVariable()
168 for (unsigned i = 1; i < MaxThreads; ++i) in EmitGlobalVariable()
/external/llvm/tools/gold/
Dgold-plugin.cpp1077 unsigned int MaxThreads = options::Parallelism ? options::Parallelism : 1; in runSplitCodeGen() local
1079 std::vector<SmallString<128>> Filenames(MaxThreads); in runSplitCodeGen()
1080 std::vector<SmallString<128>> BCFilenames(MaxThreads); in runSplitCodeGen()
1086 std::vector<llvm::raw_pwrite_stream *> OSPtrs(MaxThreads); in runSplitCodeGen()
1087 for (unsigned I = 0; I != MaxThreads; ++I) { in runSplitCodeGen()
1090 MaxThreads > 1 ? I : -1); in runSplitCodeGen()
1097 if (!BCFilename.empty() && MaxThreads > 1) { in runSplitCodeGen()
1098 for (unsigned I = 0; I != MaxThreads; ++I) { in runSplitCodeGen()
1218 unsigned int MaxThreads = options::Parallelism in thinLTOBackends() local
1225 ThreadPool ThinLTOThreadPool(MaxThreads); in thinLTOBackends()
/external/dng_sdk/source/
Ddng_area_task.h56 virtual uint32 MaxThreads () const in MaxThreads() function
/external/libdrm/intel/tests/
Dgen6-3d.batch-ref.txt120 0x123001dc: 0x4e084003: MaxThreads 40, PS KillPixel 0, PS computed Z 0, PS use sourceZ 0, T…
243 0x123003c8: 0x4e084002: MaxThreads 40, PS KillPixel 0, PS computed Z 0, PS use sourceZ 0, T…
301 0x123004b0: 0x4e084002: MaxThreads 40, PS KillPixel 0, PS computed Z 0, PS use sourceZ 0, T…
440 0x123006dc: 0x4e084002: MaxThreads 40, PS KillPixel 0, PS computed Z 0, PS use sourceZ 0, T…
510 0x123007f4: 0x4e084002: MaxThreads 40, PS KillPixel 0, PS computed Z 0, PS use sourceZ 0, T…
571 0x123008e8: 0x4e084002: MaxThreads 40, PS KillPixel 0, PS computed Z 0, PS use sourceZ 0, T…
710 0x12300b14: 0x4e084002: MaxThreads 40, PS KillPixel 0, PS computed Z 0, PS use sourceZ 0, T…
780 0x12300c2c: 0x4e084002: MaxThreads 40, PS KillPixel 0, PS computed Z 0, PS use sourceZ 0, T…
841 0x12300d20: 0x4e084002: MaxThreads 40, PS KillPixel 0, PS computed Z 0, PS use sourceZ 0, T…
980 0x12300f4c: 0x4e084002: MaxThreads 40, PS KillPixel 0, PS computed Z 0, PS use sourceZ 0, T…
/external/skia/src/codec/
DSkRawCodec.cpp102 const int maxTasks = static_cast<int>(task.MaxThreads()); in PerformAreaTask()
/external/clang/lib/Sema/
DSemaDeclAttr.cpp4084 void Sema::AddLaunchBoundsAttr(SourceRange AttrRange, Decl *D, Expr *MaxThreads, in AddLaunchBoundsAttr() argument
4086 CUDALaunchBoundsAttr TmpAttr(AttrRange, Context, MaxThreads, MinBlocks, in AddLaunchBoundsAttr()
4088 MaxThreads = makeLaunchBoundsArgExpr(*this, MaxThreads, TmpAttr, 0); in AddLaunchBoundsAttr()
4089 if (MaxThreads == nullptr) in AddLaunchBoundsAttr()
4099 AttrRange, Context, MaxThreads, MinBlocks, SpellingListIndex)); in AddLaunchBoundsAttr()
DSemaTemplateInstantiateDecl.cpp216 Expr *MaxThreads = Result.getAs<Expr>(); in instantiateDependentCUDALaunchBoundsAttr() local
226 S.AddLaunchBoundsAttr(Attr.getLocation(), New, MaxThreads, MinBlocks, in instantiateDependentCUDALaunchBoundsAttr()
/external/clang/lib/CodeGen/
DTargetInfo.cpp5746 llvm::APSInt MaxThreads(32); in setTargetAttributes() local
5747 MaxThreads = Attr->getMaxThreads()->EvaluateKnownConstInt(M.getContext()); in setTargetAttributes()
5748 if (MaxThreads > 0) in setTargetAttributes()
5749 addNVVMMetadata(F, "maxntidx", MaxThreads.getExtValue()); in setTargetAttributes()
/external/clang/include/clang/Basic/
DAttr.td659 let Args = [ExprArgument<"MaxThreads">, ExprArgument<"MinBlocks", 1>];
/external/clang/include/clang/Sema/
DSema.h7892 void AddLaunchBoundsAttr(SourceRange AttrRange, Decl *D, Expr *MaxThreads,