Home
last modified time | relevance | path

Searched refs:comp (Results 1 – 25 of 160) sorted by relevance

1234567

/dflybsd-src/contrib/gdb-7/gdb/
H A Dcp-name-parser.y268 struct demangle_component *comp; member
270 struct demangle_component *comp; member
274 struct demangle_component *comp, *last; member
277 struct demangle_component *comp, **last; member
286 %type <comp> exp exp1 type start start_opt operator colon_name
287 %type <comp> unqualified_name colon_ext_name
288 %type <comp> template template_arg
289 %type <comp> builtin_type
290 %type <comp> typespec_2 array_indicator
291 %type <comp> colon_ext_only ext_only_name
[all …]
H A Dcp-support.c314 struct demangle_component *comp = ret_comp; in replace_typedefs_qualified_name() local
321 while (comp->type == DEMANGLE_COMPONENT_QUAL_NAME) in replace_typedefs_qualified_name()
323 if (d_left (comp)->type == DEMANGLE_COMPONENT_NAME) in replace_typedefs_qualified_name()
327 ui_file_write (buf, d_left (comp)->u.s_name.s, in replace_typedefs_qualified_name()
328 d_left (comp)->u.s_name.len); in replace_typedefs_qualified_name()
357 d_right (ret_comp) = d_right (comp); in replace_typedefs_qualified_name()
358 comp = ret_comp; in replace_typedefs_qualified_name()
367 replace_typedefs (info, d_left (comp), finder, data); in replace_typedefs_qualified_name()
368 name = cp_comp_to_string (d_left (comp), 100); in replace_typedefs_qualified_name()
380 comp = d_right (comp); in replace_typedefs_qualified_name()
[all …]
/dflybsd-src/sys/net/ppp_layer/
H A Dslcompress.c55 #define INCR(counter) ++comp->counter;
64 sl_compress_init(struct slcompress *comp, int max_state) in sl_compress_init() argument
67 struct cstate *tstate = comp->tstate; in sl_compress_init()
71 bzero((char *)comp, sizeof(*comp)); in sl_compress_init()
74 bzero((char *)comp->tstate, sizeof(comp->tstate)); in sl_compress_init()
75 bzero((char *)comp->rstate, sizeof(comp->rstate)); in sl_compress_init()
83 comp->last_cs = &tstate[0]; in sl_compress_init()
84 comp->last_recv = 255; in sl_compress_init()
85 comp->last_xmit = 255; in sl_compress_init()
86 comp->flags = SLF_TOSS; in sl_compress_init()
[all …]
/dflybsd-src/usr.bin/mt/
H A Dmt.c129 static const char *comptostring(u_int32_t comp);
136 struct commands *comp; in main() local
162 for (comp = com;; comp++) { in main()
163 if (comp->c_name == NULL) in main()
165 if (strncmp(p, comp->c_name, len) == 0) in main()
169 if((comp->c_flags & NEED_2ARGS) && argc != 2) in main()
171 if(comp->c_flags & DISABLE_THIS) { in main()
175 if ((mtfd = open(tape, comp->c_ronly ? O_RDONLY : O_RDWR)) < 0) in main()
177 if (comp->c_code != MTNOP) { in main()
178 mt_com.mt_op = comp->c_code; in main()
[all …]
/dflybsd-src/usr.sbin/ppp/
H A Dslcompress.c68 sl_compress_init(struct slcompress *comp, int max_state) in sl_compress_init() argument
71 struct cstate *tstate = comp->tstate; in sl_compress_init()
73 memset(comp, '\0', sizeof *comp); in sl_compress_init()
80 comp->last_cs = &tstate[0]; in sl_compress_init()
81 comp->last_recv = 255; in sl_compress_init()
82 comp->last_xmit = 255; in sl_compress_init()
83 comp->flags = SLF_TOSS; in sl_compress_init()
143 struct slcompress *comp, in sl_compress_tcp() argument
147 struct cstate *cs = comp->last_cs->cs_next; in sl_compress_tcp()
197 struct cstate *lastcs = comp->last_cs; in sl_compress_tcp()
[all …]
/dflybsd-src/contrib/gcc-4.7/libstdc++-v3/include/bits/
H A Dstl_queue.h382 _Compare comp; in _GLIBCXX_VISIBILITY()
392 : c(__s), comp(__x) in _GLIBCXX_VISIBILITY()
393 { std::make_heap(c.begin(), c.end(), comp); } in _GLIBCXX_VISIBILITY()
398 : c(__s), comp(__x) in _GLIBCXX_VISIBILITY()
399 { std::make_heap(c.begin(), c.end(), comp); } in _GLIBCXX_VISIBILITY()
404 : c(std::move(__s)), comp(__x) in _GLIBCXX_VISIBILITY()
405 { std::make_heap(c.begin(), c.end(), comp); } in _GLIBCXX_VISIBILITY()
428 : c(__s), comp(__x) in _GLIBCXX_VISIBILITY()
432 std::make_heap(c.begin(), c.end(), comp); in _GLIBCXX_VISIBILITY()
439 : c(__s), comp(__x) in _GLIBCXX_VISIBILITY()
[all …]
/dflybsd-src/contrib/less/
H A Dpattern.c29 struct re_pattern_buffer *comp = (struct re_pattern_buffer *) in compile_pattern2() local
32 if (re_compile_pattern(pattern, strlen(pattern), comp)) in compile_pattern2()
34 free(comp); in compile_pattern2()
44 *comp_pattern = comp; in compile_pattern2()
47 regex_t *comp = (regex_t *) ecalloc(1, sizeof(regex_t)); in compile_pattern2() local
48 if (regcomp(comp, pattern, REGCOMP_FLAG | (is_caseless ? REG_ICASE : 0))) in compile_pattern2()
50 free(comp); in compile_pattern2()
60 *comp_pattern = comp; in compile_pattern2()
66 pcre *comp = pcre_compile(pattern, in compile_pattern2() local
70 if (comp == NULL) in compile_pattern2()
[all …]
/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/bits/
H A Dstl_queue.h469 _Compare comp; in _GLIBCXX_VISIBILITY()
479 : c(__s), comp(__x) in _GLIBCXX_VISIBILITY()
480 { std::make_heap(c.begin(), c.end(), comp); } in _GLIBCXX_VISIBILITY()
486 : c(), comp() { } in _GLIBCXX_VISIBILITY()
490 : c(__s), comp(__x) in _GLIBCXX_VISIBILITY()
491 { std::make_heap(c.begin(), c.end(), comp); } in _GLIBCXX_VISIBILITY()
495 : c(std::move(__s)), comp(__x) in _GLIBCXX_VISIBILITY()
496 { std::make_heap(c.begin(), c.end(), comp); } in _GLIBCXX_VISIBILITY()
501 : c(__a), comp() { } in _GLIBCXX_VISIBILITY()
505 : c(__a), comp(__x) { } in _GLIBCXX_VISIBILITY()
[all …]
/dflybsd-src/usr.sbin/mfiutil/
H A Dmfiutil.c155 scan_firmware(struct mfi_info_component *comp) in scan_firmware() argument
159 len = strlen(comp->name); in scan_firmware()
162 len = strlen(comp->version); in scan_firmware()
165 len = strlen(comp->build_date); in scan_firmware()
168 len = strlen(comp->build_time); in scan_firmware()
174 display_firmware(struct mfi_info_component *comp, const char *tag) in display_firmware() argument
177 printf("%-*s %-*s %-*s %-*s %s\n", fw_name_width, comp->name, in display_firmware()
178 fw_version_width, comp->version, fw_date_width, comp->build_date, in display_firmware()
179 fw_time_width, comp->build_time, tag); in display_firmware()
/dflybsd-src/usr.bin/dsynth/
H A Drepo.c121 const char *decomp, const char *comp);
192 const char *comp; in childRebuildRepo() local
199 comp = "cat"; in childRebuildRepo()
202 comp = "gzip"; in childRebuildRepo()
205 comp = "bzip"; in childRebuildRepo()
208 comp = "zstd"; in childRebuildRepo()
213 comp = "cat"; in childRebuildRepo()
217 decomp, comp); in childRebuildRepo()
220 decomp, comp); in childRebuildRepo()
222 const char *comp; in childRebuildRepo() local
[all …]
/dflybsd-src/crypto/libressl/crypto/stack/
H A Dstack.c74 int (*old)(const void *, const void *) = sk->comp; in sk_set_cmp_func()
76 if (sk->comp != c) in sk_set_cmp_func()
78 sk->comp = c; in sk_set_cmp_func()
89 if ((ret = sk_new(sk->comp)) == NULL) in sk_dup()
100 ret->comp = sk->comp; in sk_dup()
127 ret->comp = c; in sk_new()
201 if (st->comp == NULL) { in internal_find()
210 r = OBJ_bsearch_ex_(&data, st->data, st->num, sizeof(void *), st->comp, in internal_find()
330 comp_func = (int (*)(const void *, const void *))(st->comp); in sk_sort()
/dflybsd-src/contrib/gcc-8.0/gcc/
H A Dtree-predcom.c517 dump_component (FILE *file, struct component *comp) in dump_component() argument
523 comp->comp_step == RS_INVARIANT ? " (invariant)" : ""); in dump_component()
524 FOR_EACH_VEC_ELT (comp->refs, i, a) in dump_component()
535 struct component *comp; in dump_components() local
537 for (comp = comps; comp; comp = comp->next) in dump_components()
538 dump_component (file, comp); in dump_components()
584 release_component (struct component *comp) in release_component() argument
586 comp->refs.release (); in release_component()
587 free (comp); in release_component()
765 struct component *comp_list = NULL, *comp; in split_data_refs_to_components() local
[all …]
/dflybsd-src/contrib/gcc-4.7/gcc/
H A Dtree-predcom.c466 dump_component (FILE *file, struct component *comp) in dump_component() argument
472 comp->comp_step == RS_INVARIANT ? " (invariant)" : ""); in dump_component()
473 FOR_EACH_VEC_ELT (dref, comp->refs, i, a) in dump_component()
484 struct component *comp; in dump_components() local
486 for (comp = comps; comp; comp = comp->next) in dump_components()
487 dump_component (file, comp); in dump_components()
527 release_component (struct component *comp) in release_component() argument
529 VEC_free (dref, heap, comp->refs); in release_component()
530 free (comp); in release_component()
708 struct component *comp_list = NULL, *comp; in split_data_refs_to_components() local
[all …]
/dflybsd-src/sbin/hammer2/
H A Dsubs.c215 int comp = HAMMER2_DEC_ALGO(comp_algo); in hammer2_compmode_to_str() local
219 if (comp >= 0 && comp < HAMMER2_COMP_STRINGS_COUNT) in hammer2_compmode_to_str()
221 comps[comp], level); in hammer2_compmode_to_str()
224 comp, level); in hammer2_compmode_to_str()
226 if (comp >= 0 && comp < HAMMER2_COMP_STRINGS_COUNT) in hammer2_compmode_to_str()
228 comps[comp]); in hammer2_compmode_to_str()
231 comp); in hammer2_compmode_to_str()
/dflybsd-src/lib/libc/gen/
H A Dfmtmsg.c120 char *comp, *output; in printfmt() local
138 while ((comp = nextcomp(msgverb)) != NULL) { in printfmt()
139 if (strcmp(comp, "label") == 0 && label != MM_NULLLBL) { in printfmt()
142 } else if (strcmp(comp, "severity") == 0 && sevname != NULL) { in printfmt()
145 } else if (strcmp(comp, "text") == 0 && text != MM_NULLTXT) { in printfmt()
148 } else if (strcmp(comp, "action") == 0 && act != MM_NULLACT) { in printfmt()
152 } else if (strcmp(comp, "tag") == 0 && tag != MM_NULLTAG) { in printfmt()
/dflybsd-src/libexec/fingerd/
H A Dfingerd.c63 char **ap, *av[ENTRIES + 1], **comp, line[1024], *prog; in main() local
132 comp = &av[1]; in main()
151 comp = &av[0]; in main()
161 *comp = ++lp; in main()
163 *comp = prog; in main()
176 execv(prog, comp); in main()
/dflybsd-src/contrib/mpfr/src/
H A Dlog1p.c32 int comp, inexact; in mpfr_log1p() local
83 comp = mpfr_cmp_si (x, -1); in mpfr_log1p()
85 if (MPFR_UNLIKELY(comp <= 0)) in mpfr_log1p()
87 if (comp == 0) in mpfr_log1p()
H A Dacosh.c34 int comp; in mpfr_acosh() local
57 comp = mpfr_cmp_ui (x, 1); in mpfr_acosh()
58 if (MPFR_UNLIKELY (comp < 0)) in mpfr_acosh()
63 else if (MPFR_UNLIKELY (comp == 0)) in mpfr_acosh()
/dflybsd-src/usr.bin/comm/
H A Dcomm.c59 int comp, read1, read2; in main() local
148 comp = strcmp(line1, line2); in main()
150 comp = wcscoll(tline1, tline2); in main()
157 if (!comp) { in main()
165 if (comp < 0) { in main()
/dflybsd-src/dports.base/dragonfly/base/
H A DMakefile21 .for comp in ${COMPONENTS}
22 prefix=${comp:C/.*\///}
23 RUN_DEPENDS:= ${RUN_DEPENDS} ${prefix}>0:${comp}
/dflybsd-src/contrib/gdb-7/libiberty/
H A Dsplay-tree.c149 cmp1 = (*sp->comp) (key, n->key); in splay_tree_splay()
165 cmp2 = (*sp->comp) (key, c->key); in splay_tree_splay()
338 sp->comp = compare_fn; in splay_tree_new_typed_alloc()
369 comparison = (*sp->comp)(sp->root->key, key); in splay_tree_insert()
418 if (sp->root && (*sp->comp) (sp->root->key, key) == 0) in splay_tree_remove()
458 if (sp->root && (*sp->comp)(sp->root->key, key) == 0) in splay_tree_lookup()
512 comparison = (*sp->comp)(sp->root->key, key); in splay_tree_predecessor()
543 comparison = (*sp->comp)(sp->root->key, key); in splay_tree_successor()
/dflybsd-src/contrib/gcc-8.0/libiberty/
H A Dsplay-tree.c148 cmp1 = (*sp->comp) (key, n->key); in splay_tree_splay()
164 cmp2 = (*sp->comp) (key, c->key); in splay_tree_splay()
337 sp->comp = compare_fn; in splay_tree_new_typed_alloc()
368 comparison = (*sp->comp)(sp->root->key, key); in splay_tree_insert()
417 if (sp->root && (*sp->comp) (sp->root->key, key) == 0) in splay_tree_remove()
457 if (sp->root && (*sp->comp)(sp->root->key, key) == 0) in splay_tree_lookup()
511 comparison = (*sp->comp)(sp->root->key, key); in splay_tree_predecessor()
542 comparison = (*sp->comp)(sp->root->key, key); in splay_tree_successor()
/dflybsd-src/contrib/binutils-2.27/libiberty/
H A Dsplay-tree.c149 cmp1 = (*sp->comp) (key, n->key); in splay_tree_splay()
165 cmp2 = (*sp->comp) (key, c->key); in splay_tree_splay()
338 sp->comp = compare_fn; in splay_tree_new_typed_alloc()
369 comparison = (*sp->comp)(sp->root->key, key); in splay_tree_insert()
418 if (sp->root && (*sp->comp) (sp->root->key, key) == 0) in splay_tree_remove()
458 if (sp->root && (*sp->comp)(sp->root->key, key) == 0) in splay_tree_lookup()
512 comparison = (*sp->comp)(sp->root->key, key); in splay_tree_predecessor()
543 comparison = (*sp->comp)(sp->root->key, key); in splay_tree_successor()
/dflybsd-src/contrib/gcc-4.7/libiberty/
H A Dsplay-tree.c149 cmp1 = (*sp->comp) (key, n->key); in splay_tree_splay()
165 cmp2 = (*sp->comp) (key, c->key); in splay_tree_splay()
338 sp->comp = compare_fn; in splay_tree_new_typed_alloc()
369 comparison = (*sp->comp)(sp->root->key, key); in splay_tree_insert()
418 if (sp->root && (*sp->comp) (sp->root->key, key) == 0) in splay_tree_remove()
458 if (sp->root && (*sp->comp)(sp->root->key, key) == 0) in splay_tree_lookup()
512 comparison = (*sp->comp)(sp->root->key, key); in splay_tree_predecessor()
543 comparison = (*sp->comp)(sp->root->key, key); in splay_tree_successor()
/dflybsd-src/contrib/cvs-1.12/src/
H A Drecurse.c363 char *comp; in start_recursion() local
374 comp = (char *)last_component (dir); in start_recursion()
375 if (comp == dir) in start_recursion()
382 comp[-1] = '\0'; in start_recursion()
383 comp = xstrdup (comp); in start_recursion()
398 addfile (&files_by_dir, dir, comp); in start_recursion()
421 reposfile = Xasprintf ("%s/%s", repos, comp); in start_recursion()
424 if (!wrap_name_has (comp, WRAP_TOCVS) && isdir (reposfile)) in start_recursion()
427 addfile (&files_by_dir, dir, comp); in start_recursion()
433 addfile (&files_by_dir, dir, comp); in start_recursion()
[all …]

1234567