HomeSort by relevance Sort by last modified time
    Searched defs:cmds (Results 1 - 25 of 33) sorted by null

1 2

  /ndk/sources/host-tools/make-3.81/
rule.h 28 struct commands *cmds; /* Commands to execute. */ member in struct:rule
filedef.h 32 struct commands *cmds; /* Commands to execute for this target. */ member in struct:file
33 int command_flags; /* Flags OR'd in for cmds; see commands.h. */
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
vgu.c 42 const VGubyte *cmds,
51 vgAppendPathData(path, num_cmds, cmds, common_data);
58 static const VGubyte cmds[] = {VG_MOVE_TO_ABS, VG_LINE_TO_ABS}; local
75 vgu_append_float_coords(path, cmds, 2, coords, 4);
85 VGubyte *cmds; local
103 cmds = malloc(sizeof(VGubyte) * count + 1);
106 cmds[0] = VG_MOVE_TO_ABS;
110 cmds[i] = VG_LINE_TO_ABS;
116 cmds[i] = VG_CLOSE_PATH;
120 vgu_append_float_coords(path, cmds, i, coords, 2*i)
132 static const VGubyte cmds[] = {VG_MOVE_TO_ABS, local
170 static const VGubyte cmds[] = {VG_MOVE_TO_ABS, local
227 static const VGubyte cmds[] = {VG_MOVE_TO_ABS, local
266 VGubyte cmds[11]; local
    [all...]
stroker.c 76 const VGubyte *cmds; member in struct:stroke_iterator
151 return it->cmds[it->position];
160 prev_cmd = it->cmds[it->position + 1];
197 struct array *cmds,
200 itr->cmds = (VGubyte*)cmds->data;
201 itr->num_commands = cmds->num_elements;
208 struct array *cmds,
211 stroke_itr_common_init(itr, cmds, coords);
222 struct array *cmds,
552 VGubyte cmds = VG_MOVE_TO_ABS; local
569 VGubyte cmds = VG_LINE_TO_ABS; local
587 VGubyte cmds = VG_CUBIC_TO_ABS; local
    [all...]
  /external/iproute2/ip/
ip.c 65 } cmds[] = { variable in typeref:struct:cmd
94 for (c = cmds; c->cmd; ++c) {
  /external/libedit/src/
parse.c 63 } cmds[] = { variable in typeref:struct:__anon27449
125 for (i = 0; cmds[i].name != NULL; i++)
126 if (Strcmp(cmds[i].name, ptr) == 0) {
127 i = (*cmds[i].func) (el, argc, argv);
  /external/mesa3d/src/gallium/state_trackers/vega/
vgu.c 42 const VGubyte *cmds,
51 vgAppendPathData(path, num_cmds, cmds, common_data);
58 static const VGubyte cmds[] = {VG_MOVE_TO_ABS, VG_LINE_TO_ABS}; local
75 vgu_append_float_coords(path, cmds, 2, coords, 4);
85 VGubyte *cmds; local
103 cmds = malloc(sizeof(VGubyte) * count + 1);
106 cmds[0] = VG_MOVE_TO_ABS;
110 cmds[i] = VG_LINE_TO_ABS;
116 cmds[i] = VG_CLOSE_PATH;
120 vgu_append_float_coords(path, cmds, i, coords, 2*i)
132 static const VGubyte cmds[] = {VG_MOVE_TO_ABS, local
170 static const VGubyte cmds[] = {VG_MOVE_TO_ABS, local
227 static const VGubyte cmds[] = {VG_MOVE_TO_ABS, local
266 VGubyte cmds[11]; local
    [all...]
  /external/tcpdump/
print-telnet.c 71 static const char *cmds[] = { variable
197 (void)printf(" %s", STR_OR_ID(c, cmds));
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/svgadump/
svga_dump.py 175 cmds = [ variable
218 for id, header, body, footer in cmds:
326 for id, header, body, footer in cmds:
  /external/mesa3d/src/gallium/drivers/svga/svgadump/
svga_dump.py 175 cmds = [ variable
218 for id, header, body, footer in cmds:
326 for id, header, body, footer in cmds:
  /hardware/qcom/audio/legacy/libalsa-intf/
alsaucm_test.c 70 static struct cmd cmds[] = { variable in typeref:struct:cmd
177 for (cmd = cmds; cmd->cmd_str != NULL; cmd++) {
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/
nouveau_video.h 33 unsigned *cmds; member in struct:nouveau_decoder
50 dec->cmds[dec->ofs++] = data;
  /external/fio/engines/
binject.c 23 struct b_user_cmd *cmds; member in struct:binject_data
98 void *buf = bd->cmds;
383 free(bd->cmds);
397 bd->cmds = malloc(td->o.iodepth * sizeof(struct b_user_cmd));
398 memset(bd->cmds, 0, td->o.iodepth * sizeof(struct b_user_cmd));
sg.c 24 struct sgio_cmd *cmds; member in struct:sgio_data
36 struct sgio_cmd *sc = &sd->cmds[io_u->index];
314 free(sd->cmds);
328 sd->cmds = malloc(td->o.iodepth * sizeof(struct sgio_cmd));
329 memset(sd->cmds, 0, td->o.iodepth * sizeof(struct sgio_cmd));
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_video.h 33 unsigned *cmds; member in struct:nouveau_decoder
50 dec->cmds[dec->ofs++] = data;
  /external/strace/
aio.c 194 } cmds[] = { local
206 if (cmd < ARRAY_SIZE(cmds)) {
207 tprints(cmds[cmd].name);
208 return cmds[cmd].sub;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_telnetlib.py 328 cmds = [tl.AO, tl.AYT, tl.BRK, tl.EC, tl.EL, tl.GA, tl.IP, tl.NOP] variable in class:OptionTests
341 self.assertIn(cmd[0], self.cmds)
354 for cmd in self.cmds:
359 self._test_command([tl.IAC + cmd for (cmd) in self.cmds] + [EOF_sigil])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_telnetlib.py 328 cmds = [tl.AO, tl.AYT, tl.BRK, tl.EC, tl.EL, tl.GA, tl.IP, tl.NOP] variable in class:OptionTests
341 self.assertIn(cmd[0], self.cmds)
354 for cmd in self.cmds:
359 self._test_command([tl.IAC + cmd for (cmd) in self.cmds] + [EOF_sigil])
  /bionic/libc/kernel/uapi/drm/
msm_drm.h 116 uint64_t __user cmds; member in struct:drm_msm_gem_submit
  /external/chromium_org/gpu/command_buffer/client/
cmd_buffer_helper_test.cc 139 CommandBufferEntry* cmds = local
142 cmds[put++].value_header = header;
144 cmds[put++] = args[ii];
  /external/kernel-headers/original/uapi/drm/
msm_drm.h 163 * (context-restore), and IB buffers needed for per tile/bin draw cmds.
171 uint64_t __user cmds; /* in, ptr to array of submit_cmd's */ member in struct:drm_msm_gem_submit
  /frameworks/native/cmds/installd/
installd.c 159 struct cmdinfo cmds[] = { variable in typeref:struct:cmdinfo
255 for (i = 0; i < sizeof(cmds) / sizeof(cmds[0]); i++) {
256 if (!strcmp(cmds[i].name,arg[0])) {
257 if (n != cmds[i].numargs) {
259 cmds[i].name, cmds[i].numargs, n);
261 ret = cmds[i].func(arg + 1, reply);
  /external/chromium_org/gpu/command_buffer/common/
gles2_cmd_format.h 196 namespace cmds { namespace in namespace:gpu::gles2
  /frameworks/native/libs/binder/
IPCThreadState.cpp 832 const void* cmds = (const void*)bwr.write_buffer; local
833 const void* end = ((const uint8_t*)cmds)+bwr.write_size;
834 alog << HexDump(cmds, bwr.write_size) << endl;
835 while (cmds < end) cmds = printCommand(alog, cmds);
889 const void* cmds = mIn.data(); local
891 alog << HexDump(cmds, mIn.dataSize()) << endl;
892 while (cmds < end) cmds = printReturnCommand(alog, cmds)
    [all...]
  /external/chromium_org/third_party/brotli/src/brotli/enc/
encode.cc 394 void ComputeDistanceShortCodes(std::vector<Command>* cmds,
405 for (int i = 0; i < cmds->size(); ++i) {
406 pos += (*cmds)[i].insert_length_;
408 int cur_dist = (*cmds)[i].copy_distance_;
434 pos += (*cmds)[i].copy_length_;
438 GetTransformedDictionaryWord((*cmds)[i].copy_length_code_, word_idx);
441 (*cmds)[i].distance_code_ = dist_code;
445 void ComputeCommandPrefixes(std::vector<Command>* cmds,
448 for (int i = 0; i < cmds->size(); ++i) {
449 Command* cmd = &(*cmds)[i]
706 std::vector<Command> cmds; member in struct:brotli::MetaBlock
    [all...]

Completed in 1122 milliseconds

1 2