Home
last modified time | relevance | path

Searched full:cmd (Results 1 – 25 of 5962) sorted by relevance

12345678910>>...239

/external/virglrenderer/tests/
Dtest_fuzzer_formats.c119 uint32_t cmd[VIRGL_CMD_BLIT_SIZE + 1]; in test_format_wrong_size() local
122 cmd[i++] = VIRGL_CMD_BLIT_SIZE << 16 | 0 << 8 | VIRGL_CCMD_BLIT; in test_format_wrong_size()
123 cmd[i++] = 0x8000001; // s0 in test_format_wrong_size()
124 cmd[i++] = 0; // minxy in test_format_wrong_size()
125 cmd[i++] = 0; // maxxy in test_format_wrong_size()
126 cmd[i++] = 10; //dhandle in test_format_wrong_size()
127 cmd[i++] = 0; // dlevel in test_format_wrong_size()
128 cmd[i++] = 0x1000029; //dformat in test_format_wrong_size()
129 cmd[i++] = 0; //dx in test_format_wrong_size()
130 cmd[i++] = 0; // dy in test_format_wrong_size()
[all …]
/external/autotest/client/profilers/ftrace/
Dtrace-cmd.tar.bz2 ... trace-cmd/ trace-cmd/trace-cmd.h trace-cmd/version.h trace ...
/external/iptables/iptables/
Dnft-cmd.c16 #include "nft-cmd.h"
28 struct nft_cmd *cmd; in nft_cmd_new() local
30 cmd = xtables_calloc(1, sizeof(struct nft_cmd)); in nft_cmd_new()
31 cmd->error.lineno = h->error.lineno; in nft_cmd_new()
32 cmd->command = command; in nft_cmd_new()
33 cmd->table = xtables_strdup(table); in nft_cmd_new()
35 cmd->chain = xtables_strdup(chain); in nft_cmd_new()
36 cmd->rulenum = rulenum; in nft_cmd_new()
37 cmd->verbose = verbose; in nft_cmd_new()
42 nft_cmd_free(cmd); in nft_cmd_new()
[all …]
/external/vboot_reference/utility/
Dtlcl_generator.c56 static void AddVisibleField(Command* cmd, const char* name, int offset) { in AddVisibleField() argument
58 if (cmd->fields != NULL) { in AddVisibleField()
61 fld->next = cmd->fields; in AddVisibleField()
62 cmd->fields = fld; in AddVisibleField()
71 static void AddInitializedField(Command* cmd, int offset, in AddInitializedField() argument
74 fld->next = cmd->fields; in AddInitializedField()
75 cmd->fields = fld; in AddInitializedField()
86 Command* cmd = (Command*) calloc(1, sizeof(Command)); in newCommand() local
87 cmd->size = size; in newCommand()
88 AddInitializedField(cmd, 0, sizeof(TPM_TAG), TPM_TAG_RQU_COMMAND); in newCommand()
[all …]
/external/python/cpython3/Lib/distutils/tests/
Dtest_cmd.py1 """Tests for distutils.cmd."""
6 from distutils.cmd import Command
19 self.cmd = MyCmd(dist)
23 cmd = self.cmd
24 cmd.not_string_list = ['one', 2, 'three']
25 cmd.yes_string_list = ['one', 'two', 'three']
26 cmd.not_string_list2 = object()
27 cmd.yes_string_list2 = 'ok'
28 cmd.ensure_string_list('yes_string_list')
29 cmd.ensure_string_list('yes_string_list2')
[all …]
Dtest_build_ext.py60 cmd = support.missing_compiler_executable()
61 if cmd is not None:
62 self.skipTest('The %r command is not found' % cmd)
69 cmd = self.build_ext(dist)
70 fixup_build_ext(cmd)
71 cmd.build_lib = self.tmp_dir
72 cmd.build_temp = self.tmp_dir
79 cmd.ensure_finalized()
80 cmd.run()
120 cmd = self.build_ext(dist)
[all …]
Dtest_install.py56 cmd = install(dist)
57 cmd.home = destination
58 cmd.ensure_finalized()
60 self.assertEqual(cmd.install_base, destination)
61 self.assertEqual(cmd.install_platbase, destination)
69 check_path(cmd.install_lib, libdir)
71 check_path(cmd.install_platlib, platlibdir)
72 check_path(cmd.install_purelib, libdir)
73 check_path(cmd.install_headers,
75 check_path(cmd.install_scripts, os.path.join(destination, "bin"))
[all …]
/external/python/setuptools/setuptools/_distutils/tests/
Dtest_cmd.py1 """Tests for distutils.cmd."""
6 from distutils.cmd import Command
19 self.cmd = MyCmd(dist)
23 cmd = self.cmd
24 cmd.not_string_list = ['one', 2, 'three']
25 cmd.yes_string_list = ['one', 'two', 'three']
26 cmd.not_string_list2 = object()
27 cmd.yes_string_list2 = 'ok'
28 cmd.ensure_string_list('yes_string_list')
29 cmd.ensure_string_list('yes_string_list2')
[all …]
Dtest_build_ext.py57 cmd = support.missing_compiler_executable()
58 if cmd is not None:
59 self.skipTest('The %r command is not found' % cmd)
66 cmd = self.build_ext(dist)
67 fixup_build_ext(cmd)
68 cmd.build_lib = self.tmp_dir
69 cmd.build_temp = self.tmp_dir
76 cmd.ensure_finalized()
77 cmd.run()
117 cmd = self.build_ext(dist)
[all …]
Dtest_install.py47 cmd = install(dist)
48 cmd.home = destination
49 cmd.ensure_finalized()
51 self.assertEqual(cmd.install_base, destination)
52 self.assertEqual(cmd.install_platbase, destination)
60 check_path(cmd.install_lib, libdir)
63 check_path(cmd.install_platlib, platlibdir)
64 check_path(cmd.install_purelib, libdir)
65 check_path(cmd.install_headers,
67 check_path(cmd.install_scripts, os.path.join(destination, "bin"))
[all …]
/external/python/cpython2/Lib/distutils/tests/
Dtest_cmd.py1 """Tests for distutils.cmd."""
6 from distutils.cmd import Command
19 self.cmd = MyCmd(dist)
23 cmd = self.cmd
24 cmd.not_string_list = ['one', 2, 'three']
25 cmd.yes_string_list = ['one', 'two', 'three']
26 cmd.not_string_list2 = object()
27 cmd.yes_string_list2 = 'ok'
28 cmd.ensure_string_list('yes_string_list')
29 cmd.ensure_string_list('yes_string_list2')
[all …]
Dtest_build_ext.py53 cmd = build_ext(dist)
54 support.fixup_build_ext(cmd)
55 cmd.build_lib = self.tmp_dir
56 cmd.build_temp = self.tmp_dir
63 cmd.ensure_finalized()
64 cmd.run()
89 cmd = build_ext(dist)
97 cmd.ensure_finalized()
106 self.assertGreater(len(cmd.library_dirs), 0)
113 cmd = build_ext(dist)
[all …]
Dtest_install.py48 cmd = install(dist)
49 cmd.home = destination
50 cmd.ensure_finalized()
52 self.assertEqual(cmd.install_base, destination)
53 self.assertEqual(cmd.install_platbase, destination)
61 check_path(cmd.install_lib, libdir)
62 check_path(cmd.install_platlib, libdir)
63 check_path(cmd.install_purelib, libdir)
64 check_path(cmd.install_headers,
66 check_path(cmd.install_scripts, os.path.join(destination, "bin"))
[all …]
/external/libxml2/os400/
Dmake-src.sh87 CMD="CRTBNDDIR BNDDIR(${TARGETLIB}/${STATBNDDIR})"
88 CMD="${CMD} TEXT('libxml2 static binding directory')"
89 system "${CMD}"
92 do CMD="ADDBNDDIRE BNDDIR(${TARGETLIB}/${STATBNDDIR})"
93 CMD="${CMD} OBJ((${TARGETLIB}/${MODULE} *MODULE))"
94 system "${CMD}"
103 then CMD="CRTSRCPF FILE(${TARGETLIB}/TOOLS) RCDLEN(112)"
104 CMD="${CMD} CCSID(${TGTCCSID}) TEXT('libxml2: build tools')"
105 system "${CMD}"
211 then CMD="CRTSRVPGM SRVPGM(${TARGETLIB}/${SRVPGM})"
[all …]
/external/mesa3d/src/gallium/drivers/svga/svgadump/
Dsvga_dump.c58 dump_SVGA3dVertexDecl(const SVGA3dVertexDecl *cmd) in dump_SVGA3dVertexDecl() argument
60 switch((*cmd).identity.type) { in dump_SVGA3dVertexDecl()
116 _debug_printf("\t\t.identity.type = %i\n", (*cmd).identity.type); in dump_SVGA3dVertexDecl()
119 switch((*cmd).identity.method) { in dump_SVGA3dVertexDecl()
142 _debug_printf("\t\t.identity.method = %i\n", (*cmd).identity.method); in dump_SVGA3dVertexDecl()
145 switch((*cmd).identity.usage) { in dump_SVGA3dVertexDecl()
192 _debug_printf("\t\t.identity.usage = %i\n", (*cmd).identity.usage); in dump_SVGA3dVertexDecl()
195 _debug_printf("\t\t.identity.usageIndex = %u\n", (*cmd).identity.usageIndex); in dump_SVGA3dVertexDecl()
196 _debug_printf("\t\t.array.surfaceId = %u\n", (*cmd).array.surfaceId); in dump_SVGA3dVertexDecl()
197 _debug_printf("\t\t.array.offset = %u\n", (*cmd).array.offset); in dump_SVGA3dVertexDecl()
[all …]
/external/mesa3d/src/gallium/drivers/svga/
Dsvga_cmd_vgpu10.c82 SVGA3dCmdDX##CommandName *cmd; \
84 cmd = SVGA3D_FIFOReserve(swc, SVGA_3D_CMD_DX_##CommandCode, \
86 if (!cmd) \
91 SVGA3dCmdDX##CommandName *cmd; \
94 cmd = SVGA3D_FIFOReserve(swc, SVGA_3D_CMD_DX_##CommandCode, \
97 if (!cmd) \
103 cmd->VariableName = VariableName; \
177 SVGA3dCmdDXPredCopyRegion *cmd = in SVGA3D_vgpu10_PredCopyRegion() local
182 if (!cmd) in SVGA3D_vgpu10_PredCopyRegion()
185 swc->surface_relocation(swc, &cmd->dstSid, NULL, dstSurf, SVGA_RELOC_WRITE); in SVGA3D_vgpu10_PredCopyRegion()
[all …]
Dsvga_cmd.c109 uint32 cmd, // IN in SVGA3D_FIFOReserve() argument
119 header->id = cmd; in SVGA3D_FIFOReserve()
122 swc->last_command = cmd; in SVGA3D_FIFOReserve()
168 SVGA3dCmdDefineContext *cmd; in SVGA3D_DefineContext() local
170 cmd = SVGA3D_FIFOReserve(swc, in SVGA3D_DefineContext()
171 SVGA_3D_CMD_CONTEXT_DEFINE, sizeof *cmd, 0); in SVGA3D_DefineContext()
172 if (!cmd) in SVGA3D_DefineContext()
175 cmd->cid = swc->cid; in SVGA3D_DefineContext()
202 SVGA3dCmdDestroyContext *cmd; in SVGA3D_DestroyContext() local
204 cmd = SVGA3D_FIFOReserve(swc, in SVGA3D_DestroyContext()
[all …]
/external/mesa3d/src/freedreno/vulkan/
Dtu_lrz.cc77 tu6_write_lrz_reg(struct tu_cmd_buffer *cmd, struct tu_cs *cs, in tu6_write_lrz_reg() argument
80 if (cmd->device->physical_device->info->a6xx.lrz_track_quirk) { in tu6_write_lrz_reg()
92 tu6_disable_lrz_via_depth_view(struct tu_cmd_buffer *cmd, struct tu_cs *cs) in tu6_disable_lrz_via_depth_view() argument
95 tu6_write_lrz_reg(cmd, cs, A6XX_GRAS_LRZ_DEPTH_VIEW( in tu6_disable_lrz_via_depth_view()
101 tu6_write_lrz_reg(cmd, cs, A6XX_GRAS_LRZ_CNTL( in tu6_disable_lrz_via_depth_view()
106 tu_emit_event_write<A6XX>(cmd, cs, FD_LRZ_CLEAR); in tu6_disable_lrz_via_depth_view()
107 tu_emit_event_write<A6XX>(cmd, cs, FD_LRZ_FLUSH); in tu6_disable_lrz_via_depth_view()
111 tu_lrz_init_state(struct tu_cmd_buffer *cmd, in tu_lrz_init_state() argument
116 assert(!cmd->device->use_lrz || !vk_format_has_depth(att->format)); in tu_lrz_init_state()
123 cmd->device->physical_device->info->a6xx.has_lrz_dir_tracking; in tu_lrz_init_state()
[all …]
Dtu_cmd_buffer.cc24 tu_clone_trace_range(struct tu_cmd_buffer *cmd, struct tu_cs *cs, in tu_clone_trace_range() argument
32 u_trace_clone_append(begin, end, &cmd->trace, cs, in tu_clone_trace_range()
37 tu_clone_trace(struct tu_cmd_buffer *cmd, struct tu_cs *cs, in tu_clone_trace() argument
40 tu_clone_trace_range(cmd, cs, u_trace_begin_iterator(trace), in tu_clone_trace()
46 tu_emit_raw_event_write(struct tu_cmd_buffer *cmd, in tu_emit_raw_event_write() argument
64 tu_cs_emit_qw(cs, global_iova(cmd, seqno_dummy)); in tu_emit_raw_event_write()
71 tu_emit_event_write(struct tu_cmd_buffer *cmd, in tu_emit_event_write() argument
76 tu_emit_raw_event_write<CHIP>(cmd, cs, event_info.raw_event, in tu_emit_event_write()
88 tu6_lazy_emit_tessfactor_addr(struct tu_cmd_buffer *cmd) in tu6_lazy_emit_tessfactor_addr() argument
90 if (cmd->state.tessfactor_addr_set) in tu6_lazy_emit_tessfactor_addr()
[all …]
Dtu_cmd_buffer.c39 tu6_emit_event_write(struct tu_cmd_buffer *cmd, in tu6_emit_event_write() argument
60 tu_cs_emit_qw(cs, global_iova(cmd, seqno_dummy)); in tu6_emit_event_write()
171 tu6_emit_zs(struct tu_cmd_buffer *cmd, in tu6_emit_zs() argument
175 const struct tu_framebuffer *fb = cmd->state.framebuffer; in tu6_emit_zs()
201 &cmd->state.pass->attachments[a]; in tu6_emit_zs()
240 tu6_emit_mrt(struct tu_cmd_buffer *cmd, in tu6_emit_mrt() argument
244 const struct tu_framebuffer *fb = cmd->state.framebuffer; in tu6_emit_mrt()
256 tu_cs_emit(cs, cmd->state.pass->attachments[a].gmem_offset); in tu6_emit_mrt()
320 tu6_emit_render_cntl(struct tu_cmd_buffer *cmd, in tu6_emit_render_cntl() argument
325 const struct tu_framebuffer *fb = cmd->state.framebuffer; in tu6_emit_render_cntl()
[all …]
/external/toolchain-utils/go/patch/go-1.11.2/
Dgo2.patch24 - cmd := []string{goTool(), "tool", "compile", "-e"}
25 + cmd := []string{findGoCmd, "tool", "compile", "-e"}
26 cmd = append(cmd, flags...)
28 - cmd = append(cmd, "-dynlink", "-installsuffix=dynlink")
30 cmd = append(cmd, longname)
31 return runcmd(cmd...)
35 - cmd := []string{goTool(), "tool", "compile", "-e"}
36 + cmd := []string{findGoCmd(), "tool", "compile", "-e"}
39 cmd = append(cmd, "-D", ".", "-I", ".")
41 cmd = append(cmd, flags...)
[all …]
/external/toolchain-utils/go/patch/go-1.10.3/
Dgo2.patch20 - cmd := []string{"go", "tool", "compile", "-e"}
21 + cmd := []string{findGoCmd(), "tool", "compile", "-e"}
22 cmd = append(cmd, flags...)
24 - cmd = append(cmd, "-dynlink", "-installsuffix=dynlink")
26 cmd = append(cmd, longname)
27 return runcmd(cmd...)
31 - cmd := []string{"go", "tool", "compile", "-e", "-D", ".", "-I", "."}
32 + cmd := []string{findGoCmd(), "tool", "compile", "-e", "-D", ".", "-I", "."}
33 cmd = append(cmd, flags...)
35 - cmd = append(cmd, "-dynlink", "-installsuffix=dynlink")
[all …]
/external/toolchain-utils/go/patch/go-1.10.2/
Dgo2.patch35 - cmd := []string{"go", "tool", "compile", "-e"}
36 + cmd := []string{findGoCmd(), "tool", "compile", "-e"}
37 cmd = append(cmd, flags...)
39 - cmd = append(cmd, "-dynlink", "-installsuffix=dynlink")
41 cmd = append(cmd, longname)
42 return runcmd(cmd...)
46 - cmd := []string{"go", "tool", "compile", "-e", "-D", ".", "-I", "."}
47 + cmd := []string{findGoCmd(), "tool", "compile", "-e", "-D", ".", "-I", "."}
48 cmd = append(cmd, flags...)
50 - cmd = append(cmd, "-dynlink", "-installsuffix=dynlink")
[all …]
/external/mesa3d/src/nouveau/vulkan/
Dnvk_cmd_buffer.c34 struct nvk_cmd_buffer *cmd = in nvk_destroy_cmd_buffer() local
36 struct nvk_cmd_pool *pool = nvk_cmd_buffer_pool(cmd); in nvk_destroy_cmd_buffer()
38 nvk_cmd_pool_free_bo_list(pool, &cmd->bos); in nvk_destroy_cmd_buffer()
39 nvk_cmd_pool_free_bo_list(pool, &cmd->gart_bos); in nvk_destroy_cmd_buffer()
40 util_dynarray_fini(&cmd->pushes); in nvk_destroy_cmd_buffer()
41 vk_command_buffer_finish(&cmd->vk); in nvk_destroy_cmd_buffer()
42 vk_free(&pool->vk.alloc, cmd); in nvk_destroy_cmd_buffer()
51 struct nvk_cmd_buffer *cmd; in nvk_create_cmd_buffer() local
54 cmd = vk_zalloc(&pool->vk.alloc, sizeof(*cmd), 8, in nvk_create_cmd_buffer()
56 if (cmd == NULL) in nvk_create_cmd_buffer()
[all …]
/external/mesa3d/src/vulkan/runtime/
Dvk_cmd_enqueue.c42 struct vk_cmd_queue_entry *cmd = in vk_cmd_enqueue_CmdDrawMultiEXT() local
43 vk_zalloc(cmd_buffer->cmd_queue.alloc, sizeof(*cmd), 8, in vk_cmd_enqueue_CmdDrawMultiEXT()
45 if (!cmd) in vk_cmd_enqueue_CmdDrawMultiEXT()
48 cmd->type = VK_CMD_DRAW_MULTI_EXT; in vk_cmd_enqueue_CmdDrawMultiEXT()
49 list_addtail(&cmd->cmd_link, &cmd_buffer->cmd_queue.cmds); in vk_cmd_enqueue_CmdDrawMultiEXT()
51 cmd->u.draw_multi_ext.draw_count = drawCount; in vk_cmd_enqueue_CmdDrawMultiEXT()
54 cmd->u.draw_multi_ext.vertex_info = in vk_cmd_enqueue_CmdDrawMultiEXT()
56 sizeof(*cmd->u.draw_multi_ext.vertex_info) * drawCount, 8, in vk_cmd_enqueue_CmdDrawMultiEXT()
60 memcpy(&cmd->u.draw_multi_ext.vertex_info[i], draw, in vk_cmd_enqueue_CmdDrawMultiEXT()
61 sizeof(*cmd->u.draw_multi_ext.vertex_info)); in vk_cmd_enqueue_CmdDrawMultiEXT()
[all …]

12345678910>>...239