Searched defs:program (Results 101 - 125 of 378) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/common/mac/
H A Dmock_launchd.cc149 CFStringRef program = CFSTR(LAUNCH_JOBKEY_PROGRAM); local
151 const void *keys[] = { program, program_pid };
169 CFStringRef program = CFSTR(LAUNCH_JOBKEY_PROGRAM); local
178 const void *keys[] = { program, program_args };
242 const void *keys[] = { program, program_args, socket_key };
/external/chromium_org/content/shell/renderer/test_runner/
H A Dtest_plugin.h107 unsigned program; member in struct:content::TestPlugin::Scene
116 program(0),
/external/chromium_org/courgette/
H A Ddisassembler_elf_32.cc67 return Bad("Out of bounds program header table offset");
73 return Bad("Out of bounds program header table");
144 // It's valid if it's contained in any program segment
241 CheckBool DisassemblerElf32::ParseFile(AssemblyProgram* program) { argument
267 program))
273 if (!ParseRelocationSection(section_header, program))
281 program))
314 program))
327 AssemblyProgram* program) {
335 if (!program
321 ParseProgbitsSection( const Elf32_Shdr *section_header, std::vector<size_t>::iterator* current_abs_offset, std::vector<size_t>::iterator end_abs_offset, ScopedVector<TypedRVA>::iterator* current_rel, ScopedVector<TypedRVA>::iterator end_rel, AssemblyProgram* program) argument
404 ParseSimpleRegion( size_t start_file_offset, size_t end_file_offset, AssemblyProgram* program) argument
[all...]
H A Ddisassembler_elf_32_arm.cc259 AssemblyProgram* program,
261 return program->EmitRel32ARM(c_op(),
262 program->FindOrMakeRel32Label(target_rva),
298 AssemblyProgram* program) {
338 program))
357 if (!program->EmitElfARMRelocationInstruction())
362 return ParseSimpleRegion(file_offset, section_end, program);
258 EmitInstruction( AssemblyProgram* program, RVA target_rva) argument
296 ParseRelocationSection( const Elf32_Shdr *section_header, AssemblyProgram* program) argument
H A Dencoded_program_fuzz_unittest.cc41 courgette::AssemblyProgram* program = NULL; local
44 &program);
49 const courgette::Status encode_status = Encode(program, &encoded);
52 DeleteAssemblyProgram(program);
/external/chromium_org/gpu/command_buffer/service/
H A Dmemory_program_cache_unittest.cc40 void GetProgramBinary(GLuint program, argument
52 void ProgramBinary(GLuint program, argument
495 // save old source and modify for new program
/external/chromium_org/gpu/command_buffer/tests/
H A Dgl_copy_texture_CHROMIUM_unittest.cc562 GLuint program = GLTestHelper::LoadProgram(v_shader_str, f_shader_str); local
563 glUseProgram(program);
564 GLuint position_loc = glGetAttribLocation(program, "g_Position");
567 // Delete program from other context.
569 glDeleteProgram(program);
578 // test using program before
594 // test using program after
H A Dgl_readback_unittest.cc193 GLuint program = glCreateProgram(); local
194 glAttachShader(program, vertex_shader);
196 glAttachShader(program, fragment_shader);
198 glLinkProgram(program);
201 glGetProgramiv(program, GL_LINK_STATUS, &link_status);
203 glDeleteProgram(program);
204 program = 0;
206 ASSERT_NE(program, GLuint(0));
224 GLint position_location = glGetAttribLocation(program, "a_position");
229 glUseProgram(program);
[all...]
H A Dgl_virtual_contexts_unittest.cc69 GLuint program = GLTestHelper::LoadProgram(v_shader_str, f_shader_str); local
70 glUseProgram(program);
71 return program;
121 GLuint program = GLTestHelper::LoadProgram(v_shader_str, f_shader_str); local
122 glUseProgram(program);
124 GLuint position_loc = glGetAttribLocation(program, "a_Position");
128 GLuint color_loc = glGetUniformLocation(program, "u_color");
/external/chromium_org/media/tools/player_x11/
H A Dgl_video_renderer.cc174 GLuint program = glCreateProgram(); local
191 glAttachShader(program, vertex_shader);
208 glAttachShader(program, fragment_shader);
211 glLinkProgram(program);
213 glGetProgramiv(program, GL_LINK_STATUS, &result);
217 glGetProgramInfoLog(program, kErrorSize - 1, &len, log);
221 glUseProgram(program);
222 glDeleteProgram(program);
225 glUniform1i(glGetUniformLocation(program, "y_tex"), 0);
226 glUniform1i(glGetUniformLocation(program, "u_te
[all...]
/external/chromium_org/mojo/apps/js/bindings/gl/
H A Dcontext.cc73 GLint Context::GetAttribLocation(GLuint program, const std::string& name) { argument
74 return glGetAttribLocation(program, name.c_str());
77 std::string Context::GetProgramInfoLog(GLuint program) { argument
79 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &info_log_length);
81 glGetProgramInfoLog(program, info_log_length, NULL, &info_log.at(0));
93 GLint Context::GetUniformLocation(GLuint program, const std::string& name) { argument
94 return glGetUniformLocation(program, name.c_str());
/external/chromium_org/sandbox/linux/seccomp-bpf/
H A Dcodegen_unittest.cc48 // Create the most basic valid BPF program:
55 // Create a program with a single branch:
68 // Create a program with a single branch:
83 // Creates a basic BPF program that we'll use to test some of the code:
146 // This simple program demonstrates https://crbug.com/351103/
151 // Without the fix for this bug, this program should trigger the check in
152 // CompileAndCompare: the serialized graphs from the program and its compiled
257 Instruction* program, int) {
270 // well-formed BPF program.
271 // Perform a depth-first traversal of the BPF program a
256 MakeInstruction(CodeGenUnittestHelper* codegen, Instruction* program, int) argument
[all...]
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DResourceManager.cpp90 // Returns an unused shader/program name
104 // Returns an unused program/shader name
187 void ResourceManager::deleteProgram(GLuint program) argument
189 ProgramMap::iterator programObject = mProgramMap.find(program);
300 ProgramMap::iterator program = mProgramMap.find(handle); local
302 if (program == mProgramMap.end())
308 return program->second;
/external/chromium_org/third_party/angle/tests/angle_tests/
H A DANGLETest.cpp48 void ANGLETest::drawQuad(GLuint program, const std::string& positionAttribName, GLfloat quadDepth) argument
50 GLint positionLocation = glGetAttribLocation(program, positionAttribName.c_str());
52 glUseProgram(program);
/external/chromium_org/third_party/mesa/src/src/gallium/tests/trivial/
H A Dquad-tex.c63 struct program struct
89 static void init_prog(struct program *p)
282 static void close_prog(struct program *p)
307 static void draw(struct program *p)
348 struct program *p = CALLOC_STRUCT(program);
H A Dtri.c61 struct program struct
84 static void init_prog(struct program *p)
223 static void close_prog(struct program *p)
243 static void draw(struct program *p)
277 struct program *p = CALLOC_STRUCT(program);
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_wm.c38 #include "program/prog_parameter.h"
97 /* Augment fragment program. Add instructions for pre- and
98 * post-fragment-program tasks such as interpolation and fogging.
196 bool uses_depth = (c->fp->program.Base.InputsRead &
246 if (c->fp->program.Base.OutputsWritten &
257 * All Mesa program -> GPU code generation goes through this function.
268 const GLuint *program; local
302 &fp->program);
337 /* get the program
339 program
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Des_generator.py120 # Get the name of the program (without the directory part) for use in
122 program = os.path.basename(sys.argv[0]) variable
135 sys.stderr.write("%s: %s. Use -h for help.\n" % (program, message))
140 sys.stderr.write("Usage: %s [-%s]\n" % (program, options))
158 sys.stderr.write("%s: only switch arguments are supported - use -h for help\n" % program)
163 sys.stderr.write("%s: version '%s' is not valid - use -h for help\n" % (program, version))
187 """ % (program, functionList, version, time.strftime("%Y-%m-%d %H:%M:%S"))
227 if verbose > 0: sys.stderr.write("%s: processing function %s\n" % (program, funcName))
463 sys.stderr.write("%s: can't find dependent param '%s' for function '%s'\n" % (program, dependentParamName, funcName))
H A Dnvprogram.c27 * NVIDIA vertex/fragment program state management functions.
47 #include "program/arbprogparse.h"
48 #include "program/nvfragparse.h"
49 #include "program/nvvertparse.h"
50 #include "program/program.h"
51 #include "program/prog_instruction.h"
52 #include "program/prog_parameter.h"
57 * Execute a vertex state program.
171 * Get a program paramete
282 _mesa_GetProgramStringNV(GLuint id, GLenum pname, GLubyte *program) argument
515 _mesa_emit_nv_temp_initialization(struct gl_context *ctx, struct gl_program *program) argument
563 _mesa_setup_nv_temporary_count(struct gl_program *program) argument
595 _mesa_LoadProgramNV(GLenum target, GLuint id, GLsizei len, const GLubyte *program) argument
[all...]
H A Dtransformfeedback.c44 #include "program/prog_parameter.h"
324 "glBeginTransformFeedback(no program active)");
573 _mesa_TransformFeedbackVaryings(GLuint program, GLsizei count, argument
599 shProg = _mesa_lookup_shader_program(ctx, program);
602 "glTransformFeedbackVaryings(program=%u)", program);
672 _mesa_GetTransformFeedbackVarying(GLuint program, GLuint index, argument
680 shProg = _mesa_lookup_shader_program(ctx, program);
683 "glGetTransformFeedbackVaryings(program=%u)", program);
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/tnl/
H A Dt_vb_program.c40 #include "program/prog_instruction.h"
41 #include "program/prog_statevars.h"
42 #include "program/prog_execute.h"
62 * Private storage for the vertex program pipeline stage.
65 /** The results of running the vertex program go into these arrays. */
209 * Called via ctx->Driver.ProgramStringNotify() after a new vertex program
213 _tnl_program_string(struct gl_context *ctx, GLenum target, struct gl_program *program) argument
216 * If we had derived anything from the program that was private to this
224 * Initialize virtual machine state prior to executing vertex program.
270 * Map the texture images which the vertex program wil
316 struct gl_vertex_program *program = ctx->VertexProgram._Current; local
[all...]
/external/chromium_org/third_party/skia/src/gpu/effects/
H A DGrTextureDomain.cpp52 GrGLProgramBuilder* program = builder->getProgramBuilder(); local
60 fDomainUni = program->addUniform(GrGLProgramBuilder::kFragment_Visibility, kVec4f_GrSLType,
89 if (kImagination_GrGLVendor == program->ctxInfo().vendor()) {
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGpuGL_program.cpp19 "Display program cache usage.");
131 GrGLProgram* program = GrGLProgram::Create(fGpu, desc, geometryProcessor, local
133 if (NULL == program) {
156 entry->fProgram.reset(program);
244 SkDEBUGFAIL("Failed to generate GL program descriptor");
253 SkDEBUGFAIL("Failed to create program!");
/external/chromium_org/third_party/skia/src/gpu/gl/builders/
H A DGrGLFragmentShaderBuilder.cpp72 GrGLFragmentShaderBuilder::GrGLFragmentShaderBuilder(GrGLProgramBuilder* program, argument
74 : INHERITED(program)
84 // TODO GPs can't read dst color, and full program builder only returns a pointer to the
H A DGrGLShaderBuilder.cpp59 GrGLShaderBuilder::GrGLShaderBuilder(GrGLProgramBuilder* program) argument
60 : fProgramBuilder(program)
160 GrGLFullShaderBuilder::GrGLFullShaderBuilder(GrGLFullProgramBuilder* program) argument
161 : INHERITED(program)
162 , fFullProgramBuilder(program) {}

Completed in 2695 milliseconds

1234567891011>>