Home
last modified time | relevance | path

Searched refs:exec (Results 1 – 25 of 1004) sorted by relevance

12345678910>>...41

/external/mesa3d/prebuilt-intermediates/main/
Dapi_exec.c127 struct _glapi_table *exec; in _mesa_initialize_exec_table() local
129 exec = ctx->Exec; in _mesa_initialize_exec_table()
130 assert(exec != NULL); in _mesa_initialize_exec_table()
134 vbo_initialize_exec_dispatch(ctx, exec); in _mesa_initialize_exec_table()
137 SET_DepthRangeArrayfvOES(exec, _mesa_DepthRangeArrayfvOES); in _mesa_initialize_exec_table()
138 SET_DepthRangeIndexedfOES(exec, _mesa_DepthRangeIndexedfOES); in _mesa_initialize_exec_table()
139 SET_PrimitiveBoundingBox(exec, _mesa_PrimitiveBoundingBox); in _mesa_initialize_exec_table()
142 SET_AttachObjectARB(exec, _mesa_AttachObjectARB); in _mesa_initialize_exec_table()
143 SET_BeginConditionalRender(exec, _mesa_BeginConditionalRender); in _mesa_initialize_exec_table()
144 SET_BeginPerfMonitorAMD(exec, _mesa_BeginPerfMonitorAMD); in _mesa_initialize_exec_table()
[all …]
/external/mesa3d/src/mesa/vbo/
Dvbo_exec_draw.c43 vbo_exec_debug_verts( struct vbo_exec_context *exec ) in vbo_exec_debug_verts() argument
45 GLuint count = exec->vtx.vert_count; in vbo_exec_debug_verts()
51 exec->vtx.prim_count, in vbo_exec_debug_verts()
52 exec->vtx.vertex_size); in vbo_exec_debug_verts()
54 for (i = 0 ; i < exec->vtx.prim_count ; i++) { in vbo_exec_debug_verts()
55 struct _mesa_prim *prim = &exec->vtx.prim[i]; in vbo_exec_debug_verts()
77 vbo_copy_vertices( struct vbo_exec_context *exec ) in vbo_copy_vertices() argument
79 struct _mesa_prim *last_prim = &exec->vtx.prim[exec->vtx.prim_count - 1]; in vbo_copy_vertices()
82 const GLuint sz = exec->vtx.vertex_size; in vbo_copy_vertices()
83 fi_type *dst = exec->vtx.copied.buffer; in vbo_copy_vertices()
[all …]
Dvbo_exec_api.c56 vbo_reset_all_attr(struct vbo_exec_context *exec);
65 vbo_exec_wrap_buffers(struct vbo_exec_context *exec) in vbo_exec_wrap_buffers() argument
67 if (exec->vtx.prim_count == 0) { in vbo_exec_wrap_buffers()
68 exec->vtx.copied.nr = 0; in vbo_exec_wrap_buffers()
69 exec->vtx.vert_count = 0; in vbo_exec_wrap_buffers()
70 exec->vtx.buffer_ptr = exec->vtx.buffer_map; in vbo_exec_wrap_buffers()
73 struct _mesa_prim *last_prim = &exec->vtx.prim[exec->vtx.prim_count - 1]; in vbo_exec_wrap_buffers()
77 if (_mesa_inside_begin_end(exec->ctx)) { in vbo_exec_wrap_buffers()
78 last_prim->count = exec->vtx.vert_count - last_prim->start; in vbo_exec_wrap_buffers()
101 if (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 < ARRAY_SIZE(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 < ARRAY_SIZE(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 < ARRAY_SIZE(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 …]
Dvbo_exec.c39 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; in vbo_exec_init() local
41 exec->ctx = ctx; in vbo_exec_init()
49 vbo_exec_vtx_init( exec ); in vbo_exec_init()
60 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; in vbo_exec_destroy() local
67 vbo_exec_vtx_destroy( exec ); in vbo_exec_destroy()
79 struct vbo_exec_context *exec = &vbo->exec; in vbo_exec_invalidate_state() local
81 if (!exec->validating && new_state & (_NEW_PROGRAM|_NEW_ARRAY)) { in vbo_exec_invalidate_state()
82 exec->array.recalculate_inputs = GL_TRUE; in vbo_exec_invalidate_state()
86 exec->eval.recalculate_maps = GL_TRUE; in vbo_exec_invalidate_state()
/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/mesa3d/src/gallium/drivers/vc4/kernel/
Dvc4_gem.c33 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()
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()
102 if (IS_ERR(exec->exec_bo)) { in vc4_get_bcl()
[all …]
Dvc4_validate.c46 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 …]
Dvc4_render_cl.c92 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()
148 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()
195 vc4_full_res_offset(exec, setup->msaa_color_write, in emit_tile()
[all …]
/external/tensorflow/tensorflow/core/profiler/internal/
Dtfprof_node.h116 for (const auto& exec : cpu_execs_) { in lastest_schedule_end_micros() local
117 for (const auto& pair : exec.second) { in lastest_schedule_end_micros()
125 for (const ExecMemory& exec : memory_execs_) { in requested_bytes() local
126 requested_bytes += exec.requested_bytes(); in requested_bytes()
132 for (const ExecMemory& exec : memory_execs_) { in peak_bytes() local
133 peak_bytes += exec.peak_bytes(); in peak_bytes()
139 for (const ExecMemory& exec : memory_execs_) { in residual_bytes() local
140 residual_bytes += exec.residual_bytes(); in residual_bytes()
146 for (const ExecMemory& exec : memory_execs_) { in output_bytes() local
147 output_bytes += exec.output_bytes(); in output_bytes()
[all …]
/external/libxml2/
Dxmlregexp.c3080 xmlFARegDebugExec(xmlRegExecCtxtPtr exec) { in xmlFARegDebugExec() argument
3081 printf("state: %d:%d:idx %d", exec->state->no, exec->transno, exec->index); in xmlFARegDebugExec()
3082 if (exec->inputStack != NULL) { in xmlFARegDebugExec()
3085 for (i = 0;(i < 3) && (i < exec->inputStackNr);i++) in xmlFARegDebugExec()
3087 exec->inputStack[exec->inputStackNr - (i + 1)].value); in xmlFARegDebugExec()
3089 printf(": %s", &(exec->inputString[exec->index])); in xmlFARegDebugExec()
3096 xmlFARegExecSave(xmlRegExecCtxtPtr exec) { in xmlFARegExecSave() argument
3099 exec->transno++; in xmlFARegExecSave()
3100 xmlFARegDebugExec(exec); in xmlFARegExecSave()
3101 exec->transno--; in xmlFARegExecSave()
[all …]
DtestAutomata.c39 xmlRegExecCtxtPtr exec = NULL; in testRegexpFile() local
183 if (exec == NULL) in testRegexpFile()
184 exec = xmlRegNewExecCtxt(regexp, NULL, NULL); in testRegexpFile()
186 ret = xmlRegExecPushString(exec, NULL, NULL); in testRegexpFile()
194 xmlRegFreeExecCtxt(exec); in testRegexpFile()
195 exec = NULL; in testRegexpFile()
199 if (exec == NULL) in testRegexpFile()
200 exec = xmlRegNewExecCtxt(regexp, NULL, NULL); in testRegexpFile()
201 ret = xmlRegExecPushString(exec, BAD_CAST expr, NULL); in testRegexpFile()
211 if (exec != NULL) in testRegexpFile()
[all …]
/external/icu/icu4c/source/test/intltest/
Ditmajor.cpp45 if(exec) { \
52 void MajorTestLevel::runIndexedTest( int32_t index, UBool exec, const char* &name, char* par ) in runIndexedTest() argument
56 if (exec) { in runIndexedTest()
65 if (exec) { in runIndexedTest()
75 if (exec) { in runIndexedTest()
85 if (exec) { in runIndexedTest()
95 if (exec) { in runIndexedTest()
105 if (exec) { in runIndexedTest()
115 if (exec) { in runIndexedTest()
124 if (exec) { in runIndexedTest()
[all …]
Ditformat.cpp69 void runIndexedTest(int32_t index, UBool exec, const char*& name, char*) { in runIndexedTest() argument
72 if (exec) { in runIndexedTest()
94 if (exec) { \
102 void IntlTestFormat::runIndexedTest( int32_t index, UBool exec, const char* &name, char* par ) in runIndexedTest() argument
107 if (exec) { in runIndexedTest()
118 if (exec) logln("TestSuite Format: "); in runIndexedTest()
162 if (exec) { in runIndexedTest()
177 if (exec) { in runIndexedTest()
186 if (exec) { in runIndexedTest()
197 if (exec) { in runIndexedTest()
[all …]
/external/kernel-headers/original/uapi/linux/
Da.out.h44 #define N_MAGIC(exec) ((exec).a_info & 0xffff) argument
46 #define N_MACHTYPE(exec) ((enum machine_type)(((exec).a_info >> 16) & 0xff)) argument
47 #define N_FLAGS(exec) (((exec).a_info >> 24) & 0xff) argument
48 #define N_SET_INFO(exec, magic, type, flags) \ argument
49 ((exec).a_info = ((magic) & 0xffff) \
52 #define N_SET_MAGIC(exec, magic) \ argument
53 ((exec).a_info = (((exec).a_info & 0xffff0000) | ((magic) & 0xffff)))
55 #define N_SET_MACHTYPE(exec, machtype) \ argument
56 ((exec).a_info = \
57 ((exec).a_info&0xff00ffff) | ((((int)(machtype))&0xff) << 16))
[all …]
/external/mesa3d/src/gallium/drivers/vc4/
Dvc4_simulator.c213 struct vc4_exec_info *exec) in vc4_simulator_pin_bos() argument
217 struct drm_vc4_submit_cl *args = exec->args; in vc4_simulator_pin_bos()
220 exec->bo_count = args->bo_handle_count; in vc4_simulator_pin_bos()
221 exec->bo = calloc(exec->bo_count, sizeof(void *)); in vc4_simulator_pin_bos()
222 for (int i = 0; i < exec->bo_count; i++) { in vc4_simulator_pin_bos()
237 exec->bo[i] = obj; in vc4_simulator_pin_bos()
252 vc4_simulator_unpin_bos(struct vc4_exec_info *exec) in vc4_simulator_unpin_bos() argument
254 for (int i = 0; i < exec->bo_count; i++) { in vc4_simulator_unpin_bos()
255 struct drm_gem_cma_object *obj = exec->bo[i]; in vc4_simulator_unpin_bos()
269 free(exec->bo); in vc4_simulator_unpin_bos()
[all …]
/external/syslinux/com32/hdt/
Dhdt-cli-hdt.c327 .exec = cli_clear_screen,
332 .exec = do_exit,
337 .exec = show_cli_help,
342 .exec = goto_menu,
347 .exec = do_reboot,
352 .exec = print_history,
357 .exec = do_dump,
362 .exec = do_say,
367 .exec = do_display,
372 .exec = do_sleep,
[all …]
/external/llvm/test/CodeGen/AMDGPU/
Dwqm.ll19 ;CHECK-NEXT: s_wqm_b64 exec, exec
21 ;CHECK-NOT: exec
37 ;CHECK-NEXT: s_mov_b64 [[ORIG:s\[[0-9]+:[0-9]+\]]], exec
38 ;CHECK-NEXT: s_wqm_b64 exec, exec
40 ;CHECK: s_and_b64 exec, exec, [[ORIG]]
42 ;CHECK-NOT: exec
59 ;CHECK-NEXT: s_mov_b64 [[ORIG:s\[[0-9]+:[0-9]+\]]], exec
60 ;CHECK-NEXT: s_wqm_b64 exec, exec
62 ;CHECK: s_and_b64 exec, exec, [[ORIG]]
64 ;CHECK: s_wqm_b64 exec, exec
[all …]
Dindirect-addressing-undef.mir9 # CHECK: V_READFIRSTLANE_B32 undef %vgpr10, implicit %exec
10 # CHECK: %vgpr0 = V_MOVRELS_B32_e32 %vgpr0, implicit %m0, implicit %exec, implicit %vgpr0_vgpr1_vgp…
11 # CHECK: S_CBRANCH_EXECNZ %bb.1, implicit %exec
94 …r1_vgpr2_vgpr3 = BUFFER_LOAD_DWORDX4_OFFSET %sgpr4_sgpr5_sgpr6_sgpr7, 0, 0, 0, 0, 0, implicit %exec
97 …gpr3, undef %vgpr10, 0, implicit-def dead %exec, implicit-def dead %vcc, implicit-def dead %m0, im…
99 …ER_STORE_DWORD_OFFSET killed %vgpr0, killed %sgpr4_sgpr5_sgpr6_sgpr7, 0, 0, 0, 0, 0, implicit %exec
109 # CHECK: %vcc_lo = V_READFIRSTLANE_B32 undef %vgpr10, implicit %exec
112 # CHECK: %vgpr0 = V_MOVRELS_B32_e32 %vgpr0, implicit %m0, implicit %exec, implicit %vgpr0_vgpr1_vgp…
113 # CHECK: S_CBRANCH_EXECNZ %bb.1, implicit %exec
150 …r1_vgpr2_vgpr3 = BUFFER_LOAD_DWORDX4_OFFSET %sgpr4_sgpr5_sgpr6_sgpr7, 0, 0, 0, 0, 0, implicit %exec
[all …]
/external/freetype/src/truetype/
Dttobjs.c813 TT_ExecContext exec; in tt_size_run_fpgm() local
817 exec = size->context; in tt_size_run_fpgm()
819 error = TT_Load_Context( exec, face, size ); in tt_size_run_fpgm()
823 exec->callTop = 0; in tt_size_run_fpgm()
824 exec->top = 0; in tt_size_run_fpgm()
826 exec->period = 64; in tt_size_run_fpgm()
827 exec->phase = 0; in tt_size_run_fpgm()
828 exec->threshold = 0; in tt_size_run_fpgm()
830 exec->instruction_trap = FALSE; in tt_size_run_fpgm()
831 exec->F_dot_P = 0x4000L; in tt_size_run_fpgm()
[all …]
Dttsubpix.c895 loader->exec->sph_tweak_flags |= SPH_TWEAK_##x;
900 loader->exec->sph_tweak_flags &= ~SPH_TWEAK_##x;
924 if ( loader->exec->sph_tweak_flags & SPH_TWEAK_PIXEL_HINTING ) in sph_set_tweaks()
926 loader->exec->ignore_x_mode = FALSE; in sph_set_tweaks()
955 if ( loader->exec->sph_tweak_flags & SPH_TWEAK_RASTERIZER_35 ) in sph_set_tweaks()
957 if ( loader->exec->rasterizer_version != TT_INTERPRETER_VERSION_35 ) in sph_set_tweaks()
959 loader->exec->rasterizer_version = TT_INTERPRETER_VERSION_35; in sph_set_tweaks()
960 loader->exec->size->cvt_ready = -1; in sph_set_tweaks()
963 loader->exec->size, in sph_set_tweaks()
967 loader->exec->rasterizer_version = TT_INTERPRETER_VERSION_35; in sph_set_tweaks()
[all …]
/external/protobuf/js/
Dgulpfile.js5 function exec(command, cb) { function
12exec(protoc + ' --js_out=library=testproto_libs,binary:. -I ../src -I . *.proto ../src/google/pro…
21exec('mkdir -p commonjs_out && ' + protoc + ' --js_out=import_style=commonjs,binary:commonjs_out -…
32exec('./node_modules/google-closure-library/closure/bin/calcdeps.py -i message.js -i binary/reader…
41exec('mkdir -p commonjs_out/test_node_modules && ./node_modules/google-closure-library/closure/bin…
50exec('mkdir -p commonjs_out/test_node_modules && ./node_modules/google-closure-library/closure/bin…
70 exec(cmd +
82exec('./node_modules/google-closure-library/closure/bin/build/depswriter.py *.js binary/*.js > dep…
91 exec('JASMINE_CONFIG_PATH=jasmine.json ./node_modules/.bin/jasmine',
100exec('cd commonjs_out && JASMINE_CONFIG_PATH=jasmine.json NODE_PATH=test_node_modules ../node_modu…
/external/icu/icu4c/source/test/perf/usetperf/
Dusetperf.cpp104 …virtual UPerfFunction* runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = N… in runIndexedTest() argument
107 if (exec) return new CmdOp(U_TITLECASE_LETTER, &CmdOp::add) ; break; in runIndexedTest()
109 if (exec) return new CmdOp(U_TITLECASE_LETTER, &CmdOp::contains) ; break; in runIndexedTest()
111 if (exec) return new CmdOp(U_TITLECASE_LETTER, &CmdOp::iterator) ; break; in runIndexedTest()
113 if (exec) return new CmdOp(U_UNASSIGNED, &CmdOp::add) ; break; in runIndexedTest()
115 if (exec) return new CmdOp(U_UNASSIGNED, &CmdOp::contains) ; break; in runIndexedTest()
117 if (exec) return new CmdOp(U_UNASSIGNED, &CmdOp::iterator) ; break; in runIndexedTest()
119 if (exec) return new CmdPattern(PAT[0]) ; break; in runIndexedTest()
121 if (exec) return new CmdPattern(PAT[1]) ; break; in runIndexedTest()
123 if (exec) return new CmdPattern(PAT[2]) ; break; in runIndexedTest()
/external/wpa_supplicant_8/hs20/server/www/
Dusers.php64 $db->exec("UPDATE users SET remediation='' WHERE rowid=$id");
67 $db->exec("UPDATE users SET remediation='user' WHERE rowid=$id");
70 $db->exec("UPDATE users SET remediation='machine' WHERE rowid=$id");
73 $db->exec("UPDATE users SET remediation='policy' WHERE rowid=$id");
76 $db->exec("UPDATE users SET remediation='free' WHERE rowid=$id");
79 $db->exec("UPDATE users SET fetch_pps=1 WHERE rowid=$id");
82 $db->exec("UPDATE users SET fetch_pps=0 WHERE rowid=$id");
85 $db->exec("UPDATE users SET password='ChangeMe' WHERE rowid=$id");
91 $db->exec("UPDATE users SET policy='$policy' WHERE rowid=$id");
97 $db->exec("UPDATE users SET shared=1 WHERE rowid=$id");
[all …]
/external/valgrind/none/tests/mips64/
Dallexec.c20 void test_allexec (char *exec) in test_allexec() argument
22 FORKEXECWAIT (execlp(exec, exec, (char *) NULL)); in test_allexec()
23 FORKEXECWAIT (execlp(exec, exec, "constant_arg1", "constant_arg2", in test_allexec()
28 char *const argv[] = {exec, NULL}; in test_allexec()
29 FORKEXECWAIT (execve(exec, argv, environ)); in test_allexec()

12345678910>>...41