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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/gd3d1x/
sm4_to_tgsi.h 32 void* sm4_to_tgsi(struct sm4_program& program);
33 void* sm4_to_tgsi_linkage_only(struct sm4_program& program);
  /external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d1x/
sm4_to_tgsi.h 32 void* sm4_to_tgsi(struct sm4_program& program);
33 void* sm4_to_tgsi_linkage_only(struct sm4_program& program);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/postprocess/
pp_filters.h 46 void pp_filter_setup_in(struct program *, struct pipe_resource *);
47 void pp_filter_setup_out(struct program *, struct pipe_resource *);
48 void pp_filter_end_pass(struct program *);
51 void pp_filter_misc_state(struct program *);
52 void pp_filter_draw(struct program *);
53 void pp_filter_set_fb(struct program *);
54 void pp_filter_set_clear_fb(struct program *);
  /external/mesa3d/src/gallium/auxiliary/postprocess/
pp_filters.h 46 void pp_filter_setup_in(struct program *, struct pipe_resource *);
47 void pp_filter_setup_out(struct program *, struct pipe_resource *);
48 void pp_filter_end_pass(struct program *);
51 void pp_filter_misc_state(struct program *);
52 void pp_filter_draw(struct program *);
53 void pp_filter_set_fb(struct program *);
54 void pp_filter_set_clear_fb(struct program *);
  /external/ceres-solver/internal/ceres/
summary_utils.cc 33 #include "ceres/program.h"
49 void SummarizeGivenProgram(const Program& program, Solver::Summary* summary) {
50 summary->num_parameter_blocks = program.NumParameterBlocks();
51 summary->num_parameters = program.NumParameters();
52 summary->num_effective_parameters = program.NumEffectiveParameters();
53 summary->num_residual_blocks = program.NumResidualBlocks();
54 summary->num_residuals = program.NumResiduals();
57 void SummarizeReducedProgram(const Program& program, Solver::Summary* summary)
    [all...]
parameter_block_ordering.h 42 class Program;
58 int ComputeSchurOrdering(const Program& program,
63 // blocks occur in the program.
64 int ComputeStableSchurOrdering(const Program& program,
70 // the program.
71 void ComputeRecursiveIndependentSetOrdering(const Program& program,
79 Graph<ParameterBlock*>* CreateHessianGraph(const Program& program)
    [all...]
evaluator.cc 52 Program* program,
59 program);
66 program);
72 options, program);
76 program);
  /external/fonttools/Lib/fontTools/ttLib/tables/
_f_p_g_m.py 9 program = ttProgram.Program()
10 program.fromBytecode(data)
11 self.program = program
14 return self.program.getBytecode()
17 self.program.toXML(writer, ttFont)
21 program = ttProgram.Program()
22 program.fromXML(name, attrs, content, ttFont
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
arbprogparse.c 34 Notes on program parameters, etc.
42 PROGRAM_CONSTANT - indexes into program->Parameters, a known constant/literal
43 PROGRAM_STATE_VAR - indexes into program->Parameters, and may actually be:
45 + a pointer to a "program.local[k]" parameter, or
46 + a pointer to a "program.env[k]" parameter
48 Basically, all the program.local[] and program.env[] values will get mapped
50 having three separate program parameter arrays.
69 struct gl_fragment_program *program)
83 /* Error in the program. Just return. *
    [all...]
  /external/mesa3d/src/mesa/program/
arbprogparse.c 34 Notes on program parameters, etc.
42 PROGRAM_CONSTANT - indexes into program->Parameters, a known constant/literal
43 PROGRAM_STATE_VAR - indexes into program->Parameters, and may actually be:
45 + a pointer to a "program.local[k]" parameter, or
46 + a pointer to a "program.env[k]" parameter
48 Basically, all the program.local[] and program.env[] values will get mapped
50 having three separate program parameter arrays.
69 struct gl_fragment_program *program)
83 /* Error in the program. Just return. *
    [all...]
  /external/lldb/test/unittest2/test/
test_program.py 33 program = unittest2.TestProgram(testRunner=runner, exit=False, verbosity=2)
35 self.assertEqual(program.result, result)
37 self.assertEqual(program.verbosity, 2)
53 program = unittest2.main(exit=False,
57 self.assertTrue(hasattr(program, 'result'))
111 self.program = InitialisableProgram()
112 self.program.createTests = lambda: None
118 program = self.program
120 program.msg = ms
    [all...]
  /cts/suite/cts/deviceTests/opengl/jni/graphics/
ProgramNode.cpp 17 ProgramNode::ProgramNode(Program& program) :
18 mProgram(program) {
21 void ProgramNode::before(Program& program, Matrix& model, Matrix& view, Matrix& projection) {
22 program.before(model, view, projection);
25 void ProgramNode::after(Program& program, Matrix& model, Matrix& view, Matrix& projection) {
26 program.after(model, view, projection);
ProgramNode.h 18 #include "Program.h"
23 ProgramNode(Program& program);
27 virtual void before(Program& program, Matrix& model, Matrix& view, Matrix& projection);
28 virtual void after(Program& program, Matrix& model, Matrix& view, Matrix& projection);
29 Program& mProgram;
SceneGraphNode.cpp 26 void SceneGraphNode::draw(Program& program, Matrix& model, Matrix& view, Matrix& projection) {
27 before(program, model, view, projection);
29 mChildren[i]->draw(program, model, view, projection);
31 after(program, model, view, projection);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/d3d1xshader/src/
sm4_analyze.cpp 33 bool sm4_link_cf_insns(sm4_program& program)
35 if(program.cf_insn_linked.size())
39 cf_insn_linked.resize(program.insns.size());
42 for(unsigned insn_num = 0; insn_num < program.insns.size(); ++insn_num)
45 switch(program.insns[insn_num]->opcode)
53 check(program.insns[v]->opcode == SM4_OPCODE_LOOP);
67 if(program.insns[insn_num]->opcode == SM4_OPCODE_ELSE)
68 check(program.insns[v]->opcode == SM4_OPCODE_IF);
70 check(program.insns[v]->opcode == SM4_OPCODE_SWITCH || program.insns[v]->opcode == SM4_OPCODE_CASE)
    [all...]
  /external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/src/
sm4_analyze.cpp 33 bool sm4_link_cf_insns(sm4_program& program)
35 if(program.cf_insn_linked.size())
39 cf_insn_linked.resize(program.insns.size());
42 for(unsigned insn_num = 0; insn_num < program.insns.size(); ++insn_num)
45 switch(program.insns[insn_num]->opcode)
53 check(program.insns[v]->opcode == SM4_OPCODE_LOOP);
67 if(program.insns[insn_num]->opcode == SM4_OPCODE_ELSE)
68 check(program.insns[v]->opcode == SM4_OPCODE_IF);
70 check(program.insns[v]->opcode == SM4_OPCODE_SWITCH || program.insns[v]->opcode == SM4_OPCODE_CASE)
    [all...]
  /external/llvm/utils/
check-each-file 9 program=$2
10 linker=./link-$program
11 echo "Building $program with llvm-native-gcc"
12 rm -f $program
13 gmake -e $program CC=llvm-native-gcc CXX=llvm-native-gxx
14 echo "Erasing $program and re-linking it"
15 rm -f $program
16 echo "rm -f $program" > $linker
17 gmake -n $program >> $linker
23 echo "$program appears to need a dummy __main function; adding one
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLUniformLocation.cpp 33 PassRefPtrWillBeRawPtr<WebGLUniformLocation> WebGLUniformLocation::create(WebGLProgram* program, GLint location)
35 return adoptRefWillBeNoop(new WebGLUniformLocation(program, location));
38 WebGLUniformLocation::WebGLUniformLocation(WebGLProgram* program, GLint location)
39 : m_program(program)
46 WebGLProgram* WebGLUniformLocation::program() const function in class:blink::WebGLUniformLocation
48 // If the program has been linked again, then this UniformLocation is no
57 // If the program has been linked again, then this UniformLocation is no
  /external/chromium_org/gpu/command_buffer/client/
program_info_manager.h 23 virtual void CreateInfo(GLuint program) = 0;
25 virtual void DeleteInfo(GLuint program) = 0;
28 GLES2Implementation* gl, GLuint program, GLenum pname, GLint* params) = 0;
31 GLES2Implementation* gl, GLuint program, const char* name) = 0;
34 GLES2Implementation* gl, GLuint program, const char* name) = 0;
38 GLuint program, GLuint index, GLsizei bufsize, GLsizei* length,
43 GLuint program, GLuint index, GLsizei bufsize, GLsizei* length,
  /external/chromium_org/courgette/
encoded_program_unittest.cc 12 // Create a simple program with a few addresses and references and
15 courgette::EncodedProgram* program = new courgette::EncodedProgram(); local
18 program->set_image_base(base);
20 EXPECT_TRUE(program->DefineRel32Label(5, 0)); // REL32 index 5 == base + 0
21 EXPECT_TRUE(program->DefineAbs32Label(7, 4)); // ABS32 index 7 == base + 4
22 program->EndLabels();
24 EXPECT_TRUE(program->AddOrigin(0)); // Start at base.
25 EXPECT_TRUE(program->AddAbs32(7));
26 EXPECT_TRUE(program->AddRel32(5));
31 EXPECT_TRUE(program->WriteTo(&sinks))
    [all...]
  /external/deqp/framework/opengl/
gluProgramInterfaceQuery.cpp 2 * drawElements Quality Program OpenGL Utilities
21 * \brief Program interface query utilities
33 deUint32 getProgramResourceUint (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, deUint32 queryParam)
36 gl.getProgramResourceiv(program, programInterface, index, 1, &queryParam, 1, DE_NULL, (int*)&value);
41 void getProgramResourceName (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, std::string& dst)
43 const int length = getProgramResourceInt(gl, program, programInterface, index, GL_NAME_LENGTH);
48 gl.getProgramResourceName(program, programInterface, index, (int)buf.size(), DE_NULL, &buf[0]);
61 static void getProgramInterfaceActiveVariables (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, std::vector<int>& activeVariables)
63 const int numActiveVariables = getProgramResourceInt(gl, program, programInterface, index, GL_NUM_ACTIVE_VARIABLES);
69 gl.getProgramResourceiv(program, programInterface, index, 1, &queryParam, (int)activeVariables.size(), DE_NULL, &activeVariables[0 (…)
    [all...]
  /external/iptables/utils/
nfbpf_compile.c 2 * BPF program compilation tool
17 struct bpf_program program; local
22 fprintf(stderr, "Usage: %s [link] '<program>'\n\n"
39 if (pcap_compile_nopcap(65535, dlt, &program, argv[argc - 1], 1,
45 printf("%d,", program.bf_len);
46 ins = program.bf_insns;
47 for (i = 0; i < program.bf_len-1; ++ins, ++i)
52 pcap_freecode(&program);
  /cts/tests/tests/opengl/libopengltest/
attach_shader_eight.cpp 28 GLuint program = glCreateProgram(); local
29 glAttachShader(program, fragmentShader);
34 glDeleteProgram(program);
attach_shader_nine.cpp 27 GLuint program = glCreateProgram(); local
28 glAttachShader(program, fragmentShader);
33 glDeleteProgram(program);
  /external/deqp/framework/opengl/simplereference/
sglrContextUtil.hpp 4 * drawElements Quality Program OpenGL ES Utilities
34 void drawQuad (sglr::Context& ctx, deUint32 program, const tcu::Vec3& p0, const tcu::Vec3& p1);
36 void drawQuadWithVaoBuffers (sglr::Context& ctx, deUint32 program, const tcu::Vec3& p0, const tcu::Vec3& p1);
37 void drawQuadWithClientPointers (sglr::Context& ctx, deUint32 program, const tcu::Vec3& p0, const tcu::Vec3& p1);

Completed in 869 milliseconds

1 2 3 4 5 6 7 8 91011>>