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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/mesa/main/
api_exec.c 119 * \param ctx GL context to which \c exec belongs.
120 * \param exec dispatch table.
125 struct _glapi_table *exec; local
127 exec = _mesa_alloc_dispatch_table(_gloffset_COUNT);
128 if (exec == NULL)
132 _mesa_loopback_init_api_table(ctx, exec);
137 SET_AlphaFunc(exec, _mesa_AlphaFunc);
140 SET_BlendFunc(exec, _mesa_BlendFunc);
141 SET_Clear(exec, _mesa_Clear);
142 SET_ClearColor(exec, _mesa_ClearColor)
    [all...]
  /external/mesa3d/src/mesa/main/
api_exec.c 119 * \param ctx GL context to which \c exec belongs.
120 * \param exec dispatch table.
125 struct _glapi_table *exec; local
127 exec = _mesa_alloc_dispatch_table(_gloffset_COUNT);
128 if (exec == NULL)
132 _mesa_loopback_init_api_table(ctx, exec);
137 SET_AlphaFunc(exec, _mesa_AlphaFunc);
140 SET_BlendFunc(exec, _mesa_BlendFunc);
141 SET_Clear(exec, _mesa_Clear);
142 SET_ClearColor(exec, _mesa_ClearColor)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/vbo/
vbo_exec_draw.c 45 vbo_exec_debug_verts( struct vbo_exec_context *exec )
47 GLuint count = exec->vtx.vert_count;
53 exec->vtx.prim_count,
54 exec->vtx.vertex_size);
56 for (i = 0 ; i < exec->vtx.prim_count ; i++) {
57 struct _mesa_prim *prim = &exec->vtx.prim[i];
75 vbo_copy_vertices( struct vbo_exec_context *exec )
77 GLuint nr = exec->vtx.prim[exec->vtx.prim_count-1].count;
79 GLuint sz = exec->vtx.vertex_size
164 struct vbo_exec_context *exec = &vbo->exec; local
    [all...]
vbo_exec_eval.c 36 static void clear_active_eval1( struct vbo_exec_context *exec, GLuint attr )
38 assert(attr < Elements(exec->eval.map1));
39 exec->eval.map1[attr].map = NULL;
42 static void clear_active_eval2( struct vbo_exec_context *exec, GLuint attr )
44 assert(attr < Elements(exec->eval.map2));
45 exec->eval.map2[attr].map = NULL;
48 static void set_active_eval1( struct vbo_exec_context *exec, GLuint attr, GLuint dim,
51 assert(attr < Elements(exec->eval.map1));
52 if (!exec->eval.map1[attr].map) {
53 exec->eval.map1[attr].map = map
    [all...]
vbo_exec.c 39 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
41 exec->ctx = ctx;
49 vbo_exec_vtx_init( exec );
50 vbo_exec_array_init( exec );
52 /* Hook our functions into exec and compile dispatch tables.
54 _mesa_install_exec_vtxfmt( ctx, &exec->vtxfmt );
67 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
74 vbo_exec_vtx_destroy( exec );
86 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
    [all...]
vbo_exec_api.c 60 static void reset_attrfv( struct vbo_exec_context *exec );
67 static void vbo_exec_wrap_buffers( struct vbo_exec_context *exec )
69 if (exec->vtx.prim_count == 0) {
70 exec->vtx.copied.nr = 0;
71 exec->vtx.vert_count = 0;
72 exec->vtx.buffer_ptr = exec->vtx.buffer_map;
75 GLuint last_begin = exec->vtx.prim[exec->vtx.prim_count-1].begin;
78 if (exec->ctx->Driver.CurrentExecPrimitive != PRIM_OUTSIDE_BEGIN_END)
370 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
574 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
601 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
808 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
865 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
1140 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
1175 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
1292 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
1309 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
    [all...]
vbo_exec.h 156 void vbo_exec_array_init( struct vbo_exec_context *exec );
157 void vbo_exec_array_destroy( struct vbo_exec_context *exec );
160 void vbo_exec_vtx_init( struct vbo_exec_context *exec );
161 void vbo_exec_vtx_destroy( struct vbo_exec_context *exec );
166 void vbo_exec_vtx_flush( struct vbo_exec_context *exec, GLboolean unmap );
167 void vbo_exec_vtx_map( struct vbo_exec_context *exec );
172 vbo_exec_vtx_flush( struct vbo_exec_context *exec, GLboolean unmap )
177 vbo_exec_vtx_map( struct vbo_exec_context *exec )
183 void vbo_exec_vtx_wrap( struct vbo_exec_context *exec );
185 void vbo_exec_eval_update( struct vbo_exec_context *exec );
    [all...]
  /external/mesa3d/src/mesa/vbo/
vbo_exec_draw.c 45 vbo_exec_debug_verts( struct vbo_exec_context *exec )
47 GLuint count = exec->vtx.vert_count;
53 exec->vtx.prim_count,
54 exec->vtx.vertex_size);
56 for (i = 0 ; i < exec->vtx.prim_count ; i++) {
57 struct _mesa_prim *prim = &exec->vtx.prim[i];
75 vbo_copy_vertices( struct vbo_exec_context *exec )
77 GLuint nr = exec->vtx.prim[exec->vtx.prim_count-1].count;
79 GLuint sz = exec->vtx.vertex_size
164 struct vbo_exec_context *exec = &vbo->exec; local
    [all...]
vbo_exec_eval.c 36 static void clear_active_eval1( struct vbo_exec_context *exec, GLuint attr )
38 assert(attr < Elements(exec->eval.map1));
39 exec->eval.map1[attr].map = NULL;
42 static void clear_active_eval2( struct vbo_exec_context *exec, GLuint attr )
44 assert(attr < Elements(exec->eval.map2));
45 exec->eval.map2[attr].map = NULL;
48 static void set_active_eval1( struct vbo_exec_context *exec, GLuint attr, GLuint dim,
51 assert(attr < Elements(exec->eval.map1));
52 if (!exec->eval.map1[attr].map) {
53 exec->eval.map1[attr].map = map
    [all...]
vbo_exec.c 39 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
41 exec->ctx = ctx;
49 vbo_exec_vtx_init( exec );
50 vbo_exec_array_init( exec );
52 /* Hook our functions into exec and compile dispatch tables.
54 _mesa_install_exec_vtxfmt( ctx, &exec->vtxfmt );
67 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
74 vbo_exec_vtx_destroy( exec );
86 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
    [all...]
vbo_exec_api.c 60 static void reset_attrfv( struct vbo_exec_context *exec );
67 static void vbo_exec_wrap_buffers( struct vbo_exec_context *exec )
69 if (exec->vtx.prim_count == 0) {
70 exec->vtx.copied.nr = 0;
71 exec->vtx.vert_count = 0;
72 exec->vtx.buffer_ptr = exec->vtx.buffer_map;
75 GLuint last_begin = exec->vtx.prim[exec->vtx.prim_count-1].begin;
78 if (exec->ctx->Driver.CurrentExecPrimitive != PRIM_OUTSIDE_BEGIN_END)
370 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
574 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
601 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
808 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
865 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
1140 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
1175 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
1292 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
1309 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
    [all...]
vbo_exec.h 156 void vbo_exec_array_init( struct vbo_exec_context *exec );
157 void vbo_exec_array_destroy( struct vbo_exec_context *exec );
160 void vbo_exec_vtx_init( struct vbo_exec_context *exec );
161 void vbo_exec_vtx_destroy( struct vbo_exec_context *exec );
166 void vbo_exec_vtx_flush( struct vbo_exec_context *exec, GLboolean unmap );
167 void vbo_exec_vtx_map( struct vbo_exec_context *exec );
172 vbo_exec_vtx_flush( struct vbo_exec_context *exec, GLboolean unmap )
177 vbo_exec_vtx_map( struct vbo_exec_context *exec )
183 void vbo_exec_vtx_wrap( struct vbo_exec_context *exec );
185 void vbo_exec_eval_update( struct vbo_exec_context *exec );
    [all...]
  /external/chromium_org/v8/test/webkit/fast/regex/
dotstar.js 27 shouldBeNull("regexp1.exec('test')");
28 shouldBe("regexp1.exec('blah')", "['blah']");
29 shouldBe("regexp1.exec('1blah')", "['1blah']");
30 shouldBe("regexp1.exec('blah1')", "['blah1']");
31 shouldBe("regexp1.exec('blah blah blah')", "['blah blah blah']");
32 shouldBe("regexp1.exec('blah\\nsecond')", "['blah']");
33 shouldBe("regexp1.exec('first\\nblah')", "['blah']");
34 shouldBe("regexp1.exec('first\\nblah\\nthird')", "['blah']");
35 shouldBe("regexp1.exec('first\\nblah2\\nblah3')", "['blah2']");
38 shouldBeNull("regexp2.exec('test')")
    [all...]
assertion.js 27 shouldBe("regex1.exec('xx')", "['xx','x']");
30 shouldBe("regex2.exec('baaabaac')", "['baaabaac','ba',undefined,'abaac']");
33 shouldBe("regex3.exec('aaab')", "['aab','a','aab']");
36 shouldBe("regex4.exec('aaab')", "['aab','a','aab']");
39 shouldBe("regex5.exec('P11')", "['P11','1','1']");
42 shouldBe("regex6.exec('ababbbcbc')", "['ababb','bb','b']");
45 shouldBe("regex7.exec('xx')", "['xx','x']");
48 shouldBe("regex8.exec('xx')", "['xx','x','x']");
51 shouldBeNull("regex9.exec('xy')");
54 shouldBeNull("regex10.exec('xy')")
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
itrbbi.cpp 26 if (exec) { \
35 void IntlTestRBBI::runIndexedTest( int32_t index, UBool exec, const char* &name, char* par )
37 if (exec) logln("TestSuite RuleBasedBreakIterator: ");
itmajor.cpp 43 if(exec) { \
50 void MajorTestLevel::runIndexedTest( int32_t index, UBool exec, const char* &name, char* par )
54 if (exec) {
63 if (exec) {
73 if (exec) {
83 if (exec) {
93 if (exec) {
103 if (exec) {
113 if (exec) {
122 if (exec) {
    [all...]
itformat.h 22 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
itrbbi.h 26 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
ittrans.h 26 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
sdtfmtts.h 20 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
tfsmalls.h 24 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
tzoffloc.h 19 void runIndexedTest(int32_t index, UBool exec, const char*& name, char* par);
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
api_exec_es1.c 513 struct _glapi_table *exec; local
515 exec = _mesa_alloc_dispatch_table(_gloffset_COUNT);
516 if (exec == NULL)
521 SET_ActiveTexture(exec, _es_ActiveTexture);
522 SET_AlphaFunc(exec, _es_AlphaFunc);
523 SET_AlphaFuncx(exec, _es_AlphaFuncx);
524 SET_BindBuffer(exec, _es_BindBuffer);
525 SET_BindFramebufferOES(exec, _es_BindFramebufferOES);
526 SET_BindRenderbufferOES(exec, _es_BindRenderbufferOES);
527 SET_BindTexture(exec, _es_BindTexture)
    [all...]
  /external/icu/icu4c/source/test/intltest/
itrbbi.cpp 26 if (exec) { \
35 void IntlTestRBBI::runIndexedTest( int32_t index, UBool exec, const char* &name, char* par )
37 if (exec) logln("TestSuite RuleBasedBreakIterator: ");
itmajor.cpp 43 if(exec) { \
50 void MajorTestLevel::runIndexedTest( int32_t index, UBool exec, const char* &name, char* par )
54 if (exec) {
63 if (exec) {
73 if (exec) {
83 if (exec) {
93 if (exec) {
103 if (exec) {
113 if (exec) {
122 if (exec) {
    [all...]

Completed in 602 milliseconds

1 2 3 4 5 6 7 8 91011>>