| /third_party/mesa3d/src/mesa/vbo/ |
| D | vbo_exec_draw.c | 41 vbo_exec_debug_verts(struct vbo_exec_context *exec) in vbo_exec_debug_verts() argument 43 GLuint count = exec->vtx.vert_count; in vbo_exec_debug_verts() 49 exec->vtx.prim_count, in vbo_exec_debug_verts() 50 exec->vtx.vertex_size); in vbo_exec_debug_verts() 52 for (i = 0 ; i < exec->vtx.prim_count ; i++) { in vbo_exec_debug_verts() 55 _mesa_lookup_prim_by_nr(exec->vtx.mode[i]), in vbo_exec_debug_verts() 56 exec->vtx.draw[i].start, in vbo_exec_debug_verts() 57 exec->vtx.draw[i].start + exec->vtx.draw[i].count, in vbo_exec_debug_verts() 58 exec->vtx.markers[i].begin ? "BEGIN" : "(wrap)", in vbo_exec_debug_verts() 59 exec->vtx.markers[i].end ? "END" : "(wrap)"); in vbo_exec_debug_verts() [all …]
|
| D | vbo_exec_api.c | 55 vbo_reset_all_attr(struct vbo_exec_context *exec); 64 vbo_exec_wrap_buffers(struct vbo_exec_context *exec) in vbo_exec_wrap_buffers() argument 66 if (exec->vtx.prim_count == 0) { in vbo_exec_wrap_buffers() 67 exec->vtx.copied.nr = 0; in vbo_exec_wrap_buffers() 68 exec->vtx.vert_count = 0; in vbo_exec_wrap_buffers() 69 exec->vtx.buffer_ptr = exec->vtx.buffer_map; in vbo_exec_wrap_buffers() 72 struct gl_context *ctx = gl_context_from_vbo_exec(exec); in vbo_exec_wrap_buffers() 73 unsigned last = exec->vtx.prim_count - 1; in vbo_exec_wrap_buffers() 74 struct pipe_draw_start_count_bias *last_draw = &exec->vtx.draw[last]; in vbo_exec_wrap_buffers() 75 const bool last_begin = exec->vtx.markers[last].begin; in vbo_exec_wrap_buffers() [all …]
|
| D | vbo_exec_eval.c | 37 static void clear_active_eval1( struct vbo_exec_context *exec, GLuint attr ) in clear_active_eval1() argument 39 assert(attr < ARRAY_SIZE(exec->eval.map1)); in clear_active_eval1() 40 exec->eval.map1[attr].map = NULL; in clear_active_eval1() 43 static void clear_active_eval2( struct vbo_exec_context *exec, GLuint attr ) in clear_active_eval2() argument 45 assert(attr < ARRAY_SIZE(exec->eval.map2)); in clear_active_eval2() 46 exec->eval.map2[attr].map = NULL; in clear_active_eval2() 49 static void set_active_eval1( struct vbo_exec_context *exec, GLuint attr, GLuint dim, in set_active_eval1() argument 52 assert(attr < ARRAY_SIZE(exec->eval.map1)); in set_active_eval1() 53 if (!exec->eval.map1[attr].map) { in set_active_eval1() 54 exec->eval.map1[attr].map = map; in set_active_eval1() [all …]
|
| /third_party/jerryscript/tests/jerry/es2015/ |
| D | regexp-unicode.js | 15 var result = /\0/.exec("\u0000"); 19 result = /\0/u.exec("\u0000"); 23 result = /\000/.exec("\u0000"); 28 new RegExp("\\000", 'u').exec("\u0000"); 34 result = /\0000/.exec("\u0000\u0030"); 38 result = /\377/.exec("\u00ff"); 43 new RegExp("\\377", 'u').exec("\u00ff"); 49 result = /\3777/.exec("\u00ff\u0037"); 54 new RegExp("\\3777", 'u').exec("\u00ff\u0037"); 60 result = /\400/.exec("\u0020\u0030"); [all …]
|
| D | regexp-flags.js | 17 var m = r.exec(""); 22 assert (r.exec("EE")[0] === 'E'); 23 assert (r.exec("EE")[0] === ''); 24 assert (r.exec("EE")[0] === 'E'); 33 assert (/\udc96/.exec("\ud803\udc96")[0] === '\udc96'); 34 assert (/\udc96/u.exec("\ud803\udc96") === null); 35 assert (/\udc96/u.exec("\udc96")[0] === '\udc96'); 37 assert (/\ud803/.exec("\ud803\udc96")[0] === '\ud803'); 38 assert (/\ud803/u.exec("\ud803\udc96") === null); 39 assert (/\ud803/u.exec("\ud803")[0] === '\ud803'); [all …]
|
| /third_party/jerryscript/tests/jerry/ |
| D | regexp-capture-groups.js | 19 assert (r.exec ("a") == ","); 22 assert (r.exec ("a") == "a,a"); 25 assert (r.exec ("abc") == "abc,ab,a"); 28 assert (r.exec ("b")[0] == ""); 29 assert (r.exec ("b")[1] == undefined); 30 assert (r.exec ("aaaa") == "aaaa,a"); 33 assert (r.exec ("aaaa") == "aaaa,a"); 36 assert (r.exec ("aaaa") == "aaaa,a"); 39 assert (r.exec ("a") == "a,a"); 40 assert (r.exec ("aa") == "aa,a"); [all …]
|
| D | regexp-backtrack.js | 15 assert (JSON.stringify (/(?:(a)*){3,}/.exec("aaaab")) === '["aaaa",null]'); 16 assert (JSON.stringify (/((a)*){3,}/.exec("aaaab")) === '["aaaa","",null]'); 17 assert (JSON.stringify (/((a)+){3,}/.exec("aaaab")) === '["aaaa","a","a"]'); 18 assert (JSON.stringify (/((.)*){3,}/.exec("abcd")) === '["abcd","",null]'); 19 assert (JSON.stringify (/((.)+){3,}/.exec("abcd")) === '["abcd","d","d"]'); 21 assert (JSON.stringify (/((.){1,2}){1,2}/.exec("abc")) === '["abc","c","c"]'); 22 assert (JSON.stringify (/(?:(a)*?)asd/.exec("aaasd")) === '["aaasd","a"]'); 23 assert (JSON.stringify (/(?:(a)*)asd/.exec("aaasd")) === '["aaasd","a"]'); 25 assert (JSON.stringify (/(.)*((a)*|(b)*)/.exec("ab")) === '["ab","b","",null,null]'); 26 assert (JSON.stringify (/(.)*((x)|(y))+/.exec("xy")) === '["xy","x","y",null,"y"]'); [all …]
|
| D | regexp-non-capture-groups.js | 19 assert (r.exec ("a") == ""); 22 assert (r.exec ("a") == "a"); 25 assert (r.exec ("abc") == "abc"); 28 assert (r.exec ("b") == ""); 29 assert (r.exec ("aaaa") == "aaaa"); 32 assert (r.exec ("aaaa") == "aaaa"); 35 assert (r.exec ("aaaa") == "aaaa"); 38 assert (r.exec ("a") == "a"); 39 assert (r.exec ("aa") == "aa"); 40 assert (r.exec ("aaaa") == "aa"); [all …]
|
| D | regexp-simple-atom-and-iterations.js | 18 assert (r.exec ("a") == "a"); 19 assert (r.exec ("b") == undefined); 22 assert (r.exec ("abc") == "abc"); 25 assert (r.exec ("aaa") == "aaa"); 26 assert (r.exec ("b") == ""); 29 assert (r.exec ("aaa") == "aaa"); 30 assert (r.exec ("b") == undefined); 33 assert (r.exec ("a") == "a"); 34 assert (r.exec ("ab") == "ab"); 35 assert (r.exec ("abbbb") == "abbbb"); [all …]
|
| D | regexp-assertions.js | 17 t = new RegExp ("^alma$").exec("alma"); 20 t = new RegExp ("^alma$").exec("almaa"); 23 t = new RegExp ("^alma$").exec("aalma"); 26 t = new RegExp ("^alma").exec("alma"); 29 t = new RegExp ("^alma").exec("almaa"); 32 t = new RegExp ("^alma").exec("aalma"); 35 t = new RegExp ("alma$").exec("alma"); 38 t = new RegExp ("alma$").exec("almaa"); 41 t = new RegExp ("alma$").exec("aalma"); 44 t = new RegExp ("\\bis\\b").exec("This island is beautiful"); [all …]
|
| D | regexp-character-class.js | 17 r = new RegExp ("[abc]*").exec("aaabbcccabcacbacabacbacab"); 20 r = new RegExp ("[abc]*").exec("aaabbcccabdcacb"); 23 r = new RegExp ("[abc]*").exec("defghjklmnopqrstuvwxyz"); 26 r = new RegExp ("[a-z]*").exec("abcdefghjklmnopqrstuvwxyz"); 29 r = new RegExp ("[A-Z]*").exec("abcdefghjklmnopqrstuvwxyz"); 32 r = new RegExp ("[^a-z]*").exec("abcdefghjklmnopqrstuvwxyz"); 35 r = new RegExp ("[^A-Z]*").exec("abcdefghjklmnopqrstuvwxyz"); 38 r = new RegExp ("\\d*").exec("abcdefghjklmnopqrstuvwxyz"); 41 r = new RegExp ("\\D*").exec("abcdefghjklmnopqrstuvwxyz"); 44 r = new RegExp ("\\w*").exec("abcdefghjklmnopqrstuvwxyz"); [all …]
|
| /third_party/mesa3d/src/gallium/drivers/vc4/kernel/ |
| D | vc4_gem.c | 33 vc4_get_bcl(struct drm_device *dev, struct vc4_exec_info *exec) in vc4_get_bcl() argument 35 struct drm_vc4_submit_cl *args = exec->args; in vc4_get_bcl() 52 DRM_ERROR("overflow in exec arguments\n"); in vc4_get_bcl() 71 exec->shader_rec_u = temp + shader_rec_offset; in vc4_get_bcl() 72 exec->uniforms_u = temp + uniforms_offset; in vc4_get_bcl() 73 exec->shader_state = temp + exec_size; in vc4_get_bcl() 74 exec->shader_state_size = args->shader_rec_count; in vc4_get_bcl() 84 ret = copy_from_user(exec->shader_rec_u, in vc4_get_bcl() 92 ret = copy_from_user(exec->uniforms_u, in vc4_get_bcl() 100 exec->exec_bo = drm_gem_cma_create(dev, exec_size); in vc4_get_bcl() [all …]
|
| D | vc4_validate.c | 46 struct vc4_exec_info *exec, \ 97 vc4_use_bo(struct vc4_exec_info *exec, uint32_t hindex) in vc4_use_bo() argument 102 if (hindex >= exec->bo_count) { in vc4_use_bo() 104 hindex, exec->bo_count); in vc4_use_bo() 107 obj = exec->bo[hindex]; in vc4_use_bo() 120 vc4_use_handle(struct vc4_exec_info *exec, uint32_t gem_handles_packet_index) in vc4_use_handle() argument 122 return vc4_use_bo(exec, exec->bo_index[gem_handles_packet_index]); in vc4_use_handle() 126 validate_bin_pos(struct vc4_exec_info *exec, void *untrusted, uint32_t pos) in validate_bin_pos() argument 131 return (untrusted - 1 == exec->bin_u + pos); in validate_bin_pos() 150 vc4_check_tex_size(struct vc4_exec_info *exec, struct drm_gem_cma_object *fbo, in vc4_check_tex_size() argument [all …]
|
| D | vc4_render_cl.c | 92 static uint32_t vc4_full_res_offset(struct vc4_exec_info *exec, in vc4_full_res_offset() argument 98 (DIV_ROUND_UP(exec->args->width, exec->tile_width) * y + x); in vc4_full_res_offset() 116 static void emit_tile(struct vc4_exec_info *exec, in emit_tile() argument 120 struct drm_vc4_submit_cl *args = exec->args; in emit_tile() 132 vc4_full_res_offset(exec, setup->color_read, in emit_tile() 145 /* Exec previous load. */ in emit_tile() 154 vc4_full_res_offset(exec, setup->zs_read, in emit_tile() 178 rcl_u32(setup, (exec->tile_bo->paddr + in emit_tile() 179 exec->tile_alloc_offset + in emit_tile() 180 (y * exec->bin_tiles_x + x) * 32)); in emit_tile() [all …]
|
| /third_party/mesa3d/src/amd/compiler/ |
| D | aco_insert_exec_mask.cpp | 77 exec; /* Vector of exec masks. Either a temporary or const -1. */ member 104 * epilog without considering the exec mask. in needs_exact() 181 return Operand(exec, t.regClass()); in get_exec_op() 189 if (ctx.info[idx].exec.back().second & mask_type_wqm) in transition_to_WQM() 191 if (ctx.info[idx].exec.back().second & mask_type_global) { in transition_to_WQM() 192 Operand exec_mask = ctx.info[idx].exec.back().first; in transition_to_WQM() 194 exec_mask = bld.copy(bld.def(bld.lm), Operand(exec, bld.lm)); in transition_to_WQM() 195 ctx.info[idx].exec.back().first = exec_mask; in transition_to_WQM() 198 exec_mask = bld.sop1(Builder::s_wqm, Definition(exec, bld.lm), bld.def(s1, scc), in transition_to_WQM() 200 ctx.info[idx].exec.emplace_back(exec_mask, mask_type_global | mask_type_wqm); in transition_to_WQM() [all …]
|
| /third_party/mesa3d/src/mapi/glapi/gen/ |
| D | NV_half_float.xml | 8 <function name="Vertex2hNV" exec="vtxfmt" deprecated="3.1"> 13 <function name="Vertex2hvNV" exec="vtxfmt" deprecated="3.1"> 17 <function name="Vertex3hNV" exec="vtxfmt" deprecated="3.1"> 23 <function name="Vertex3hvNV" exec="vtxfmt" deprecated="3.1"> 27 <function name="Vertex4hNV" exec="vtxfmt" deprecated="3.1"> 34 <function name="Vertex4hvNV" exec="vtxfmt" deprecated="3.1"> 38 <function name="Normal3hNV" exec="vtxfmt" deprecated="3.1"> 44 <function name="Normal3hvNV" exec="vtxfmt" deprecated="3.1"> 48 <function name="Color3hNV" exec="vtxfmt" deprecated="3.1"> 54 <function name="Color3hvNV" exec="vtxfmt" deprecated="3.1"> [all …]
|
| D | ARB_vertex_type_2_10_10_10_rev.xml | 10 <function name="VertexP2ui" deprecated="3.1" exec="vtxfmt"> 15 <function name="VertexP3ui" deprecated="3.1" exec="vtxfmt"> 20 <function name="VertexP4ui" deprecated="3.1" exec="vtxfmt"> 25 <function name="VertexP2uiv" deprecated="3.1" exec="vtxfmt"> 30 <function name="VertexP3uiv" deprecated="3.1" exec="vtxfmt"> 35 <function name="VertexP4uiv" deprecated="3.1" exec="vtxfmt"> 40 <function name="TexCoordP1ui" deprecated="3.1" exec="vtxfmt"> 45 <function name="TexCoordP2ui" deprecated="3.1" exec="vtxfmt"> 50 <function name="TexCoordP3ui" deprecated="3.1" exec="vtxfmt"> 55 <function name="TexCoordP4ui" deprecated="3.1" exec="vtxfmt"> [all …]
|
| D | ARB_gpu_shader_int64.xml | 8 <function name="Uniform1i64ARB" exec="dlist"> 13 <function name="Uniform2i64ARB" exec="dlist"> 19 <function name="Uniform3i64ARB" exec="dlist"> 26 <function name="Uniform4i64ARB" exec="dlist"> 34 <function name="Uniform1i64vARB" exec="dlist"> 40 <function name="Uniform2i64vARB" exec="dlist"> 46 <function name="Uniform3i64vARB" exec="dlist"> 52 <function name="Uniform4i64vARB" exec="dlist"> 58 <function name="Uniform1ui64ARB" exec="dlist"> 63 <function name="Uniform2ui64ARB" exec="dlist"> [all …]
|
| D | ARB_separate_shader_objects.xml | 18 <function name="UseProgramStages" es2="3.1" no_error="true" exec="dlist"> 62 <function name="ProgramUniform1i" es2="3.1" exec="dlist"> 67 <function name="ProgramUniform2i" es2="3.1" exec="dlist"> 73 <function name="ProgramUniform3i" es2="3.1" exec="dlist"> 80 <function name="ProgramUniform4i" es2="3.1" exec="dlist"> 88 <function name="ProgramUniform1ui" es2="3.1" exec="dlist"> 93 <function name="ProgramUniform2ui" es2="3.1" exec="dlist"> 99 <function name="ProgramUniform3ui" es2="3.1" exec="dlist"> 106 <function name="ProgramUniform4ui" es2="3.1" exec="dlist"> 114 <function name="ProgramUniform1f" es2="3.1" exec="dlist"> [all …]
|
| /third_party/elfutils/backends/ |
| D | ia64_reloc.def | 29 /* 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 …]
|
| D | x86_64_reloc.def | 29 /* NAME, REL|EXEC|DYN */ 32 RELOC_TYPE (64, REL|EXEC|DYN) 33 RELOC_TYPE (PC32, REL|EXEC|DYN) 36 RELOC_TYPE (COPY, EXEC|DYN) 37 RELOC_TYPE (GLOB_DAT, EXEC|DYN) 38 RELOC_TYPE (JUMP_SLOT, EXEC|DYN) 39 RELOC_TYPE (RELATIVE, EXEC|DYN) 41 RELOC_TYPE (32, REL|EXEC|DYN) 47 RELOC_TYPE (DTPMOD64, EXEC|DYN) 48 RELOC_TYPE (DTPOFF64, EXEC|DYN) [all …]
|
| D | ppc_reloc.def | 29 /* 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 …]
|
| /third_party/node/deps/npm/test/lib/commands/ |
| D | exec.js | 15 npm.exec('exec', ['bar']), 35 'npm-exec-test': { 38 require('fs').writeFileSync('npm-exec-test-success', '')`, 47 '1.0.0': path.join(npm.prefix, 'npm-exec-test'), 50 await npm.exec('exec', ['@npmcli/npx-test']) 51 const exists = await fs.stat(path.join(npm.prefix, 'npm-exec-test-success')) 70 'npm-exec-test': { 73 require('fs').writeFileSync('npm-exec-test-success', '')`, 84 '1.0.0': path.join(npm.prefix, 'npm-exec-test'), 87 await npm.exec('exec', ['@npmcli/npx-test']) [all …]
|
| /third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_util/ |
| D | AsNode.h | 28 static ANGLE_INLINE TIntermNode *exec(TIntermNode *node) { return node; } 34 static ANGLE_INLINE TIntermTyped *exec(TIntermNode *node) 43 static ANGLE_INLINE TIntermSymbol *exec(TIntermNode *node) 52 static ANGLE_INLINE TIntermConstantUnion *exec(TIntermNode *node) 61 static ANGLE_INLINE TIntermFunctionPrototype *exec(TIntermNode *node) 70 static ANGLE_INLINE TIntermPreprocessorDirective *exec(TIntermNode *node) 79 static ANGLE_INLINE TIntermSwizzle *exec(TIntermNode *node) 88 static ANGLE_INLINE TIntermBinary *exec(TIntermNode *node) 97 static ANGLE_INLINE TIntermUnary *exec(TIntermNode *node) 106 static ANGLE_INLINE TIntermTernary *exec(TIntermNode *node) [all …]
|
| /third_party/mesa3d/src/gallium/drivers/vc4/ |
| D | vc4_simulator.c | 240 struct vc4_exec_info *exec) in vc4_simulator_pin_bos() argument 242 struct drm_vc4_submit_cl *args = exec->args; in vc4_simulator_pin_bos() 245 exec->bo_count = args->bo_handle_count; in vc4_simulator_pin_bos() 246 exec->bo = calloc(exec->bo_count, sizeof(void *)); in vc4_simulator_pin_bos() 247 for (int i = 0; i < exec->bo_count; i++) { in vc4_simulator_pin_bos() 255 exec->bo[i] = obj; in vc4_simulator_pin_bos() 261 vc4_simulator_unpin_bos(struct vc4_exec_info *exec) in vc4_simulator_unpin_bos() argument 263 for (int i = 0; i < exec->bo_count; i++) { in vc4_simulator_unpin_bos() 264 struct drm_gem_cma_object *obj = exec->bo[i]; in vc4_simulator_unpin_bos() 275 free(exec->bo); in vc4_simulator_unpin_bos() [all …]
|