| /dflybsd-src/contrib/gdb-7/gdb/ |
| H A D | gdb-gdb.py | 115 fields.append("pointer_type = %s" % self.val['pointer_type']) 116 fields.append("reference_type = %s" % self.val['reference_type']) 117 fields.append("chain = %s" % self.val['reference_type']) 118 fields.append("instance_flags = %s" 120 fields.append("length = %d" % self.val['length']) 121 fields.append("main_type = %s" % self.val['main_type']) 175 fields.append("name = %s" % f['name']) 176 fields.append("type = %s" % f['type']) 177 fields.append("loc_kind = %s" % f['loc_kind']) 178 fields.append("bitsize = %d" % f['bitsize']) [all …]
|
| /dflybsd-src/contrib/ncurses/progs/ |
| H A D | tabs.c | 261 add_to_tab_list(char **append, const char *value) in add_to_tab_list() argument 263 char *result = *append; in add_to_tab_list() 272 else if (!comma_is_needed(*append)) in add_to_tab_list() 276 if (*append != 0) in add_to_tab_list() 277 need += strlen(*append); in add_to_tab_list() 284 if (*append != 0) { in add_to_tab_list() 285 _nc_STRCPY(result, *append, need); in add_to_tab_list() 286 free(*append); in add_to_tab_list() 291 *append = result; in add_to_tab_list() 384 char *append = 0; in main() local [all …]
|
| /dflybsd-src/contrib/binutils-2.27/gold/ |
| H A D | icf.cc | 371 buffer.append((*it_s)->name()); in get_section_contents() 373 buffer.append(addend_str); in get_section_contents() 374 buffer.append("@"); in get_section_contents() 388 buffer.append("R"); in get_section_contents() 389 buffer.append(addend_str); in get_section_contents() 390 buffer.append("@"); in get_section_contents() 415 buffer.append("ICF_R"); in get_section_contents() 416 buffer.append(addend_str); in get_section_contents() 418 icf_reloc_buffer.append(kept_section_str); in get_section_contents() 420 icf_reloc_buffer.append(addend_str); in get_section_contents() [all …]
|
| H A D | main.cc | 78 args.append(" '"); in collect_argv() 84 args.append(argpos, len); in collect_argv() 87 args.append("'\"'\"'"); in collect_argv() 90 args.append("'"); in collect_argv()
|
| /dflybsd-src/contrib/binutils-2.34/gold/ |
| H A D | icf.cc | 411 buffer.append(gsym->name()); in get_section_contents() 413 buffer.append(addend_str); in get_section_contents() 414 buffer.append("@"); in get_section_contents() 428 buffer.append("R"); in get_section_contents() 429 buffer.append(addend_str); in get_section_contents() 430 buffer.append("@"); in get_section_contents() 455 buffer.append("ICF_R"); in get_section_contents() 456 buffer.append(addend_str); in get_section_contents() 458 icf_reloc_buffer.append(kept_section_str); in get_section_contents() 460 icf_reloc_buffer.append(addend_str); in get_section_contents() [all …]
|
| H A D | main.cc | 78 args.append(" '"); in collect_argv() 84 args.append(argpos, len); in collect_argv() 87 args.append("'\"'\"'"); in collect_argv() 90 args.append("'"); in collect_argv()
|
| /dflybsd-src/contrib/binutils-2.34/libctf/ |
| H A D | ctf-util.c | 109 ctf_str_append (char *s, const char *append) in ctf_str_append() argument 113 if (append == NULL) in ctf_str_append() 119 size_t append_len = strlen (append); in ctf_str_append() 124 memcpy (s + s_len, append, append_len); in ctf_str_append() 133 ctf_str_append_noerr (char *s, const char *append) in ctf_str_append_noerr() argument 137 new_s = ctf_str_append (s, append); in ctf_str_append_noerr()
|
| /dflybsd-src/usr.bin/mkdep/ |
| H A D | mkdep.sh | 34 append=0 41 append=1 84 x) case $append in 89 *) case $append in
|
| /dflybsd-src/contrib/bmake/mk/ |
| H A D | meta2deps.py | 131 p.append(d) 162 nl.append(e) 180 e.append('.'+','.join(w[0:n])) 261 self.srctops.append(srctop) 266 self.srctops.append(_srctop) 283 self.objroots.append(objroot) 288 self.objroots.append(_objroot) 356 list.append(data) 546 setid_pids.append(pid) 708 conf['SRCTOPS'].append(srctop) [all …]
|
| /dflybsd-src/usr.bin/tee/ |
| H A D | tee.c | 62 int append, ch, exitval; in main() local 65 append = 0; in main() 69 append = 1; in main() 86 if (append) in main()
|
| /dflybsd-src/contrib/nvi2/common/ |
| H A D | put.c | 32 put(SCR *sp, CB *cbp, CHAR_T *namep, MARK *cp, MARK *rp, int append) in put() argument 92 lno = append ? cp->lno : cp->lno - 1; in put() 120 if (len > 0 && (clen = cp->cno + (append ? 1 : 0)) > 0) { in put() 133 clen = len == 0 ? 0 : len - (cp->cno + (append ? 1 : 0)); in put() 149 rp->cno = len == 0 ? 0 : sp->cno + (append && tp->len ? 1 : 0); in put()
|
| H A D | cut.c | 69 int append, copy_one, copy_def; in cut() local 93 append = copy_one = copy_def = 0; in cut() 101 if ((append = isupper(name))) { in cut() 125 } else if (!append) { in cut() 158 append = 0; /* Only append to the named buffer. */ in cut()
|
| /dflybsd-src/usr.bin/ktrace/ |
| H A D | ktrace.c | 56 int append, ch, fd, inherit, ops, pid, pidset, trpoints; in main() local 62 append = ops = pid = pidset = inherit = 0; in main() 68 append = 1; in main() 128 if (append) { in main()
|
| /dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/ext/ |
| H A D | vstring.tcc | 54 this->append(__n - __size, __c); in resize() 186 __str.append(__lhs); in operator +() 187 __str.append(__rhs); in operator +() 203 __str.append(__lhs, __len); in operator +() 204 __str.append(__rhs); in operator +() 217 __str.append(__rhs); in operator +() 233 __str.append(__lhs); in operator +() 234 __str.append(__rhs, __len); in operator +() 246 __str.append(__lhs); in operator +() 590 __str.append(__buf, sizeof(__buf) / sizeof(_CharT)); in operator >>() [all …]
|
| /dflybsd-src/contrib/gcc-4.7/libstdc++-v3/include/ext/ |
| H A D | vstring.tcc | 55 this->append(__n - __size, __c); in resize() 186 __str.append(__lhs); in operator +() 187 __str.append(__rhs); in operator +() 203 __str.append(__lhs, __len); in operator +() 204 __str.append(__rhs); in operator +() 217 __str.append(__rhs); in operator +() 233 __str.append(__lhs); in operator +() 234 __str.append(__rhs, __len); in operator +() 246 __str.append(__lhs); in operator +() 590 __str.append(__buf, sizeof(__buf) / sizeof(_CharT)); in operator >>() [all …]
|
| /dflybsd-src/contrib/gdb-7/gdb/python/lib/gdb/ |
| H A D | printing.py | 194 self.subprinters.append(self.RegexpSubprinter(name, regexp, 228 flag_list.append(e_name) 233 flag_list.append('<unknown: 0x%x>' % v) 255 self.enumerators.append((field.name, field.enumval))
|
| /dflybsd-src/sys/kern/ |
| H A D | subr_sglist.c | 587 int append; in sglist_join() local 597 append = 0; in sglist_join() 602 append = 1; in sglist_join() 605 if (first->sg_nseg + second->sg_nseg - append > first->sg_maxseg) in sglist_join() 609 if (append) in sglist_join() 613 bcopy(first->sg_segs + first->sg_nseg, second->sg_segs + append, in sglist_join() 614 (second->sg_nseg - append) * sizeof(struct sglist_seg)); in sglist_join() 615 first->sg_nseg += second->sg_nseg - append; in sglist_join()
|
| /dflybsd-src/contrib/libarchive/tar/ |
| H A D | subst.c | 167 realloc_strncat(char **str, const char *append, size_t len) in realloc_strncat() argument 182 memcpy(new_str + old_len, append, len); in realloc_strncat() 189 realloc_strcat(char **str, const char *append) in realloc_strcat() argument 199 new_str = malloc(old_len + strlen(append) + 1); in realloc_strcat() 204 strcpy(new_str + old_len, append); in realloc_strcat()
|
| /dflybsd-src/lib/libc/string/ |
| H A D | strcat.c | 36 strcat(char * __restrict s, const char * __restrict append) in strcat() argument 41 while ((*s++ = *append++)); in strcat()
|
| /dflybsd-src/sys/libkern/ |
| H A D | strcat.c | 36 strcat(char * __restrict s, const char * __restrict append) in strcat() argument 41 while ((*s++ = *append++) != 0); in strcat()
|
| /dflybsd-src/contrib/cryptsetup/tests/ |
| H A D | fileDiffer.py | 42 changelist.append(mychanges) 47 changelist.append(mychanges) 58 newchangelist.append(c)
|
| /dflybsd-src/contrib/lvm2/dist/lib/log/ |
| H A D | log.c | 55 void init_log_file(const char *log_file, int append) in init_log_file() argument 57 const char *open_mode = append ? "a" : "w"; in init_log_file() 67 void init_log_direct(const char *log_file, int append) in init_log_direct() argument 69 int open_flags = append ? 0 : O_TRUNC; in init_log_direct()
|
| H A D | lvm-logging.h | 41 void init_log_file(const char *log_file, int append); 42 void init_log_direct(const char *log_file, int append);
|
| /dflybsd-src/contrib/lvm2/dist/include/ |
| H A D | lvm-logging.h | 41 void init_log_file(const char *log_file, int append); 42 void init_log_direct(const char *log_file, int append);
|
| /dflybsd-src/contrib/gcc-4.7/libstdc++-v3/include/bits/ |
| H A D | basic_string.h | 930 { return this->append(__str); } in _GLIBCXX_VISIBILITY() 939 { return this->append(__s); } in _GLIBCXX_VISIBILITY() 961 { return this->append(__l.begin(), __l.size()); } in _GLIBCXX_VISIBILITY() 970 append(const basic_string& __str); in _GLIBCXX_VISIBILITY() 986 append(const basic_string& __str, size_type __pos, size_type __n); in _GLIBCXX_VISIBILITY() 995 append(const _CharT* __s, size_type __n); in _GLIBCXX_VISIBILITY() 1003 append(const _CharT* __s) in _GLIBCXX_VISIBILITY() 1006 return this->append(__s, traits_type::length(__s)); in _GLIBCXX_VISIBILITY() 1018 append(size_type __n, _CharT __c); in _GLIBCXX_VISIBILITY() 1027 append(initializer_list<_CharT> __l) in _GLIBCXX_VISIBILITY() [all …]
|