Home
last modified time | relevance | path

Searched full:exec (Results 1 – 25 of 2274) sorted by relevance

12345678910>>...91

/external/mesa3d/src/mesa/main/
Dapi_exec.c119 * \param ctx GL context to which \c exec belongs.
120 * \param exec dispatch table.
125 struct _glapi_table *exec; in _mesa_create_exec_table() local
127 exec = _mesa_alloc_dispatch_table(_gloffset_COUNT); in _mesa_create_exec_table()
128 if (exec == NULL) in _mesa_create_exec_table()
132 _mesa_loopback_init_api_table(ctx, exec); in _mesa_create_exec_table()
137 SET_AlphaFunc(exec, _mesa_AlphaFunc); in _mesa_create_exec_table()
140 SET_BlendFunc(exec, _mesa_BlendFunc); in _mesa_create_exec_table()
141 SET_Clear(exec, _mesa_Clear); in _mesa_create_exec_table()
142 SET_ClearColor(exec, _mesa_ClearColor); in _mesa_create_exec_table()
[all …]
Ddlist.c1100 CALL_Accum(ctx->Exec, (op, value)); in save_Accum()
1117 CALL_AlphaFunc(ctx->Exec, (func, ref)); in save_AlphaFunc()
1134 CALL_BindTexture(ctx->Exec, (target, texture)); in save_BindTexture()
1159 CALL_Bitmap(ctx->Exec, (width, height, in save_Bitmap()
1176 CALL_BlendEquation(ctx->Exec, (mode)); in save_BlendEquation()
1193 CALL_BlendEquationSeparateEXT(ctx->Exec, (modeRGB, modeA)); in save_BlendEquationSeparateEXT()
1213 CALL_BlendFuncSeparateEXT(ctx->Exec, in save_BlendFuncSeparateEXT()
1240 CALL_BlendColor(ctx->Exec, (red, green, blue, alpha)); in save_BlendColor()
1261 CALL_BlendFuncSeparateiARB(ctx->Exec, (buf, sfactorRGB, dfactorRGB, in save_BlendFuncSeparatei()
1280 CALL_BlendFunciARB(ctx->Exec, (buf, sfactor, dfactor)); in save_BlendFunci()
[all …]
Duniforms.c808 struct _glapi_table *exec) in _mesa_init_shader_uniform_dispatch() argument
811 SET_Uniform1fARB(exec, _mesa_Uniform1fARB); in _mesa_init_shader_uniform_dispatch()
812 SET_Uniform2fARB(exec, _mesa_Uniform2fARB); in _mesa_init_shader_uniform_dispatch()
813 SET_Uniform3fARB(exec, _mesa_Uniform3fARB); in _mesa_init_shader_uniform_dispatch()
814 SET_Uniform4fARB(exec, _mesa_Uniform4fARB); in _mesa_init_shader_uniform_dispatch()
815 SET_Uniform1iARB(exec, _mesa_Uniform1iARB); in _mesa_init_shader_uniform_dispatch()
816 SET_Uniform2iARB(exec, _mesa_Uniform2iARB); in _mesa_init_shader_uniform_dispatch()
817 SET_Uniform3iARB(exec, _mesa_Uniform3iARB); in _mesa_init_shader_uniform_dispatch()
818 SET_Uniform4iARB(exec, _mesa_Uniform4iARB); in _mesa_init_shader_uniform_dispatch()
819 SET_Uniform1fvARB(exec, _mesa_Uniform1fvARB); in _mesa_init_shader_uniform_dispatch()
[all …]
/external/v8/test/webkit/fast/regex/
Dpcre-test-4-expected.txt29 PASS regex0.exec(input0); is results
30 PASS regex0.exec(input1); is results
31 PASS regex0.exec(input2); is results
32 PASS regex0.exec(input3); is results
33 PASS regex1.exec(input0); is results
34 PASS regex1.exec(input1); is results
35 PASS regex1.exec(input2); is results
36 PASS regex1.exec(input3); is results
37 PASS regex1.exec(input4); is results
38 PASS regex2.exec(input0); is results
[all …]
Ddotstar-expected.txt29 PASS regexp1.exec('test') is null
30 PASS regexp1.exec('blah') is ['blah']
31 PASS regexp1.exec('1blah') is ['1blah']
32 PASS regexp1.exec('blah1') is ['blah1']
33 PASS regexp1.exec('blah blah blah') is ['blah blah blah']
34 PASS regexp1.exec('blah\nsecond') is ['blah']
35 PASS regexp1.exec('first\nblah') is ['blah']
36 PASS regexp1.exec('first\nblah\nthird') is ['blah']
37 PASS regexp1.exec('first\nblah2\nblah3') is ['blah2']
38 PASS regexp2.exec('test') is null
[all …]
Ddotstar.js27 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 …]
Dparentheses-expected.txt29 PASS regexp1.exec('abc') is ['ab','a','b']
30 PASS regexp2.exec('abacadabe') is ['abe','ab','b','b']
31 PASS regexp3.exec('abacadabe') is ['abe','ab','b',undefined]
32 PASS regexp4.exec('abacadabe') is ['abe','ab','b',undefined]
33 PASS regexp5.exec('abacadabe') is ['abe','ab','b','b',undefined,undefined]
34 PASS regexp6.exec('abcde') is ['ab','ab','b','b',undefined,undefined]
35 PASS regexp7.exec('abc') is ['abc','ab','b']
36 PASS regexp8.exec('bcaddxqy') is ['qy','q','q','y']
37 PASS regexp9.exec('asdfjejgsdflaksdfjkeljghkjea') is ['a','a',undefined]
38 PASS regexp10.exec('asdfjejgsdflaksdfjkeljghat') is ['at']
[all …]
Dpcre-test-4.js31 shouldBe('regex0.exec(input0);', 'results');
34 shouldBe('regex0.exec(input1);', 'results');
37 shouldBe('regex0.exec(input2);', 'results');
41 shouldBe('regex0.exec(input3);', 'results');
46 shouldBe('regex1.exec(input0);', 'results');
49 shouldBe('regex1.exec(input1);', 'results');
52 shouldBe('regex1.exec(input2);', 'results');
56 shouldBe('regex1.exec(input3);', 'results');
59 shouldBe('regex1.exec(input4);', 'results');
64 shouldBe('regex2.exec(input0);', 'results');
[all …]
Dassertion-expected.txt29 PASS regex1.exec('xx') is ['xx','x']
30 PASS regex2.exec('baaabaac') is ['baaabaac','ba',undefined,'abaac']
31 PASS regex3.exec('aaab') is ['aab','a','aab']
32 PASS regex4.exec('aaab') is ['aab','a','aab']
33 PASS regex5.exec('P11') is ['P11','1','1']
34 PASS regex6.exec('ababbbcbc') is ['ababb','bb','b']
35 PASS regex7.exec('xx') is ['xx','x']
36 PASS regex8.exec('xx') is ['xx','x','x']
37 PASS regex9.exec('xy') is null
38 PASS regex10.exec('xy') is null
[all …]
Dparentheses.js27 shouldBe("regexp1.exec('abc')", "['ab','a','b']");
30 shouldBe("regexp2.exec('abacadabe')", "['abe','ab','b','b']");
33 shouldBe("regexp3.exec('abacadabe')", "['abe','ab','b',undefined]");
36 shouldBe("regexp4.exec('abacadabe')", "['abe','ab','b',undefined]");
39 shouldBe("regexp5.exec('abacadabe')", "['abe','ab','b','b',undefined,undefined]");
42 shouldBe("regexp6.exec('abcde')", "['ab','ab','b','b',undefined,undefined]");
45 shouldBe("regexp7.exec('abc')", "['abc','ab','b']");
48 shouldBe("regexp8.exec('bcaddxqy')" , "['qy','q','q','y']");
51 shouldBe("regexp9.exec('asdfjejgsdflaksdfjkeljghkjea')", "['a','a',undefined]");
54 shouldBe("regexp10.exec('asdfjejgsdflaksdfjkeljghat')", "['at']");
[all …]
Dassertion.js27 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 …]
Drepeat-match-waldemar-expected.txt29 PASS /(?:a*?){2,}/.exec("aa") is ["aa"]
30 PASS /(?:a*?){2,}/.exec("a") is ["a"]
31 PASS /(?:a*?){2,}/.exec("") is [""]
32 PASS /(?:a*?)/.exec("aa") is [""]
33 PASS /(?:a*?)/.exec("a") is [""]
34 PASS /(?:a*?)/.exec("") is [""]
35 PASS /(?:a*?)(?:a*?)(?:a*?)/.exec("aa") is [""]
36 PASS /(?:a*?)(?:a*?)(?:a*?)/.exec("a") is [""]
37 PASS /(?:a*?)(?:a*?)(?:a*?)/.exec("") is [""]
38 PASS /(?:a*?){2}/.exec("aa") is [""]
[all …]
Drepeat-match-waldemar.js28 shouldBe('/(?:a*?){2,}/.exec("aa")', '["aa"]');
29 shouldBe('/(?:a*?){2,}/.exec("a")', '["a"]');
30 shouldBe('/(?:a*?){2,}/.exec("")', '[""]');
32 shouldBe('/(?:a*?)/.exec("aa")', '[""]');
33 shouldBe('/(?:a*?)/.exec("a")', '[""]');
34 shouldBe('/(?:a*?)/.exec("")', '[""]');
36 shouldBe('/(?:a*?)(?:a*?)(?:a*?)/.exec("aa")', '[""]');
37 shouldBe('/(?:a*?)(?:a*?)(?:a*?)/.exec("a")', '[""]');
38 shouldBe('/(?:a*?)(?:a*?)(?:a*?)/.exec("")', '[""]');
40 shouldBe('/(?:a*?){2}/.exec("aa")', '[""]');
[all …]
/external/v8/test/mjsunit/third_party/regexp-pcre/
Dregexp-pcre.js1646 assertToStringEquals("abc", res[1].exec("abc"), 0);
1647 assertToStringEquals("abc", res[1].exec("defabc"), 1);
1648 assertToStringEquals("abc", res[1].exec("Aabc"), 2);
1649 assertNull(res[1].exec("*** Failers", 3));
1650 assertToStringEquals("abc", res[1].exec("Adefabc"), 4);
1651 assertToStringEquals("ABC", res[1].exec("ABC"), 5);
1652 assertToStringEquals("abc", res[2].exec("abc"), 6);
1653 assertNull(res[2].exec("Aabc", 7));
1654 assertNull(res[2].exec("*** Failers", 8));
1655 assertNull(res[2].exec("defabc", 9));
[all …]
/external/mesa3d/src/mesa/vbo/
Dvbo_exec_draw.c45 vbo_exec_debug_verts( struct vbo_exec_context *exec ) in vbo_exec_debug_verts() argument
47 GLuint count = exec->vtx.vert_count; in vbo_exec_debug_verts()
53 exec->vtx.prim_count, in vbo_exec_debug_verts()
54 exec->vtx.vertex_size); in vbo_exec_debug_verts()
56 for (i = 0 ; i < exec->vtx.prim_count ; i++) { in vbo_exec_debug_verts()
57 struct _mesa_prim *prim = &exec->vtx.prim[i]; in vbo_exec_debug_verts()
75 vbo_copy_vertices( struct vbo_exec_context *exec ) in vbo_copy_vertices() argument
77 GLuint nr = exec->vtx.prim[exec->vtx.prim_count-1].count; in vbo_copy_vertices()
79 GLuint sz = exec->vtx.vertex_size; in vbo_copy_vertices()
80 GLfloat *dst = exec->vtx.copied.buffer; in vbo_copy_vertices()
[all …]
Dvbo_exec_api.c60 static void reset_attrfv( struct vbo_exec_context *exec );
67 static void vbo_exec_wrap_buffers( struct vbo_exec_context *exec ) in vbo_exec_wrap_buffers() argument
69 if (exec->vtx.prim_count == 0) { in vbo_exec_wrap_buffers()
70 exec->vtx.copied.nr = 0; in vbo_exec_wrap_buffers()
71 exec->vtx.vert_count = 0; in vbo_exec_wrap_buffers()
72 exec->vtx.buffer_ptr = exec->vtx.buffer_map; in vbo_exec_wrap_buffers()
75 GLuint last_begin = exec->vtx.prim[exec->vtx.prim_count-1].begin; in vbo_exec_wrap_buffers()
78 if (exec->ctx->Driver.CurrentExecPrimitive != PRIM_OUTSIDE_BEGIN_END) { in vbo_exec_wrap_buffers()
79 GLint i = exec->vtx.prim_count - 1; in vbo_exec_wrap_buffers()
81 exec->vtx.prim[i].count = (exec->vtx.vert_count - in vbo_exec_wrap_buffers()
[all …]
Dvbo_exec_eval.c36 static void clear_active_eval1( struct vbo_exec_context *exec, GLuint attr ) in clear_active_eval1() argument
38 assert(attr < Elements(exec->eval.map1)); in clear_active_eval1()
39 exec->eval.map1[attr].map = NULL; in clear_active_eval1()
42 static void clear_active_eval2( struct vbo_exec_context *exec, GLuint attr ) in clear_active_eval2() argument
44 assert(attr < Elements(exec->eval.map2)); in clear_active_eval2()
45 exec->eval.map2[attr].map = NULL; in clear_active_eval2()
48 static void set_active_eval1( struct vbo_exec_context *exec, GLuint attr, GLuint dim, in set_active_eval1() argument
51 assert(attr < Elements(exec->eval.map1)); in set_active_eval1()
52 if (!exec->eval.map1[attr].map) { in set_active_eval1()
53 exec->eval.map1[attr].map = map; in set_active_eval1()
[all …]
/external/v8/benchmarks/
Dregexp.js122 re0.exec(s0[i]);
125 re1.exec(s1[i]);
131 re1.exec(s3[i]);
134 re1.exec(s4[i]);
137 … /qqqq|qqq|qq|q|ZZZZ|ZZZ|ZZ|Z|llll|ll|l|uu|u|UU|U|zz|z|ff|f|gg|g|sss|ss|s|mmm|mm|m/g.exec(s5[i]);
140 re3.exec(s6[i]);
143 re4.exec(s7[i]);
150 re7.exec(s10[i]);
153 re8.exec(s11[i]);
154 re8.exec(s12[i]);
[all …]
/external/v8/test/webkit/fast/js/
Dregexp-no-extensions-expected.txt29 PASS /\x{41}/.exec("yA1") is null
30 PASS /[\x{41}]/.exec("yA1").toString() is "1"
31 PASS /\x1g/.exec("x1g").toString() is "x1g"
32 PASS /[\x1g]/.exec("x").toString() is "x"
33 PASS /[\x1g]/.exec("1").toString() is "1"
34 PASS /\2147483648/.exec(String.fromCharCode(140) + "7483648").toString() is String.fromCharCode(140…
35 PASS /\4294967296/.exec("\"94967296").toString() is "\"94967296"
36 FAIL /\8589934592/.exec("\\8589934592").toString() should be \8589934592. Was 8589934592.
38 PASS /x$/.exec("x\n") is null
40 PASS /[]]/.exec("]") is null
[all …]
Dregexp-no-extensions.js30 shouldBe('/\\x{41}/.exec("yA1")', 'null');
31 shouldBe('/[\\x{41}]/.exec("yA1").toString()', '"1"');
32 shouldBe('/\\x1g/.exec("x1g").toString()', '"x1g"');
33 shouldBe('/[\\x1g]/.exec("x").toString()', '"x"');
34 shouldBe('/[\\x1g]/.exec("1").toString()', '"1"');
35 shouldBe('/\\2147483648/.exec(String.fromCharCode(140) + "7483648").toString()', 'String.fromCharCo…
36 shouldBe('/\\4294967296/.exec("\\"94967296").toString()', '"\\"94967296"');
37 shouldBe('/\\8589934592/.exec("\\\\8589934592").toString()', '"\\\\8589934592"');
39 shouldBe('/x$/.exec("x\\n")', 'null');
41 shouldBe('/[]]/.exec("]")', 'null');
[all …]
/external/elfutils/backends/
Dia64_reloc.def29 /* NAME, REL|EXEC|DYN */
35 RELOC_TYPE (DIR32MSB, REL|EXEC|DYN)
36 RELOC_TYPE (DIR32LSB, REL|EXEC|DYN)
37 RELOC_TYPE (DIR64MSB, REL|EXEC|DYN)
38 RELOC_TYPE (DIR64LSB, REL|EXEC|DYN)
52 RELOC_TYPE (FPTR32MSB, REL|EXEC|DYN)
53 RELOC_TYPE (FPTR32LSB, REL|EXEC|DYN)
54 RELOC_TYPE (FPTR64MSB, REL|EXEC|DYN)
55 RELOC_TYPE (FPTR64LSB, REL|EXEC|DYN)
60 RELOC_TYPE (PCREL32MSB, REL|EXEC|DYN)
[all …]
Dppc_reloc.def29 /* NAME, REL|EXEC|DYN */
32 RELOC_TYPE (ADDR32, REL|EXEC|DYN)
34 RELOC_TYPE (ADDR16, REL|EXEC|DYN) /* note 1 */
35 RELOC_TYPE (ADDR16_LO, REL|EXEC|DYN) /* note 1 */
36 RELOC_TYPE (ADDR16_HI, REL|EXEC|DYN) /* note 1 */
37 RELOC_TYPE (ADDR16_HA, REL|EXEC|DYN) /* note 1 */
38 RELOC_TYPE (ADDR14, REL|EXEC|DYN) /* note 1 */
39 RELOC_TYPE (ADDR14_BRTAKEN, REL|EXEC|DYN) /* note 1 */
40 RELOC_TYPE (ADDR14_BRNTAKEN, REL|EXEC|DYN) /* note 1 */
41 RELOC_TYPE (REL24, REL|EXEC|DYN) /* note 1 */
[all …]
/external/valgrind/VEX/orig_x86/
Dexit42.orig7 ==== BB 0 (0x3A965880) in 0B, out 0B, BBs exec'd 0 ====
13 ==== BB 1 _dl_start(0x3A965C80) in 7B, out 55B, BBs exec'd 0 ====
24 ==== BB 2 (0x3A97592B) in 21B, out 188B, BBs exec'd 0 ====
30 ==== BB 3 (0x3A965C8E) in 25B, out 228B, BBs exec'd 0 ====
52 ==== BB 4 (0x3A965CE1) in 92B, out 457B, BBs exec'd 0 ====
58 ==== BB 5 (0x3A965CD3) in 97B, out 514B, BBs exec'd 0 ====
68 ==== BB 6 (0x3A965CE6) in 111B, out 617B, BBs exec'd 0 ====
76 ==== BB 7 (0x3A965CF6) in 127B, out 690B, BBs exec'd 0 ====
88 ==== BB 8 (0x3A965D0B) in 148B, out 809B, BBs exec'd 0 ====
98 ==== BB 9 (0x3A965D19) in 162B, out 908B, BBs exec'd 0 ====
[all …]
/external/libxml2/
Dxmlregexp.c3070 xmlFARegDebugExec(xmlRegExecCtxtPtr exec) { in xmlFARegDebugExec() argument
3071 printf("state: %d:%d:idx %d", exec->state->no, exec->transno, exec->index); in xmlFARegDebugExec()
3072 if (exec->inputStack != NULL) { in xmlFARegDebugExec()
3075 for (i = 0;(i < 3) && (i < exec->inputStackNr);i++) in xmlFARegDebugExec()
3077 exec->inputStack[exec->inputStackNr - (i + 1)].value); in xmlFARegDebugExec()
3079 printf(": %s", &(exec->inputString[exec->index])); in xmlFARegDebugExec()
3086 xmlFARegExecSave(xmlRegExecCtxtPtr exec) { in xmlFARegExecSave() argument
3089 exec->transno++; in xmlFARegExecSave()
3090 xmlFARegDebugExec(exec); in xmlFARegExecSave()
3091 exec->transno--; in xmlFARegExecSave()
[all …]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts/
Dtest.xml26 <exec dir="." executable="${loginClient}">
28 </exec>
34 <exec dir="." executable="${copyClient}">
36 </exec>
37 <exec dir="." executable="${loginClient}">
39 </exec>
40 <exec dir="." executable="${copyClient}">
42 </exec>
47 <exec dir="." executable="${loginClient}">
49 </exec>
[all …]

12345678910>>...91