| /third_party/mesa3d/src/compiler/glsl/ |
| D | standalone.cpp | 145 ctx->Const.Program[MESA_SHADER_COMPUTE].MaxTextureImageUnits = 16; in initialize_context() 146 ctx->Const.Program[MESA_SHADER_COMPUTE].MaxUniformComponents = 1024; in initialize_context() 147 ctx->Const.Program[MESA_SHADER_COMPUTE].MaxCombinedUniformComponents = 1024; in initialize_context() 148 ctx->Const.Program[MESA_SHADER_COMPUTE].MaxInputComponents = 0; /* not used */ in initialize_context() 149 ctx->Const.Program[MESA_SHADER_COMPUTE].MaxOutputComponents = 0; /* not used */ in initialize_context() 150 ctx->Const.Program[MESA_SHADER_COMPUTE].MaxAtomicBuffers = 8; in initialize_context() 151 ctx->Const.Program[MESA_SHADER_COMPUTE].MaxAtomicCounters = 8; in initialize_context() 152 ctx->Const.Program[MESA_SHADER_COMPUTE].MaxImageUniforms = 8; in initialize_context() 153 ctx->Const.Program[MESA_SHADER_COMPUTE].MaxUniformBlocks = 12; in initialize_context() 166 ctx->Const.Program[MESA_SHADER_VERTEX].MaxAttribs = 8; in initialize_context() [all …]
|
| /third_party/vk-gl-cts/external/vulkancts/framework/vulkan/ |
| D | vkPrograms.hpp | 69 template<typename Program, typename BuildOptions> 79 Program& add (const std::string& name); 80 Program& add (const std::string& name, const BuildOptions* buildOptions); 81 void add (const std::string& name, de::MovePtr<Program>& program); 84 const Program& get (const std::string& name) const; 89 typedef typename std::map<std::string, Program*>::const_iterator IteratorImpl; 95 const Program& operator* (void) const { return getProgram(); } in operator *() 98 const Program& getProgram (void) const { return *m_impl->second; } in getProgram() 114 typedef std::map<std::string, Program*> ProgramMap; 120 template<typename Program, typename BuildOptions> [all …]
|
| /third_party/skia/third_party/externals/tint/src/ |
| D | program.cc | 26 std::string DefaultPrinter(const Program*) { in DefaultPrinter() argument 32 Program::Printer Program::printer = DefaultPrinter; 34 Program::Program() = default; 36 Program::Program(Program&& program) in Program() function in tint::Program 51 Program::Program(ProgramBuilder&& builder) { in Program() function in tint::Program 77 diagnostics_.add_error(diag::System::Program, "invalid program generated"); in Program() 81 Program::~Program() = default; 83 Program& Program::operator=(Program&& program) { in operator =() 100 Program Program::Clone() const { in Clone() 102 return Program(CloneAsBuilder()); in Clone() [all …]
|
| D | program.h | 39 class Program { 48 Program(); 52 Program(Program&& rhs); 56 explicit Program(ProgramBuilder&& builder); 59 ~Program(); 64 Program& operator=(Program&& rhs); 115 Program Clone() const; 168 using Printer = std::string (*)(const Program*); 174 Program(const Program&) = delete; 194 inline ProgramID ProgramIDOf(const Program* program) { in ProgramIDOf()
|
| D | program_test.cc | 25 Program program; in TEST_F() 30 Program program(std::move(*this)); in TEST_F() 35 Program program(std::move(*this)); in TEST_F() 40 Program program_a(ProgramBuilder{}); in TEST_F() 41 Program program_b(ProgramBuilder{}); in TEST_F() 42 Program program_c(ProgramBuilder{}); in TEST_F() 51 Program program(std::move(*this)); in TEST_F() 83 Diagnostics().add_error(diag::System::Program, "an error message"); in TEST_F() 85 Program program_a(std::move(*this)); in TEST_F() 91 Program program_b(std::move(program_a)); in TEST_F() [all …]
|
| /third_party/mesa3d/src/gallium/drivers/r300/compiler/ |
| D | radeon_remove_constants.c | 70 struct rc_constant *constants = c->Program.Constants.Constants; in rc_remove_unused_constants() 74 if (!c->Program.Constants.Count) { in rc_remove_unused_constants() 79 const_used = malloc(c->Program.Constants.Count); in rc_remove_unused_constants() 80 memset(const_used, 0, c->Program.Constants.Count); in rc_remove_unused_constants() 86 for (struct rc_instruction *inst = c->Program.Instructions.Next; in rc_remove_unused_constants() 87 inst != &c->Program.Instructions; inst = inst->Next) { in rc_remove_unused_constants() 94 for (unsigned i = 0; i < c->Program.Constants.Count; i++) in rc_remove_unused_constants() 101 remap_table = malloc(c->Program.Constants.Count * sizeof(unsigned)); in rc_remove_unused_constants() 102 inv_remap_table = malloc(c->Program.Constants.Count * sizeof(unsigned)); in rc_remove_unused_constants() 105 for (unsigned i = 0; i < c->Program.Constants.Count; i++) { in rc_remove_unused_constants() [all …]
|
| D | radeon_compiler.c | 44 c->Program.Instructions.Prev = &c->Program.Instructions; in rc_init() 45 c->Program.Instructions.Next = &c->Program.Instructions; in rc_init() 46 c->Program.Instructions.U.I.Opcode = RC_OPCODE_ILLEGAL_OPCODE; in rc_init() 52 rc_constants_destroy(&c->Program.Constants); in rc_destroy() 119 c->Program.InputsRead = 0; in rc_calculate_inputs_outputs() 120 c->Program.OutputsWritten = 0; in rc_calculate_inputs_outputs() 122 for(inst = c->Program.Instructions.Next; inst != &c->Program.Instructions; inst = inst->Next) in rc_calculate_inputs_outputs() 129 c->Program.InputsRead |= 1U << inst->U.I.SrcReg[i].Index; in rc_calculate_inputs_outputs() 134 c->Program.OutputsWritten |= 1U << inst->U.I.DstReg.Index; in rc_calculate_inputs_outputs() 146 struct rc_instruction * insert_pos = c->Program.Instructions.Prev; in rc_copy_output() [all …]
|
| /third_party/skia/third_party/externals/angle2/src/libANGLE/ |
| D | CLProgram.cpp | 18 cl_int Program::build(cl_uint numDevices, in build() 30 Program *notify = nullptr; in build() 41 cl_int Program::compile(cl_uint numDevices, in compile() 60 programs.emplace_back(&(*inputHeaders++)->cast<Program>()); in compile() 62 Program *notify = nullptr; in compile() 73 cl_int Program::getInfo(ProgramInfo name, size_t valueSize, void *value, size_t *valueSizeRet) const in getInfo() 146 cl_int Program::getBuildInfo(cl_device_id device, in getBuildInfo() 155 cl_kernel Program::createKernel(const char *kernel_name, cl_int &errorCode) in createKernel() 160 cl_int Program::createKernels(cl_uint numKernels, cl_kernel *kernels, cl_uint *numKernelsRet) in createKernels() 189 Program::~Program() = default; [all …]
|
| D | CLProgram.h | 23 class Program final : public _cl_program, public Object 56 ~Program() override; 72 Program(Context &context, std::string &&source, cl_int &errorCode); 73 Program(Context &context, const void *il, size_t length, cl_int &errorCode); 75 Program(Context &context, 82 Program(Context &context, DevicePtrs &&devices, const char *kernelNames, cl_int &errorCode); 84 Program(Context &context, 110 inline Context &Program::getContext() in getContext() 115 inline const Context &Program::getContext() const in getContext() 120 inline const DevicePtrs &Program::getDevices() const in getDevices() [all …]
|
| D | ProgramPipeline.h | 47 void activeShaderProgram(Program *shaderProgram); 50 Program *shaderProgram, 53 Program *getActiveShaderProgram() { return mActiveShaderProgram; } in getActiveShaderProgram() 57 const Program *getShaderProgram(ShaderType shaderType) const { return mPrograms[shaderType]; } in getShaderProgram() 68 Program *shaderProgram, 76 Program *mActiveShaderProgram; 78 ShaderMap<Program *> mPrograms; 108 Program *getActiveShaderProgram() { return mState.getActiveShaderProgram(); } in getActiveShaderProgram() 109 void activeShaderProgram(Program *shaderProgram); 110 Program *getLinkedActiveShaderProgram(const Context *context) in getLinkedActiveShaderProgram() [all …]
|
| D | ProgramPipeline.cpp | 52 void ProgramPipelineState::activeShaderProgram(Program *shaderProgram) in activeShaderProgram() 59 Program *shaderProgram, in useProgramStage() 62 Program *oldProgram = mPrograms[shaderType]; in useProgramStage() 85 Program *program = mPrograms[shaderType]; in useProgramStage() 92 Program *shaderProgram, in useProgramStages() 110 for (const Program *program : mPrograms) in usesShaderProgram() 125 const Program *program = getShaderProgram(shaderType); in updateExecutableTextures() 141 const Program *program = getShaderProgram(shaderType); in getSpecConstUsageBits() 169 for (Program *program : mState.mPrograms) in onDestroy() 196 void ProgramPipeline::activeShaderProgram(Program *shaderProgram) in activeShaderProgram() [all …]
|
| /third_party/skia/third_party/externals/tint/docs/ |
| D | arch.md | 32 ┃ ┃ Program ┃ 66 A `ProgramBuilder` is the primary interface to construct an immutable `Program`. 67 There are a number of methods exposed which make creating of the `Program` 69 the `Program` is constructed. 71 A `Program` is built from the `ProgramBuilder` by `std::move()`ing the 72 `ProgramBuilder` to a new `Program` object. When built, resolution is performed 73 so the produced `Program` will contain all the needed semantic information. 75 At any time before building the `Program`, `ProgramBuilder::IsValid()` may be 79 If further changes to the `Program` are needed (say via a `Transform`) then a 80 new `ProgramBuilder` can be produced by cloning the `Program` into a new [all …]
|
| /third_party/typescript/tests/baselines/reference/tsc/incremental/ |
| D | with-noEmitOnError-syntax-errors.js | 54 Program root files: ["/src/shared/types/db.ts","/src/src/main.ts","/src/src/other.ts"] 55 Program options: {"outDir":"/src/dev-build","noEmitOnError":true,"incremental":true,"project":"/src… 56 Program structureReused: Not 57 Program files:: 168 Program root files: ["/src/shared/types/db.ts","/src/src/main.ts","/src/src/other.ts"] 169 Program options: {"outDir":"/src/dev-build","noEmitOnError":true,"incremental":true,"project":"/src… 170 Program structureReused: Not 171 Program files:: 197 Program root files: ["/src/shared/types/db.ts","/src/src/main.ts","/src/src/other.ts"] 198 Program options: {"outDir":"/src/dev-build","noEmitOnError":true,"incremental":true,"project":"/src… [all …]
|
| D | with-noEmitOnError-semantic-errors.js | 52 Program root files: ["/src/shared/types/db.ts","/src/src/main.ts","/src/src/other.ts"] 53 Program options: {"outDir":"/src/dev-build","noEmitOnError":true,"incremental":true,"project":"/src… 54 Program structureReused: Not 55 Program files:: 178 Program root files: ["/src/shared/types/db.ts","/src/src/main.ts","/src/src/other.ts"] 179 Program options: {"outDir":"/src/dev-build","noEmitOnError":true,"incremental":true,"project":"/src… 180 Program structureReused: Not 181 Program files:: 205 Program root files: ["/src/shared/types/db.ts","/src/src/main.ts","/src/src/other.ts"] 206 Program options: {"outDir":"/src/dev-build","noEmitOnError":true,"incremental":true,"project":"/src… [all …]
|
| /third_party/typescript/tests/baselines/reference/tsbuildWatch/programUpdates/ |
| D | when-referenced-project-change-introduces-error-in-the-down-stream-project-and-then-fixes-it.js | 49 Program root files: ["/user/username/projects/sample1/Library/library.ts"] 50 Program options: {"composite":true,"watch":true,"configFilePath":"/user/username/projects/sample1/L… 51 Program structureReused: Not 52 Program files:: 64 Program root files: ["/user/username/projects/sample1/App/app.ts"] 65 Program options: {"watch":true,"configFilePath":"/user/username/projects/sample1/App/tsconfig.json"} 66 Program structureReused: Not 67 Program files:: 202 Program root files: ["/user/username/projects/sample1/Library/library.ts"] 203 Program options: {"composite":true,"watch":true,"configFilePath":"/user/username/projects/sample1/L… [all …]
|
| D | works-with-extended-source-files.js | 58 Program root files: ["/a/b/commonFile1.ts","/a/b/commonFile2.ts"] 59 Program options: {"composite":true,"watch":true,"configFilePath":"/a/b/project1.tsconfig.json"} 60 Program structureReused: Not 61 Program files:: 76 Program root files: ["/a/b/other.ts"] 77 Program options: {"composite":true,"watch":true,"configFilePath":"/a/b/project2.tsconfig.json"} 78 Program structureReused: Not 79 Program files:: 236 Program root files: ["/a/b/commonFile1.ts","/a/b/commonFile2.ts"] 237 Program options: {"strict":true,"composite":true,"watch":true,"configFilePath":"/a/b/project1.tscon… [all …]
|
| /third_party/vk-gl-cts/external/openglcts/modules/common/subgroups/ |
| D | glcSubgroupsTestsUtils.hpp | 62 template<typename Program> 71 Program& add (const std::string& name); 72 void add (const std::string& name, de::MovePtr<Program>& program); 75 const Program& get (const std::string& name) const; 80 typedef typename std::map<std::string, Program*>::const_iterator IteratorImpl; 86 const Program& operator* (void) const { return getProgram(); } in operator *() 89 const Program& getProgram (void) const { return *m_impl->second; } in getProgram() 105 typedef std::map<std::string, Program*> ProgramMap; 110 template<typename Program> 111 ProgramCollection<Program>::ProgramCollection (void) in ProgramCollection() [all …]
|
| /third_party/typescript/tests/baselines/reference/tsbuildWatch/programUpdates/with-circular-project-reference/ |
| D | builds-when-new-file-is-added,-and-its-subsequent-updates.js | 88 Program root files: ["/user/username/projects/sample1/core/anotherModule.ts","/user/username/projec… 89 Program options: {"composite":true,"declaration":true,"watch":true,"configFilePath":"/user/username… 90 Program structureReused: Not 91 Program files:: 106 Program root files: ["/user/username/projects/sample1/logic/index.ts"] 107 Program options: {"composite":true,"declaration":true,"sourceMap":true,"forceConsistentCasingInFile… 108 Program structureReused: Not 109 Program files:: 127 Program root files: ["/user/username/projects/sample1/tests/index.ts"] 128 Program options: {"composite":true,"declaration":true,"forceConsistentCasingInFileNames":true,"skip… [all …]
|
| /third_party/typescript/tests/baselines/reference/tscWatch/watchApi/ |
| D | noEmit-with-composite-with-emit-builder.js | 34 Program root files: ["/user/username/projects/myproject/main.ts","/user/username/projects/myproject… 35 Program options: {"composite":true,"noEmit":true,"configFilePath":"/user/username/projects/myprojec… 36 Program structureReused: Not 37 Program files:: 137 Program root files: ["/user/username/projects/myproject/main.ts","/user/username/projects/myproject… 138 Program options: {"composite":true,"configFilePath":"/user/username/projects/myproject/tsconfig.jso… 139 Program structureReused: Not 140 Program files:: 251 Program root files: ["/user/username/projects/myproject/main.ts","/user/username/projects/myproject… 252 Program options: {"composite":true,"noEmit":true,"configFilePath":"/user/username/projects/myprojec… [all …]
|
| /third_party/typescript/tests/baselines/reference/tscWatch/programUpdates/ |
| D | extended-source-files-are-watched.js | 40 Program root files: ["/a/b/commonFile1.ts","/a/b/commonFile2.ts"] 41 Program options: {"watch":true,"project":"/a/b/tsconfig.json","configFilePath":"/a/b/tsconfig.json"} 42 Program structureReused: Not 43 Program files:: 100 Program root files: ["/a/b/commonFile1.ts","/a/b/commonFile2.ts"] 101 Program options: {"strict":true,"watch":true,"project":"/a/b/tsconfig.json","configFilePath":"/a/b/… 102 Program structureReused: Completely 103 Program files:: 163 Program root files: ["/a/b/commonFile1.ts","/a/b/commonFile2.ts"] 164 Program options: {"strict":false,"watch":true,"project":"/a/b/tsconfig.json","configFilePath":"/a/b… [all …]
|
| /third_party/typescript/tests/baselines/reference/tsbuildWatch/watchEnvironment/ |
| D | same-file-in-multiple-projects-with-single-watcher-per-file.js | 78 Program root files: ["/user/username/projects/myproject/pkg0/index.ts","/user/username/projects/myp… 79 Program options: {"watch":true,"configFilePath":"/user/username/projects/myproject/pkg0/tsconfig.js… 80 Program structureReused: Not 81 Program files:: 96 Program root files: ["/user/username/projects/myproject/pkg1/index.ts","/user/username/projects/myp… 97 Program options: {"watch":true,"configFilePath":"/user/username/projects/myproject/pkg1/tsconfig.js… 98 Program structureReused: Not 99 Program files:: 114 Program root files: ["/user/username/projects/myproject/pkg2/index.ts","/user/username/projects/myp… 115 Program options: {"watch":true,"configFilePath":"/user/username/projects/myproject/pkg2/tsconfig.js… [all …]
|
| /third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/ |
| D | Program.cpp | 35 unsigned int Program::currentSerial = 1; 136 …Program::Program(ResourceManager *manager, GLuint handle) : serial(issueSerial()), resourceManager… in Program() function in es2::Program 157 Program::~Program() in ~Program() 172 bool Program::attachShader(Shader *shader) in attachShader() 199 bool Program::detachShader(Shader *shader) in detachShader() 226 int Program::getAttachedShadersCount() const in getAttachedShadersCount() 231 sw::PixelShader *Program::getPixelShader() in getPixelShader() 236 sw::VertexShader *Program::getVertexShader() in getVertexShader() 241 GLint Program::getFragDataLocation(const GLchar *name) in getFragDataLocation() 273 void Program::bindAttributeLocation(GLuint index, const char *name) in bindAttributeLocation() [all …]
|
| /third_party/typescript/tests/baselines/reference/tsbuild/noEmit/ |
| D | semantic-errors.js | 43 Program root files: ["/src/a.ts"] 44 Program options: {"noEmit":true,"configFilePath":"/src/tsconfig.json"} 45 Program structureReused: Not 46 Program files:: 83 Program root files: ["/src/a.ts"] 84 Program options: {"noEmit":true,"configFilePath":"/src/tsconfig.json"} 85 Program structureReused: Not 86 Program files:: 118 Program root files: ["/src/a.ts"] 119 Program options: {"noEmit":true,"configFilePath":"/src/tsconfig.json"} [all …]
|
| /third_party/typescript/tests/baselines/reference/tsbuildWatch/configFileErrors/ |
| D | reports-syntax-errors-in-config-file.js | 47 Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.… 48 Program options: {"composite":true,"watch":true,"configFilePath":"/user/username/projects/myproject… 49 Program structureReused: Not 50 Program files:: 141 Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.… 142 Program options: {"composite":true,"declaration":true,"watch":true,"configFilePath":"/user/username… 143 Program structureReused: Not 144 Program files:: 188 Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.… 189 Program options: {"composite":true,"declaration":true,"watch":true,"configFilePath":"/user/username… [all …]
|
| /third_party/typescript/tests/baselines/reference/tsbuildWatch/programUpdates/with-simple-project-reference-graph/ |
| D | builds-when-new-file-is-added,-and-its-subsequent-updates.js | 114 Program root files: ["/user/username/projects/sample1/core/anotherModule.ts","/user/username/projec… 115 Program options: {"composite":true,"declaration":true,"declarationMap":true,"skipDefaultLibCheck":t… 116 Program structureReused: Not 117 Program files:: 132 Program root files: ["/user/username/projects/sample1/logic/index.ts"] 133 Program options: {"composite":true,"declaration":true,"sourceMap":true,"forceConsistentCasingInFile… 134 Program structureReused: Not 135 Program files:: 153 Program root files: ["/user/username/projects/sample1/tests/index.ts"] 154 Program options: {"composite":true,"declaration":true,"forceConsistentCasingInFileNames":true,"skip… [all …]
|