Searched defs:cmds (Results 1 - 25 of 25) sorted by relevance

/external/chromium_org/third_party/brotli/src/brotli/enc/
H A Dhistogram.cc30 const std::vector<Command>& cmds,
44 for (int i = 0; i < cmds.size(); ++i) {
45 const Command &cmd = cmds[i];
69 const std::vector<Command>& cmds,
78 for (int i = 0; i < cmds.size(); ++i) {
79 const Command &cmd = cmds[i];
29 BuildHistograms( const std::vector<Command>& cmds, const BlockSplit& literal_split, const BlockSplit& insert_and_copy_split, const BlockSplit& dist_split, const uint8_t* ringbuffer, size_t pos, size_t mask, const std::vector<int>& context_modes, std::vector<HistogramLiteral>* literal_histograms, std::vector<HistogramCommand>* insert_and_copy_histograms, std::vector<HistogramDistance>* copy_dist_histograms) argument
68 BuildLiteralHistogramsForBlockType( const std::vector<Command>& cmds, const BlockSplit& literal_split, const uint8_t* ringbuffer, size_t pos, size_t mask, int block_type, int context_mode, std::vector<HistogramLiteral>* histograms) argument
H A Dblock_splitter.cc48 void CopyLiteralsToByteArray(const std::vector<Command>& cmds, argument
53 for (int i = 0; i < cmds.size(); ++i) {
54 total_length += cmds[i].insert_length_;
66 for (int i = 0; i < cmds.size() && pos < total_length; ++i) {
67 memcpy(&(*literals)[pos], data + from_pos, cmds[i].insert_length_);
68 pos += cmds[i].insert_length_;
69 from_pos += cmds[i].insert_length_ + cmds[i].copy_length_;
73 void CopyCommandsToByteArray(const std::vector<Command>& cmds, argument
76 for (int i = 0; i < cmds
335 SplitBlock(const std::vector<Command>& cmds, const uint8_t* data, BlockSplit* literal_split, BlockSplit* insert_and_copy_split, BlockSplit* dist_split) argument
[all...]
H A Dencode.cc394 void ComputeDistanceShortCodes(std::vector<Command>* cmds, argument
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, argument
448 for (int i = 0; i < cmds->size(); ++i) {
449 Command* cmd = &(*cmds)[
706 std::vector<Command> cmds; member in struct:brotli::MetaBlock
719 BuildMetaBlock(const EncodingParams& params, const std::vector<Command>& cmds, const uint8_t* ringbuffer, const size_t pos, const size_t mask, MetaBlock* mb) argument
785 MetaBlockLength(const std::vector<Command>& cmds) argument
[all...]
/external/libedit/src/
H A Dparse.c63 } cmds[] = { variable in typeref:struct:__anon22836
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/tcpdump/
H A Dprint-telnet.c71 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/
H A Dsvga_dump.py175 cmds = [ variable
218 for id, header, body, footer in cmds:
326 for id, header, body, footer in cmds:
/external/iproute2/ip/
H A Dip.c65 } cmds[] = { variable in typeref:struct:cmd
94 for (c = cmds; c->cmd; ++c) {
/external/mesa3d/src/gallium/drivers/svga/svgadump/
H A Dsvga_dump.py175 cmds = [ variable
218 for id, header, body, footer in cmds:
326 for id, header, body, footer in cmds:
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/
H A Dnouveau_video.h33 unsigned *cmds; member in struct:nouveau_decoder
50 dec->cmds[dec->ofs++] = data;
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Dvgu.c42 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,
41 vgu_append_float_coords(VGPath path, const VGubyte *cmds, VGint num_cmds, const VGfloat *coords, VGint num_coords) argument
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...]
H A Dstroker.c76 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,
196 stroke_itr_common_init(struct stroke_iterator *itr, struct array *cmds, struct array *coords) argument
207 stroke_forward_iterator(struct stroke_iterator *itr, struct array *cmds, struct array *coords) argument
221 stroke_backward_iterator(struct stroke_iterator *itr, struct array *cmds, struct array *coords) argument
331 stroke_flat_iterator(struct stroke_iterator *itr, struct array *cmds, struct array *coords) argument
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/chromium_org/third_party/openssl/openssl/apps/
H A Dengine.c203 STACK_OF(OPENSSL_STRING) *cmds = NULL;
214 cmds = sk_OPENSSL_STRING_new_null();
216 if(!cmds)
287 if(cmds) sk_OPENSSL_STRING_pop_free(cmds, identity);
293 static void util_do_cmds(ENGINE *e, STACK_OF(OPENSSL_STRING) *cmds, argument
296 int loop, res, num = sk_OPENSSL_STRING_num(cmds);
307 cmd = sk_OPENSSL_STRING_value(cmds, loop);
/external/fio/engines/
H A Dbinject.c23 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));
H A Dsg.c24 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/
H A Dnouveau_video.h33 unsigned *cmds; member in struct:nouveau_decoder
50 dec->cmds[dec->ofs++] = data;
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dvgu.c42 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,
41 vgu_append_float_coords(VGPath path, const VGubyte *cmds, VGint num_cmds, const VGfloat *coords, VGint num_coords) argument
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...]
H A Dstroker.c76 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,
196 stroke_itr_common_init(struct stroke_iterator *itr, struct array *cmds, struct array *coords) argument
207 stroke_forward_iterator(struct stroke_iterator *itr, struct array *cmds, struct array *coords) argument
221 stroke_backward_iterator(struct stroke_iterator *itr, struct array *cmds, struct array *coords) argument
331 stroke_flat_iterator(struct stroke_iterator *itr, struct array *cmds, struct array *coords) argument
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/openssl/apps/
H A Dengine.c203 STACK_OF(OPENSSL_STRING) *cmds = NULL;
214 cmds = sk_OPENSSL_STRING_new_null();
216 if(!cmds)
287 if(cmds) sk_OPENSSL_STRING_pop_free(cmds, identity);
293 static void util_do_cmds(ENGINE *e, STACK_OF(OPENSSL_STRING) *cmds, argument
296 int loop, res, num = sk_OPENSSL_STRING_num(cmds);
307 cmd = sk_OPENSSL_STRING_value(cmds, loop);
/external/strace/
H A Daio.c194 } cmds[] = { local
206 if (cmd < ARRAY_SIZE(cmds)) {
207 tprints(cmds[cmd].name);
208 return cmds[cmd].sub;
/external/chromium_org/gpu/command_buffer/client/
H A Dcmd_buffer_helper_test.cc139 CommandBufferEntry* cmds = local
142 cmds[put++].value_header = header;
144 cmds[put++] = args[ii];
H A Dgles2_implementation_unittest.cc439 sizeof(cmds::GetShaderPrecisionFormat::Result) * 12);
513 const uint8* cmds = reinterpret_cast<const uint8*>(ring_buffer->memory()); local
514 const uint8* end = cmds + ring_buffer->size();
515 for (; cmds < end; ++cmds) {
516 if (*cmds != kInitialValue) {
594 GetExpectedResultMemory(sizeof(cmds::GetError::Result));
815 cmds::GetShaderPrecisionFormat cmd;
817 typedef cmds::GetShaderPrecisionFormat::Result Result;
897 cmds
[all...]
/external/kernel-headers/original/uapi/drm/
H A Dmsm_drm.h163 * (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
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dhelp.c8 void add_cmdname(struct cmdnames *cmds, const char *name, size_t len) argument
16 ALLOC_GROW(cmds->names, cmds->cnt + 1, cmds->alloc);
17 cmds->names[cmds->cnt++] = ent;
20 static void clean_cmdnames(struct cmdnames *cmds) argument
24 for (i = 0; i < cmds->cnt; ++i)
25 free(cmds->names[i]);
26 free(cmds
38 uniq(struct cmdnames *cmds) argument
52 exclude_cmds(struct cmdnames *cmds, struct cmdnames *excludes) argument
74 pretty_print_string_list(struct cmdnames *cmds, int longest) argument
117 list_commands_in_dir(struct cmdnames *cmds, const char *path, const char *prefix) argument
258 add_cmd_list(struct cmdnames *cmds, struct cmdnames *old) argument
[all...]
/external/chromium_org/gpu/command_buffer/common/
H A Dgles2_cmd_format.h196 namespace cmds { namespace in namespace:gpu::gles2
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dfindbugs.jarMETA-INF/ META-INF/MANIFEST.MF default.xsl edu/ edu/umd/ edu/umd/cs/ edu/ ...

Completed in 767 milliseconds