Home
last modified time | relevance | path

Searched full:cmds (Results 1 – 25 of 548) sorted by relevance

12345678910>>...22

/external/toolchain-utils/compiler_wrapper/
Dcros_hardened_config_test.go121 Cmds: okResults,
125 Cmds: okResults,
129 Cmds: okResults,
133 Cmds: okResults,
137 Cmds: okResults,
141 Cmds: okResults,
145 Cmds: okResults,
149 Cmds: okResults,
153 Cmds: okResults,
169 Cmds: okResults,
[all …]
Dandroid_config_test.go65 Cmds: okResults,
69 Cmds: errorResults,
74 Cmds: okResults,
78 Cmds: okResults,
82 Cmds: okResults,
87 Cmds: okResults,
91 Cmds: okResults,
95 Cmds: okResults,
100 Cmds: okResults,
104 Cmds: okResults,
[all …]
/external/clang/bindings/python/tests/cindex/
Dtest_cdb.py32 cmds = cdb.getCompileCommands('/home/john.doe/MyProject/project.cpp')
33 assert len(cmds) != 0
38 cmds = cdb.getAllCompileCommands()
39 assert len(cmds) == 3
55 for i in range(len(cmds)):
56 assert cmds[i].directory == expected[i]['wd']
57 assert cmds[i].filename == expected[i]['file']
58 for arg, exp in zip(cmds[i].arguments, expected[i]['line']):
65 cmds = cdb.getCompileCommands(file)
66 assert len(cmds) == 1
[all …]
/external/rust/android-crates-io/crates/textdistance/
DTaskfile.yaml11 cmds:
17 cmds:
23 cmds:
27 cmds:
31 cmds:
35 cmds:
44 cmds:
50 cmds:
58 cmds:
63 cmds:
[all …]
/external/scapy/scapy/
Dautorun.py71 cmds = _cmds.splitlines()
72 cmds.append("") # ensure we finish multi-line commands
73 cmds.reverse()
80 line = cmds.pop()
94 if len(cmds) <= 1:
106 def autorun_commands_timeout(cmds, timeout=None, **kwargs): argument
113 return autorun_commands(cmds, **kwargs)
119 q.put(autorun_commands(cmds, **kwargs))
153 def autorun_get_interactive_session(cmds, **kargs): argument
156 commands passed as "cmds" and return all output
[all …]
/external/bazelbuild-rules_android/src/tools/ak/
Dak.go33 cmds = akcommands.Cmds var
41 cmds["help"] = types.Command{
58 if _, present := cmds[cmd]; present {
67 cmds[cmd].Init()
69 cmds[cmd].Run()
83 for k := range cmds {
88 fmt.Printf(" %-10s %v\n", k, cmds[k].Desc())
93 if _, present := cmds[cmd]; present {
94 cmds[cmd].Init()
96 fmt.Println(cmds[cmd].Desc())
[all …]
/external/mesa3d/src/freedreno/drm/msm/
Dmsm_ringbuffer_sp.c35 /* Determine the number of extra cmds's from deferred submits that in flush_submit_list()
43 struct drm_msm_gem_submit_cmd cmds[nr_cmds]; in flush_submit_list() local
47 /* Build up the table of cmds, and for all but the last submit in the in flush_submit_list()
55 struct fd_bo *ring_bo = deferred_primary->u.cmds[i].ring_bo; in flush_submit_list()
56 cmds[cmd_idx].type = MSM_SUBMIT_CMD_BUF; in flush_submit_list()
57 cmds[cmd_idx].submit_idx = fd_submit_append_bo(fd_submit, ring_bo); in flush_submit_list()
58 cmds[cmd_idx].submit_offset = submit_offset(ring_bo, deferred_primary->offset); in flush_submit_list()
59 cmds[cmd_idx].size = deferred_primary->u.cmds[i].size; in flush_submit_list()
60 cmds[cmd_idx].pad = 0; in flush_submit_list()
61 cmds[cmd_idx].nr_relocs = 0; in flush_submit_list()
[all …]
Dmsm_ringbuffer.c94 DECLARE_ARRAY(struct msm_cmd *, cmds);
280 struct drm_msm_gem_submit_cmd cmds[nr_cmds]; in msm_submit_flush() local
297 cmds[i].type = MSM_SUBMIT_CMD_IB_TARGET_BUF; in msm_submit_flush()
298 cmds[i].submit_idx = append_bo(msm_submit, msm_ring->ring_bo); in msm_submit_flush()
299 cmds[i].submit_offset = submit_offset(msm_ring->ring_bo, msm_ring->offset); in msm_submit_flush()
300 cmds[i].size = offset_bytes(ring->cur, ring->start); in msm_submit_flush()
301 cmds[i].pad = 0; in msm_submit_flush()
302 cmds[i].nr_relocs = msm_ring->cmd->nr_relocs; in msm_submit_flush()
303 cmds[i].relocs = VOID2U64(relocs); in msm_submit_flush()
309 cmds[i].type = MSM_SUBMIT_CMD_BUF; in msm_submit_flush()
[all …]
/external/vboot_reference/cgpt/
Dcgpt.c30 } cmds[] = { variable
50 for (i = 0; i < sizeof(cmds)/sizeof(cmds[0]); ++i) { in Usage()
51 printf(" %-15s %s\n", cmds[i].name, cmds[i].comment); in Usage()
77 for (i = 0; command && i < sizeof(cmds)/sizeof(cmds[0]); ++i) { in main()
79 if (0 == strcmp(cmds[i].name, command)) { in main()
85 else if (0 == strncmp(cmds[i].name, command, strlen(command))) { in main()
92 return cmds[match_index].fp(argc, argv); in main()
/external/mesa3d/src/freedreno/drm/virtio/
Dvirtio_ringbuffer.c45 /* Determine the number of extra cmds's from deferred submits that in flush_submit_list()
58 struct drm_msm_gem_submit_cmd cmds[nr_cmds]; in flush_submit_list() local
62 /* Build up the table of cmds, and for all but the last submit in the in flush_submit_list()
70 struct fd_bo *ring_bo = deferred_primary->u.cmds[i].ring_bo; in flush_submit_list()
71 cmds[cmd_idx].type = MSM_SUBMIT_CMD_BUF; in flush_submit_list()
72 cmds[cmd_idx].submit_idx = fd_submit_append_bo(fd_submit, ring_bo); in flush_submit_list()
73 cmds[cmd_idx].submit_offset = submit_offset(ring_bo, deferred_primary->offset); in flush_submit_list()
74 cmds[cmd_idx].size = deferred_primary->u.cmds[i].size; in flush_submit_list()
75 cmds[cmd_idx].pad = 0; in flush_submit_list()
76 cmds[cmd_idx].nr_relocs = 0; in flush_submit_list()
[all …]
/external/cronet/tot/third_party/brotli/enc/
Dblock_splitter.c41 static size_t CountLiterals(const Command* cmds, const size_t num_commands) { in CountLiterals() argument
46 total_length += cmds[i].insert_len_; in CountLiterals()
51 static void CopyLiteralsToByteArray(const Command* cmds, in CopyLiteralsToByteArray() argument
61 size_t insert_len = cmds[i].insert_len_; in CopyLiteralsToByteArray()
73 from_pos = (from_pos + insert_len + CommandCopyLen(&cmds[i])) & mask; in CopyLiteralsToByteArray()
126 const Command* cmds, in BrotliSplitBlock() argument
136 size_t literals_count = CountLiterals(cmds, num_commands); in BrotliSplitBlock()
140 CopyLiteralsToByteArray(cmds, num_commands, data, pos, mask, literals); in BrotliSplitBlock()
164 insert_and_copy_codes[i] = cmds[i].cmd_prefix_; in BrotliSplitBlock()
184 const Command* cmd = &cmds[i]; in BrotliSplitBlock()
[all …]
/external/cronet/stable/third_party/brotli/enc/
Dblock_splitter.c41 static size_t CountLiterals(const Command* cmds, const size_t num_commands) { in CountLiterals() argument
46 total_length += cmds[i].insert_len_; in CountLiterals()
51 static void CopyLiteralsToByteArray(const Command* cmds, in CopyLiteralsToByteArray() argument
61 size_t insert_len = cmds[i].insert_len_; in CopyLiteralsToByteArray()
73 from_pos = (from_pos + insert_len + CommandCopyLen(&cmds[i])) & mask; in CopyLiteralsToByteArray()
126 const Command* cmds, in BrotliSplitBlock() argument
136 size_t literals_count = CountLiterals(cmds, num_commands); in BrotliSplitBlock()
140 CopyLiteralsToByteArray(cmds, num_commands, data, pos, mask, literals); in BrotliSplitBlock()
164 insert_and_copy_codes[i] = cmds[i].cmd_prefix_; in BrotliSplitBlock()
184 const Command* cmd = &cmds[i]; in BrotliSplitBlock()
[all …]
/external/toolchain-utils/compiler_wrapper/testdata/android_golden/
Dclang_path.json3 "cmds": [ array
24 "cmds": [ array
51 "cmds": [ array
75 "cmds": [ array
96 "cmds": [ array
117 "cmds": [ array
141 "cmds": [ array
162 "cmds": [ array
183 "cmds": [ array
207 "cmds": [ array
/external/libdrm/freedreno/msm/
Dmsm_ringbuffer.c50 /* has cmd already been added to parent rb's submit.cmds table? */
58 * Note that bos and cmds are tracked by the parent ringbuffer, since
67 DECLARE_ARRAY(struct drm_msm_gem_submit_cmd, cmds);
74 /* should have matching entries in submit.cmds: */
75 DECLARE_ARRAY(struct msm_cmd *, cmds);
80 * Note that this is different from msm_ringbuffer::cmds (which
81 * shadows msm_ringbuffer::submit::cmds for tracking submit ioctl
252 /* Ensure that submit has corresponding entry in cmds table for the
256 * the cmds table)
271 * - target cmd has never been added to submit.cmds in get_cmd()
[all …]
/external/icu/icu4c/source/python/icutools/databuilder/renderers/
Dmakefile.py65 if len(rule.cmds) == 0:
71 RULE_LINES = "\n".join("\t%s" % cmd for cmd in rule.cmds)
93 cmds = []
95 cmds.append(
101 cmds.append(
107 cmds.append("echo \"$${VAR_NAME}\" > {MAKEFILENAME}".format(
122 cmds = cmds
134 cmds = ["cp %s %s" % (
179 cmds = [
194 cmds = []
[all …]
/external/igt-gpu-tools/tools/null_state_gen/
Dintel_batchbuffer.c104 batch->cmds = calloc(1, sizeof(struct bb_area)); in intel_batchbuffer_create()
105 if (batch->cmds == NULL) { in intel_batchbuffer_create()
112 free(batch->cmds); in intel_batchbuffer_create()
138 for (i = 0; i < batch->cmds->num_items; i++) in reloc_exists()
139 if ((batch->cmds->item[i].type == RELOC || in reloc_exists()
140 batch->cmds->item[i].type == RELOC_STATE) && in reloc_exists()
154 bb_area_align(batch->cmds, align); in intel_batch_cmd_align()
164 return bb_area_items(batch->cmds); in intel_batch_num_cmds()
174 return bb_area_get(batch->cmds, i); in intel_batch_cmd_get()
236 batch->cmds_end_offset = bb_area_used(batch->cmds) - 4; in intel_batch_relocate_state()
[all …]
/external/iptables/iptables/tests/shell/testcases/iptables/
D0009-unknown-arg_017 cmds="iptables ip6tables"
19 cmds+=" ebtables"
20 cmds+=" iptables-translate"
21 cmds+=" ip6tables-translate"
22 cmds+=" ebtables-translate"
25 for cmd in $cmds; do
/external/deqp-deps/amber/src/vkscript/
Dcommand_parser_test.cc40 auto& cmds = cp.Commands(); in TEST_F() local
41 ASSERT_EQ(3U, cmds.size()); in TEST_F()
42 ASSERT_TRUE(cmds[0]->IsDrawRect()); in TEST_F()
44 auto* draw_cmd = cmds[0]->AsDrawRect(); in TEST_F()
52 ASSERT_TRUE(cmds[1]->IsClearColor()); in TEST_F()
54 auto* clear_cmd = cmds[1]->AsClearColor(); in TEST_F()
60 ASSERT_TRUE(cmds[2]->IsClear()); in TEST_F()
78 auto& cmds = cp.Commands(); in TEST_F() local
79 ASSERT_EQ(1U, cmds.size()); in TEST_F()
80 ASSERT_TRUE(cmds[0]->IsDrawRect()); in TEST_F()
[all …]
/external/pigweed/pw_cli/py/
Dgit_repo_test.py88 def make_fake_git_repo(self, cmds): argument
89 return GitRepo(self.GIT_ROOT, FakeGitToolRunner(cmds))
93 cmds = {}
94 repo = self.make_fake_git_repo(cmds)
99 cmds = {
104 repo = self.make_fake_git_repo(cmds)
109 cmds = {
114 repo = self.make_fake_git_repo(cmds)
119 cmds = {
124 repo = self.make_fake_git_repo(cmds)
[all …]
/external/toolchain-utils/compiler_wrapper/testdata/cros_gcc_host_golden/
Dgcc_maincc_target_specific.json3 "cmds": [ array
28 "cmds": [ array
53 "cmds": [ array
78 "cmds": [ array
103 "cmds": [ array
128 "cmds": [ array
153 "cmds": [ array
178 "cmds": [ array
203 "cmds": [ array
/external/skia/modules/pathkit/tests/
Dsvg.spec.js8 let cmds = path.toCmds();
9 expect(cmds).toBeTruthy();
11 … // each element in cmds is an array, with index 0 being the verb, and the rest being args
12 expect(cmds.length).toBe(6);
13 expect(cmds).toEqual([[PathKit.MOVE_VERB, 205, 5],
26 let cmds = [[PathKit.MOVE_VERB, 205, 5],
32 let path = PathKit.FromCmds(cmds);
44 let cmds = [[PathKit.MOVE_VERB, "0x15e80300", "0x400004dc"], // 9.37088e-26f, 2.0003f
50 let path = PathKit.FromCmds(cmds);
/external/intel-media-driver/media_softlet/agnostic/common/shared/packet/
Dmedia_packet.h201 //! status report type for send cmds
203 //! cmdbuffer to send cmds
214 //! status report type for send cmds
216 //! cmdbuffer to send cmds
231 //! status report type for send cmds
233 //! cmdbuffer to send cmds
244 //! status report type for send cmds
246 //! cmdbuffer to send cmds
257 //! status report type for send cmds
259 //! cmdbuffer to send cmds
[all …]
/external/brotli/c/enc/
Dblock_splitter.c40 static size_t CountLiterals(const Command* cmds, const size_t num_commands) { in CountLiterals() argument
45 total_length += cmds[i].insert_len_; in CountLiterals()
50 static void CopyLiteralsToByteArray(const Command* cmds, in CopyLiteralsToByteArray() argument
60 size_t insert_len = cmds[i].insert_len_; in CopyLiteralsToByteArray()
72 from_pos = (from_pos + insert_len + CommandCopyLen(&cmds[i])) & mask; in CopyLiteralsToByteArray()
123 const Command* cmds, in BrotliSplitBlock() argument
133 size_t literals_count = CountLiterals(cmds, num_commands); in BrotliSplitBlock()
137 CopyLiteralsToByteArray(cmds, num_commands, data, pos, mask, literals); in BrotliSplitBlock()
155 insert_and_copy_codes[i] = cmds[i].cmd_prefix_; in BrotliSplitBlock()
175 const Command* cmd = &cmds[i]; in BrotliSplitBlock()
/external/python/cpython3/Lib/idlelib/
Dundo.py89 # around a sequence of editing cmds to be treated as a unit by
91 # then act like nops. OK too if no editing cmds, or only one
92 # editing cmd, is issued in between: if no cmds, the whole
112 # this blk of cmds, or single cmd, has already
301 # Wrapper for a sequence of undoable cmds to be undone/redone
305 self.cmds = []
311 for cmd in self.cmds:
316 return len(self.cmds)
319 self.cmds.append(cmd)
322 return self.cmds[i]
[all …]
/external/wayland-protocols/
Dwayland_protocol_codegen_test.go99 cmds []string
110 cmds: []string{
125 cmds: []string{
141 cmds: []string{
156 cmds: []string{
172 cmds: []string{
187 cmds: []string{
203 cmds: []string{
218 cmds: []string{
234 cmds: []string{
[all …]

12345678910>>...22