/third_party/mesa3d/src/gallium/drivers/svga/svgadump/ |
D | svga_dump.c | 58 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 …]
|
/third_party/mesa3d/src/gallium/drivers/svga/ |
D | svga_cmd.c | 109 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 …]
|
D | svga_cmd_vgpu10.c | 82 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 …]
|
/third_party/mesa3d/src/freedreno/vulkan/ |
D | tu_lrz.c | 152 tu6_write_lrz_reg(struct tu_cmd_buffer *cmd, struct tu_cs *cs, in tu6_write_lrz_reg() argument 155 if (cmd->device->physical_device->info->a6xx.lrz_track_quirk) { in tu6_write_lrz_reg() 167 tu6_disable_lrz_via_depth_view(struct tu_cmd_buffer *cmd, struct tu_cs *cs) in tu6_disable_lrz_via_depth_view() argument 170 tu6_write_lrz_reg(cmd, cs, A6XX_GRAS_LRZ_DEPTH_VIEW( in tu6_disable_lrz_via_depth_view() 176 tu6_write_lrz_reg(cmd, cs, A6XX_GRAS_LRZ_CNTL( in tu6_disable_lrz_via_depth_view() 181 tu6_emit_event_write(cmd, cs, LRZ_CLEAR); in tu6_disable_lrz_via_depth_view() 182 tu6_emit_event_write(cmd, cs, LRZ_FLUSH); in tu6_disable_lrz_via_depth_view() 186 tu_lrz_init_state(struct tu_cmd_buffer *cmd, in tu_lrz_init_state() argument 191 assert((cmd->device->instance->debug_flags & TU_DEBUG_NOLRZ) || in tu_lrz_init_state() 199 cmd->device->physical_device->info->a6xx.has_lrz_dir_tracking; in tu_lrz_init_state() [all …]
|
D | tu_cmd_buffer.c | 21 tu6_emit_event_write(struct tu_cmd_buffer *cmd, in tu6_emit_event_write() argument 42 tu_cs_emit_qw(cs, global_iova(cmd, seqno_dummy)); in tu6_emit_event_write() 53 tu6_lazy_emit_tessfactor_addr(struct tu_cmd_buffer *cmd) in tu6_lazy_emit_tessfactor_addr() argument 55 if (cmd->state.tessfactor_addr_set) in tu6_lazy_emit_tessfactor_addr() 58 tu_cs_emit_regs(&cmd->cs, A6XX_PC_TESSFACTOR_ADDR(.qword = cmd->device->tess_bo->iova)); in tu6_lazy_emit_tessfactor_addr() 60 cmd->state.cache.flush_bits |= TU_CMD_FLAG_WAIT_FOR_IDLE; in tu6_lazy_emit_tessfactor_addr() 61 cmd->state.tessfactor_addr_set = true; in tu6_lazy_emit_tessfactor_addr() 185 tu6_emit_zs(struct tu_cmd_buffer *cmd, in tu6_emit_zs() argument 206 const struct tu_image_view *iview = cmd->state.attachments[a]; in tu6_emit_zs() 208 &cmd->state.pass->attachments[a]; in tu6_emit_zs() [all …]
|
/third_party/python/Lib/distutils/tests/ |
D | test_cmd.py | 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') 32 cmd.ensure_string_list, 'not_string_list') [all …]
|
D | test_build_ext.py | 60 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 …]
|
D | test_install.py | 56 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 …]
|
D | test_build_clib.py | 28 cmd = build_clib(dist) 31 self.assertRaises(DistutilsSetupError, cmd.check_library_list, 'foo') 34 self.assertRaises(DistutilsSetupError, cmd.check_library_list, 39 self.assertRaises(DistutilsSetupError, cmd.check_library_list, 43 self.assertRaises(DistutilsSetupError, cmd.check_library_list, 48 self.assertRaises(DistutilsSetupError, cmd.check_library_list, 54 cmd.check_library_list(libs) 58 cmd = build_clib(dist) 62 cmd.libraries = [('name', {})] 63 self.assertRaises(DistutilsSetupError, cmd.get_source_files) [all …]
|
D | test_install_lib.py | 21 cmd = install_lib(dist) 23 cmd.finalize_options() 24 self.assertEqual(cmd.compile, 1) 25 self.assertEqual(cmd.optimize, 0) 28 cmd.optimize = 'foo' 29 self.assertRaises(DistutilsOptionError, cmd.finalize_options) 30 cmd.optimize = '4' 31 self.assertRaises(DistutilsOptionError, cmd.finalize_options) 33 cmd.optimize = '2' 34 cmd.finalize_options() [all …]
|
D | test_sdist.py | 87 cmd = sdist(dist) 88 cmd.dist_dir = 'dist' 89 return dist, cmd 111 dist, cmd = self.get_cmd() 115 cmd.formats = ['zip'] 117 cmd.ensure_finalized() 118 cmd.run() 143 dist, cmd = self.get_cmd() 146 cmd.formats = ['gztar', 'tar'] 147 cmd.ensure_finalized() [all …]
|
D | test_register.py | 108 cmd = self._get_cmd() 125 cmd.run() 147 cmd.show_response = 1 148 cmd.run() 163 cmd = self._get_cmd() 164 cmd._set_config() 165 cmd.finalize_options() 166 cmd.send_metadata() 170 self.assertEqual(cmd.distribution.password, 'password') 174 cmd = self._get_cmd() [all …]
|
/third_party/icu/icu4j/perf-tests/ |
D | resourcebundleperf.pl | 36 my $cmd = 'java -classpath "classes" '.$TESTCLASS; 41 … "Empty array", ["$cmd TestEmptyArrayJava", "$cmd TestEmptyArrayICU"], 42 …"Empty Explicit String", ["$cmd TestEmptyExplicitStringJava", "$cmd TestEmptyExplicitString… 43 … "Empty String", ["$cmd TestEmptyStringJava", "$cmd TestEmptyStringICU"], 44 … "Get 123", ["$cmd TestGet123Java", "$cmd TestGet123ICU"], 45 … "Get Binary Test", ["$cmd TestGetBinaryTestJava", "$cmd TestGetBinaryTestICU"], 46 … "Get Empty Binary", ["$cmd TestGetEmptyBinaryJava", "$cmd TestGetBinaryTestICU"], 47 … "Get Empty Menu", ["$cmd TestGetEmptyMenuJava", "$cmd TestGetEmptyMenuICU"], 48 … "Get Empty Int", ["$cmd TestGetEmptyIntJava", "$cmd TestGetEmptyIntICU"], 49 …"Get Empty Int Array", ["$cmd TestGetEmptyIntegerArrayJava", "$cmd TestGetEmptyIntegerArra… [all …]
|
/third_party/node/test/parallel/ |
D | test-child-process-spawn-typeerror.js | 27 const cmd = common.isWindows ? 'rundll32' : 'ls'; constant 47 spawn(cmd); 48 spawn(cmd, []); 49 spawn(cmd, {}); 50 spawn(cmd, [], {}); 67 spawn(cmd, true); 71 spawn(cmd, [], null); 75 spawn(cmd, [], 1); 79 spawn(cmd, [], { uid: 2 ** 63 }); 83 spawn(cmd, [], { gid: 2 ** 63 }); [all …]
|
/third_party/node/test/fixtures/postject-copy/node_modules/commander/lib/ |
D | help.js | 29 visibleCommands(cmd) { argument 30 const visibleCommands = cmd.commands.filter(cmd => !cmd._hidden); 31 if (cmd._hasImplicitHelpCommand()) { 33 const [, helpName, helpArgs] = cmd._helpCommandnameAndArgs.match(/([^ ]+) *(.*)/); 34 const helpCommand = cmd.createCommand(helpName) 36 helpCommand.description(cmd._helpCommandDescription); 71 visibleOptions(cmd) { argument 72 const visibleOptions = cmd.options.filter((option) => !option.hidden); 74 …const showShortHelpFlag = cmd._hasHelpOption && cmd._helpShortFlag && !cmd._findOption(cmd._helpSh… 75 const showLongHelpFlag = cmd._hasHelpOption && !cmd._findOption(cmd._helpLongFlag); [all …]
|
/third_party/rust/crates/clap/clap_mangen/tests/ |
D | roff.rs | 6 let cmd = common::basic_command(name); in basic() localVariable 7 common::assert_matches_path("tests/snapshots/basic.bash.roff", cmd); in basic() 13 let cmd = common::feature_sample_command(name); in feature_sample() localVariable 14 common::assert_matches_path("tests/snapshots/feature_sample.bash.roff", cmd); in feature_sample() 20 let cmd = common::special_commands_command(name); in special_commands() localVariable 21 common::assert_matches_path("tests/snapshots/special_commands.bash.roff", cmd); in special_commands() 27 let cmd = common::quoting_command(name); in quoting() localVariable 28 common::assert_matches_path("tests/snapshots/quoting.bash.roff", cmd); in quoting() 34 let cmd = common::aliases_command(name); in aliases() localVariable 35 common::assert_matches_path("tests/snapshots/aliases.bash.roff", cmd); in aliases() [all …]
|
/third_party/mesa3d/src/vulkan/runtime/ |
D | vk_cmd_enqueue.c | 42 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 …]
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/ |
D | Commands.cpp | 101 EndComputePassCmd* cmd = commands->NextCommand<EndComputePassCmd>(); in FreeCommands() local 102 cmd->~EndComputePassCmd(); in FreeCommands() 106 EndOcclusionQueryCmd* cmd = commands->NextCommand<EndOcclusionQueryCmd>(); in FreeCommands() local 107 cmd->~EndOcclusionQueryCmd(); in FreeCommands() 111 EndRenderPassCmd* cmd = commands->NextCommand<EndRenderPassCmd>(); in FreeCommands() local 112 cmd->~EndRenderPassCmd(); in FreeCommands() 116 ExecuteBundlesCmd* cmd = commands->NextCommand<ExecuteBundlesCmd>(); in FreeCommands() local 117 auto bundles = commands->NextData<Ref<RenderBundleBase>>(cmd->count); in FreeCommands() 118 for (size_t i = 0; i < cmd->count; ++i) { in FreeCommands() 121 cmd->~ExecuteBundlesCmd(); in FreeCommands() [all …]
|
/third_party/python/Lib/ |
D | pipes.py | 110 def append(self, cmd, kind): argument 112 if not isinstance(cmd, str): 120 if kind[0] == 'f' and not re.search(r'\$IN\b', cmd): 122 if kind[1] == 'f' and not re.search(r'\$OUT\b', cmd): 124 self.steps.append((cmd, kind)) 126 def prepend(self, cmd, kind): argument 128 if not isinstance(cmd, str): 136 if kind[0] == 'f' and not re.search(r'\$IN\b', cmd): 138 if kind[1] == 'f' and not re.search(r'\$OUT\b', cmd): 140 self.steps.insert(0, (cmd, kind)) [all …]
|
/third_party/vk-gl-cts/external/amber/src/src/ |
D | executor.cc | 98 for (const auto& cmd : script->GetCommands()) { in Execute() local 100 delegate->Log(std::to_string(cmd->GetLine()) + ": " + cmd->ToString()); in Execute() 103 auto dbg_script = cmd->GetDebugScript(); in Execute() 119 Result r = ExecuteCommand(engine, cmd.get()); in Execute() 133 Result Executor::ExecuteCommand(Engine* engine, Command* cmd) { in ExecuteCommand() argument 134 if (cmd->IsProbe()) { in ExecuteCommand() 135 auto* buffer = cmd->AsProbe()->GetBuffer(); in ExecuteCommand() 139 return verifier_.Probe(cmd->AsProbe(), fmt, buffer->GetElementStride(), in ExecuteCommand() 143 if (cmd->IsProbeSSBO()) { in ExecuteCommand() 144 auto probe_ssbo = cmd->AsProbeSSBO(); in ExecuteCommand() [all …]
|
/third_party/rust/crates/clap/clap_complete/tests/snapshots/ |
D | quoting.fish | 9 complete -c my-app -n "__fish_use_subcommand" -f -a "cmd-single-quotes" -d 'Can be \'always\', \'au… 10 complete -c my-app -n "__fish_use_subcommand" -f -a "cmd-double-quotes" -d 'Can be "always", "auto"… 11 complete -c my-app -n "__fish_use_subcommand" -f -a "cmd-backticks" -d 'For more information see `e… 12 complete -c my-app -n "__fish_use_subcommand" -f -a "cmd-backslash" -d 'Avoid \'\\n\'' 13 complete -c my-app -n "__fish_use_subcommand" -f -a "cmd-brackets" -d 'List packages [filter]' 14 complete -c my-app -n "__fish_use_subcommand" -f -a "cmd-expansions" -d 'Execute the shell command … 16 complete -c my-app -n "__fish_seen_subcommand_from cmd-single-quotes" -s h -l help -d 'Print help' 17 complete -c my-app -n "__fish_seen_subcommand_from cmd-double-quotes" -s h -l help -d 'Print help' 18 complete -c my-app -n "__fish_seen_subcommand_from cmd-backticks" -s h -l help -d 'Print help' 19 complete -c my-app -n "__fish_seen_subcommand_from cmd-backslash" -s h -l help -d 'Print help' [all …]
|
/third_party/rust/crates/clap/src/builder/ |
D | debug_asserts.rs | 14 pub(crate) fn assert_app(cmd: &Command) { in assert_app() 21 if cmd.get_version().is_none() && cmd.get_long_version().is_none() { in assert_app() 24 !cmd.is_propagate_version_set(), in assert_app() 26 cmd.get_name(), in assert_app() 30 let version_needed = cmd in assert_app() 37 ,cmd.get_name() in assert_app() 41 for sc in cmd.get_subcommands() { in assert_app() 60 for arg in cmd.get_arguments() { in assert_app() 64 !cmd.is_multicall_set(), in assert_app() 66 cmd.get_name(), in assert_app() [all …]
|
/third_party/openssl/test/recipes/80-test_cmp_http_data/ |
D | test_commands.csv | 1 expected,description, -section,val, -cmd,val,val2, -cacertsout,val,val2, -infotype,val,, -oldcert,v… 4 1,minimum options, -section,, -cmd,ir,,BLANK,,,BLANK,,,BLANK,,BLANK, 6 0,no cmd, -section,,BLANK,,,BLANK,,,BLANK,,,BLANK,,BLANK, 7 0,cmd missing arg, -section,, -cmd,,,BLANK,,,BLANK,,,BLANK,,BLANK, 8 0,cmd undefined , -section,, -cmd,abc,,BLANK,,,BLANK,,,BLANK,,BLANK, 9 0,cmd incomplete, -section,, -cmd,i,,BLANK,,,BLANK,,,BLANK,,BLANK, 11 1,no cacertsout, -section,, -cmd,ir,,BLANK,,,BLANK,,,BLANK,,BLANK, 12 1,cacertsout given, -section,, -cmd,ir,, -cacertsout,_RESULT_DIR/test.cacerts.pem,,BLANK,,,BLANK,,B… 13 0,cacertsout missing arg, -section,, -cmd,ir,, -cacertsout,,,BLANK,,,BLANK,,BLANK, 15 1, --- get certificate for revocation ----, -section,, -cmd,cr,,BLANK,,,BLANK,,,BLANK,,BLANK, [all …]
|
/third_party/rust/crates/clap/tests/builder/ |
D | help.rs | 59 let cmd = Command::new("ctest").subcommand( in help_multi_subcommand_error() localVariable 78 let err = cmd in help_multi_subcommand_error() 105 let cmd = Command::new("example") in req_last_arg_usage() localVariable 115 utils::assert_output(cmd, "example --help", LAST_ARG_REQ_MULT, false); in req_last_arg_usage() 135 let cmd = Command::new("flamegraph") in args_with_last_usage() localVariable 171 utils::assert_output(cmd, "flamegraph --help", LAST_ARG_USAGE, false); in args_with_last_usage() 250 let cmd = Command::new("clap-test") in after_and_before_help_output() localVariable 255 utils::assert_output(cmd.clone(), "clap-test -h", AFTER_HELP, false); in after_and_before_help_output() 256 utils::assert_output(cmd, "clap-test --help", AFTER_HELP, false); in after_and_before_help_output() 290 let cmd = Command::new("clap-test") in after_and_before_long_help_output() localVariable [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/ |
D | ctrl_iface.h | 126 int wpa_supplicant_ctrl_iface_remove_network(struct wpa_supplicant *wpa_s, char *cmd); 128 int wpa_supplicant_ctrl_iface_disable_network(struct wpa_supplicant *wpa_s, char *cmd); 130 int wpa_supplicant_ctrl_iface_set_network(struct wpa_supplicant *wpa_s, char *cmd); 132 int wpa_supplicant_ctrl_iface_list_networks(struct wpa_supplicant *wpa_s, char *cmd, char *buf, siz… 134 int wpa_supplicant_ctrl_iface_select_network(struct wpa_supplicant *wpa_s, char *cmd); 136 int wpa_supplicant_ctrl_iface_enable_network(struct wpa_supplicant *wpa_s, char *cmd); 138 int wpa_supplicant_ctrl_iface_get_network(struct wpa_supplicant *wpa_s, char *cmd, char *buf, size_… 142 int wpa_supplicant_global_iface_add(struct wpa_global *global, char *cmd); 144 int wpa_supplicant_global_iface_remove(struct wpa_global *global, char *cmd); 150 int p2p_ctrl_set(struct wpa_supplicant *wpa_s, char *cmd); [all …]
|