HomeSort by: relevance | last modified time | path
    Searched refs:commands (Results 1 - 25 of 279) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/svga/svgadump/
svga_dump.h 35 svga_dump_commands(const void *commands, uint32_t size);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/svga/svgadump/
svga_dump.h 35 svga_dump_commands(const void *commands, uint32_t size);
  /xsrc/external/mit/libdrm/dist/tegra/
job.c 44 struct drm_tegra_submit_cmd *commands, *command; local
47 size = (job->num_commands + 1) * sizeof(*commands);
49 commands = realloc(job->commands, size);
50 if (!commands)
53 command = &commands[job->num_commands];
58 job->commands = commands;
90 if (job->commands)
91 free(job->commands);
    [all...]
private.h 96 struct drm_tegra_submit_cmd *commands; member in struct:drm_tegra_job
  /xsrc/external/mit/brotli/dist/c/enc/
backward_references.h 25 /* "commands" points to the next output command to write to, "*num_commands" is
26 initially the total amount of commands output by previous
33 Command* commands, size_t* num_commands, size_t* num_literals);
compress_fragment_two_pass.c 119 uint32_t insertlen, uint32_t** commands) {
121 **commands = insertlen;
128 **commands = inscode | (extra << 8);
134 **commands = code | (extra << 8);
137 **commands = 21 | (extra << 8);
140 **commands = 22 | (extra << 8);
143 **commands = 23 | (extra << 8);
145 ++(*commands);
148 static BROTLI_INLINE void EmitCopyLen(size_t copylen, uint32_t** commands) {
150 **commands = (uint32_t)(copylen + 38)
570 uint32_t* commands = command_buf; local
    [all...]
backward_references_hq.h 31 Command* commands, size_t* num_commands, size_t* num_literals);
38 Command* commands, size_t* num_commands, size_t* num_literals);
67 /* Computes the shortest path of commands from position to at most
70 On return, path->size() is the number of commands found and path[i] is the
72 Note that the sum of the lengths of all commands can be less than num_bytes.
89 Command* commands, size_t* num_literals);
brotli_bit_stream.h 48 const Command* commands, size_t n_commands, const MetaBlockSplit* mb,
58 const Command* commands, size_t n_commands,
68 const Command* commands, size_t n_commands,
backward_references.c 127 Command* commands, size_t* num_commands, size_t* num_literals) {
134 last_insert_len, commands, num_commands, num_literals); \
backward_references_inc.h 15 Command* commands, size_t* num_commands, size_t* num_literals) {
21 const Command* const orig_commands = commands;
102 InitCommand(commands++, &params->dist, insert_length,
162 *num_commands += (size_t)(commands - orig_commands);
backward_references_hq.c 139 const Command* commands,
156 size_t inslength = commands[i].insert_len_;
157 size_t copylength = CommandCopyLen(&commands[i]);
158 size_t distcode = commands[i].dist_prefix_ & 0x3FF;
159 size_t cmdcode = commands[i].cmd_prefix_;
355 used the shortest path of commands from block_start, computed from
574 Command* commands, size_t* num_literals) {
599 InitCommand(&commands[i], &params->dist, insert_length,
726 Command* commands, size_t* num_commands, size_t* num_literals) {
735 last_insert_len, params, commands, num_literals)
    [all...]
metablock.h 7 /* Algorithms for distributing the literals and commands of a metablock between
71 The distance parameters are dynamically selected based on the commands
93 const Command* commands, size_t n_commands, MetaBlockSplit* mb);
brotli_bit_stream.c 939 const Command* commands, size_t n_commands, const MetaBlockSplit* mb,
1017 const Command cmd = commands[i];
1072 const Command* commands,
1080 const Command cmd = commands[i];
1097 const Command* commands,
1110 const Command cmd = commands[i];
1137 const Command* commands, size_t n_commands,
1157 BuildHistograms(input, start_pos, mask, commands, n_commands,
1177 StoreDataWithHuffmanCodes(input, start_pos, mask, commands,
1190 const Command* commands, size_t n_commands
    [all...]
  /xsrc/external/mit/mesa-demos/dist/src/egl/openvg/trivial/
path3.c 33 VGubyte commands[4] = {VG_MOVE_TO_ABS, VG_LCWARC_TO_ABS, VG_SCWARC_TO_ABS, VG_CLOSE_PATH}; local
35 VGubyte commands[4] = {VG_MOVE_TO_ABS, VG_SCCWARC_TO_ABS, VG_LCCWARC_TO_ABS,VG_CLOSE_PATH}; local
61 vgAppendPathData(path, 4, commands, coords);
coord.c 16 VGubyte commands[] = {VG_MOVE_TO_ABS, VG_LINE_TO_ABS, VG_LINE_TO_ABS, VG_LINE_TO_ABS, local
39 vgAppendPathData(path, 8, commands, coords);
gradorigin.c 18 VGubyte commands[5] = {VG_MOVE_TO_ABS, VG_LINE_TO_ABS, VG_LINE_TO_ABS, VG_LINE_TO_ABS, VG_CLOSE_PATH}; local
43 vgAppendPathData(path, 5, commands, coords);
  /xsrc/external/mit/MesaLib/dist/src/vulkan/util/
vk_commands_gen.py 63 % for c in commands:
114 commands = []
118 commands.append(e)
121 'commands': commands,
vk_cmd_queue_gen.py 66 % for c in commands:
79 % for c in commands:
100 % for c in commands:
116 % for c in commands:
152 % for c in commands:
163 % for c in commands:
214 % for c in commands:
398 commands = []
402 commands.append(e)
410 'commands': commands
    [all...]
  /xsrc/external/mit/libdrm/dist/include/drm/
qxl_drm.h 94 __u64 commands; /* struct drm_qxl_command* */ member in struct:drm_qxl_execbuffer
  /xsrc/external/mit/xsm/dist/
saveutil.c 205 /* Read commands for non-session aware clients */
309 char *commands;
365 XtNstring, &commands,
368 p = c = commands;
386 p = c = commands;
305 char *commands; local
  /xsrc/external/mit/MesaLib/dist/src/vulkan/overlay-layer/
mesa-overlay-control.py 197 commands = parser.add_subparsers(help='commands to run', dest='cmd') variable
198 commands.add_parser('start-capture')
199 commands.add_parser('stop-capture')
  /xsrc/external/mit/MesaLib.old/dist/src/vulkan/util/
gen_enum_to_str.py 121 % for cmd in commands:
140 % for cmd in commands:
190 % for cmd in commands:
205 % for cmd in commands:
355 for command in xml.findall('./commands/command'):
358 # Some commands are alias KHR -> nonKHR, ignore those
422 commands = sorted(command_factory.registry.values(), key=lambda e: e.name)
432 commands=commands,
  /xsrc/external/mit/xterm/dist/package/
xterm.spec 80 This package provides four commands:
  /xsrc/external/mit/xedit/dist/lisp/
debugger.c 69 } const commands[] = { variable
103 "Available commands are:\n\
121 Commands may be abbreviated.\n";
408 for (i = matches = 0; i < sizeof(commands) / sizeof(commands[0]);
410 const char *str = commands[i].name;
418 action = commands[i].action;
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/winsys/svga/drm/
vmw_screen.h 171 void *commands,

Completed in 28 milliseconds

1 2 3 4 5 6 7 8 91011>>