/external/deqp/modules/gles31/functional/ |
es31fProgramInterfaceQueryTestCase.cpp | 2 * drawElements Quality Program OpenGL ES 3.1 Module 21 * \brief Program interface query test case 173 virtual void validate (const ProgramInterfaceDefinition::Program* program, const std::string& resource, glw::GLint propValue, const std::string& implementationName) const = 0; 226 void validate (const ProgramInterfaceDefinition::Program* program, const std::string& resource, glw::GLint propValue, const std::string& implementationName) const; 242 void SingleVariableValidator::validate (const ProgramInterfaceDefinition::Program* program, const std::string& resource, glw::GLint propValue, const std::string& implementationName) const 246 if (findProgramVariablePathByPathName(path, program, resource, m_filter)) 286 void validate (const ProgramInterfaceDefinition::Program* program, const std::string& resource, glw::GLint propValue, const std::string& implementationName (…) [all...] |
es31fProgramInterfaceQueryTests.cpp | 2 * drawElements Quality Program OpenGL ES 3.1 Module 21 * \brief Program interface query tests. 248 class Program : public Node 251 Program (bool separable = false) 539 static de::MovePtr<ProgramInterfaceDefinition::Program> generateProgramDefinitionFromResource (const ResourceDefinition::Node* resource) 541 de::MovePtr<ProgramInterfaceDefinition::Program> program (new ProgramInterfaceDefinition::Program()); 732 ProgramInterfaceDefinition::Shader* shader = program->addShader(shaderDef->m_type, shaderDef->m_version); 746 ProgramInterfaceDefinition::Shader* shader = program->addShader((glu::ShaderType)shaderType, shaderDef->m_version) 871 log << program; local [all...] |
es31fProgramStateQueryTests.cpp | 2 * drawElements Quality Program OpenGL ES 3.1 Module 21 * \brief Program State Query tests. 132 glu::ShaderProgram program (m_context.getRenderContext(), glu::ProgramSources() 137 TCU_CHECK_MSG(program.isOk(), "Compile failed"); 139 m_testCtx.getLog() << program; 141 verifyStateProgramInteger(result, gl, program.getProgram(), GL_GEOMETRY_VERTICES_OUT, 3, m_verifier); 142 verifyStateProgramInteger(result, gl, program.getProgram(), GL_GEOMETRY_INPUT_TYPE, GL_TRIANGLES, m_verifier); 143 verifyStateProgramInteger(result, gl, program.getProgram(), GL_GEOMETRY_OUTPUT_TYPE, GL_TRIANGLE_STRIP, m_verifier); 144 verifyStateProgramInteger(result, gl, program.getProgram(), GL_GEOMETRY_SHADER_INVOCATIONS, 1, m_verifier); 149 glu::ShaderProgram program (m_context.getRenderContext(), glu::ProgramSources( [all...] |
/external/deqp/modules/glshared/ |
glsTextureTestUtil.hpp | 4 * drawElements Quality Program OpenGL (ES) Module 130 enum Program 198 glu::ShaderProgram* getProgram (Program program); 209 std::map<Program, glu::ShaderProgram*> m_programs;
|
/external/mesa3d/src/gallium/drivers/nv50/codegen/ |
nv50_ir_bb.cpp | 27 Function::Function(Program *p, const char *fnName, uint32_t label) 72 program = func->getProgram(); 446 Pass::run(Program *prog, bool ordered, bool skipPhi) 454 Pass::doRun(Program *prog, bool ordered, bool skipPhi)
|
nv50_ir_from_tgsi.cpp | 1027 Converter(Program *, const tgsi::Source *); [all...] |
/external/mesa3d/src/mesa/drivers/dri/i915/ |
i915_program.c | 190 if (p->csr >= p->program + ARRAY_SIZE(p->program)) { 191 i915_program_error(p, "Program contains too many instructions"); 279 if (p->csr >= p->program + ARRAY_SIZE(p->program)) { 280 i915_program_error(p, "Program contains too many instructions"); 438 /* Warning the user about program errors seems to be quite valuable, from 440 * when we fall back to software due to an unsupportable program, though. 479 p->csr = p->program; 496 GLuint program_size = p->csr - p->program; [all...] |
i915_context.h | 131 /* Maximum size of the program packet, which matches the limits on 136 /* Hardware version of a parsed fragment program. "Derived" from the 146 bool error; /* If program is malformed for any reason. */ 159 /* TODO: split between the stored representation of a program and 166 GLuint program[(I915_MAX_TEX_INSN + I915_MAX_ALU_INSN) * 3]; member in struct:i915_fragment_program 172 GLuint *csr; /* Cursor, points into program. 228 GLuint Program[I915_PROGRAM_SIZE]; 334 extern void i915_disassemble_program(const GLuint * program, GLuint sz);
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
bits2_0.h | 125 HRESULT (WINAPI *SetNotifyCmdLine)(IBackgroundCopyJob3 *This,LPCWSTR Program,LPCWSTR Parameters); 178 #define IBackgroundCopyJob3_SetNotifyCmdLine(This,Program,Parameters) (This)->lpVtbl -> SetNotifyCmdLine(This,Program,Parameters)
|
/art/tools/dexfuzz/src/dexfuzz/program/ |
Program.java | 17 package dexfuzz.program; 23 import dexfuzz.program.mutators.ArithOpChanger; 24 import dexfuzz.program.mutators.BranchShifter; 25 import dexfuzz.program.mutators.CmpBiasChanger; 26 import dexfuzz.program.mutators.CodeMutator; 27 import dexfuzz.program.mutators.ConstantValueChanger; 28 import dexfuzz.program.mutators.ConversionRepeater; 29 import dexfuzz.program.mutators.FieldFlagChanger; 30 import dexfuzz.program.mutators.InstructionDeleter; 31 import dexfuzz.program.mutators.InstructionDuplicator [all...] |
/build/kati/testcase/ |
parse_benchcmp.go | 16 Program parse_benchcmp runs testcase_parse_benchmark and displays
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
ttProgram.py | 203 class Program(object): 281 raise tt_instructions_error("Syntax error in TT program (%s)" % assembly[pos-5:pos+15]) 307 raise tt_instructions_error("Syntax error in TT program (%s)" % assembly[pos:pos+15]) 456 p = Program()
|
/external/llvm/utils/KillTheDoctor/ |
KillTheDoctor.cpp | 10 // This program provides an extremely hacky way to stop Dr. Watson from starting 13 // This simply starts the program named in the first positional argument with 15 // any unhandled exceptions thrown in the child process and close the program 66 cl::desc("<program to run>")); 68 cl::desc("<program arguments>...")); 221 /// @brief Find program using shell lookup rules. 222 /// @param Program This is either an absolute path, relative path, or simple a 223 /// program name. Look in PATH for any programs that match. If no 225 /// @return If ec == errc::success, The absolute path to the program. Otherwise 227 static std::string FindProgram(const std::string &Program, [all...] |
/external/llvm/utils/release/ |
build_llvm_package.bat | 17 set vcdir=c:\Program Files (x86)\Microsoft Visual Studio 12.0\VC
|
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
radeon_program_alu.c | 368 constant = rc_constants_add_immediate_scalar(&c->Program.Constants, -127.999999, &constant_swizzle); 761 int constant = rc_constants_add_immediate_scalar(&c->Program.Constants, 963 constants[i] = rc_constants_add_immediate_vec4(&c->Program.Constants, SinCosConsts[i]); [all...] |
radeon_variable.c | 348 * Generate a list of variables used by the shader program. Each instruction 359 for (inst = c->Program.Instructions.Next; 360 inst != &c->Program.Instructions;
|
radeon_program_tex.c | 73 rc_constants_add_state(&compiler->Base.Program.Constants, 143 ((c->Program.ShadowSamplers & (1 << inst->U.I.TexSrcUnit)) || 347 two = rc_constants_add_immediate_scalar(&c->Program.Constants, 2, &two_swizzle); 445 two = rc_constants_add_immediate_scalar(&c->Program.Constants, 2.35, &two_swizzle);
|
/frameworks/native/services/surfaceflinger/ |
Android.mk | 32 RenderEngine/Program.cpp \
|
/packages/apps/TV/src/com/android/tv/menu/ |
PlayControlsRowView.java | 32 import com.android.tv.data.Program; 258 Program program = mTimeShiftManager.getProgramAt( local 260 mProgramStartTimeMs = program.getStartTimeUtcMillis(); 261 mProgramEndTimeMs = program.getEndTimeUtcMillis();
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-cris/ |
tls-e-20a.d | 19 Program Header:
|
tls-e-80.d | 21 Program Header:
|
/external/ceres-solver/internal/ceres/ |
gradient_checking_cost_function.cc | 45 #include "ceres/program.h" 258 Program* program = problem_impl->mutable_program(); local 262 const vector<ParameterBlock*>& parameter_blocks = program->parameter_blocks(); 279 const vector<ResidualBlock*>& residual_blocks = program->residual_blocks();
|
/external/mesa3d/src/gallium/drivers/r300/ |
r300_vs.c | 132 * If the vertex program doesn't write all 4 colors, lets 229 DBG(r300, DBG_VP, "r300: Initial vertex program\n"); 247 if (compiler.Base.Program.Constants.Count > 200) {
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_shader.cpp | 205 _mesa_reference_program(ctx, &shader->base.Program, prog); 209 * program constant) has to happen before creating this linkage.
|
/external/mesa3d/src/mesa/main/ |
getstring.c | 148 return (const GLubyte *) ctx->Program.ErrorString;
|