| /freebsd-12.1/contrib/file/ |
| H A D | README | 73 src/asprintf.c - replacement for OS's that don't have it. 75 src/asprintf.c - replacement for OS's that don't have it. 80 src/ctime_r.c - replacement for OS's that don't have it. 82 src/dprintf.c - replacement for OS's that don't have it. 88 src/fmtcheck.c - replacement for OS's that don't have it. 91 src/getline.c - replacement for OS's that don't have it. 93 src/gmtime_r.c - replacement for OS's that don't have it. 100 src/pread.c - replacement for OS's that don't have it. 107 src/strlcat.c - replacement for OS's that don't have it. 108 src/strlcpy.c - replacement for OS's that don't have it. [all …]
|
| /freebsd-12.1/contrib/gdb/gdb/ |
| H A D | macrotab.c | 534 const char *replacement) in new_macro_definition() argument 541 d->replacement = macro_bcache_str (t, replacement); in new_macro_definition() 596 macro_bcache_free (t, (char *) d->replacement); in macro_tree_delete_value() 668 const char *replacement) in check_for_redefinition() argument 688 else if (strcmp (replacement, found_def->replacement)) in check_for_redefinition() 721 const char *name, const char *replacement) in macro_define_object() argument 730 replacement); in macro_define_object() 746 d = new_macro_definition (t, macro_object_like, 0, 0, replacement); in macro_define_object() 754 const char *replacement) in macro_define_function() argument 763 replacement); in macro_define_function() [all …]
|
| H A D | maint.c | 544 char *replacement = NULL; in maintenance_do_deprecate() local 567 replacement = xstrdup (start_ptr); in maintenance_do_deprecate() 573 replacement = NULL; in maintenance_do_deprecate() 585 xfree (alias->replacement); in maintenance_do_deprecate() 591 alias->replacement = replacement; in maintenance_do_deprecate() 598 xfree (cmd->replacement); in maintenance_do_deprecate() 604 cmd->replacement = replacement; in maintenance_do_deprecate()
|
| H A D | macrotab.h | 228 const char *name, const char *replacement); 243 const char *replacement); 278 const char *replacement; member
|
| H A D | macroexp.c | 817 init_shared_buffer (&replacement_list, (char *) def->replacement, in substitute_args() 818 strlen (def->replacement)); in substitute_args() 921 init_shared_buffer (&replacement_list, (char *) def->replacement, in expand() 922 strlen (def->replacement)); in expand()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/ |
| H A D | PathMappingList.h | 38 void Append(const ConstString &path, const ConstString &replacement, 55 void Insert(const ConstString &path, const ConstString &replacement, 62 bool Replace(const ConstString &path, const ConstString &replacement, 65 bool Replace(const ConstString &path, const ConstString &replacement,
|
| /freebsd-12.1/contrib/gcc/ |
| H A D | tree-sra.c | 115 tree replacement; member 1275 if (elt->replacement) in sum_instantiated_sizes() 1597 if (elt->replacement) in mark_no_warning() 1683 r = c->replacement; in generate_copy_inout() 1685 i = c->replacement; in generate_copy_inout() 1726 if (dst->replacement) in generate_element_copy() 1732 t = sra_build_assignment (dst->replacement, src->replacement); in generate_element_copy() 1756 if (elt->replacement) in generate_element_zero() 1802 if (elt->replacement) in generate_element_init_1() 1967 if (elt->replacement) in scalarize_use() [all …]
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Target/ |
| H A D | PathMappingList.cpp | 67 const ConstString &replacement, bool notify) { in Append() argument 69 m_pairs.emplace_back(pair(NormalizePath(path), NormalizePath(replacement))); in Append() 86 const ConstString &replacement, uint32_t index, in Insert() argument 95 NormalizePath(replacement))); in Insert() 101 const ConstString &replacement, uint32_t index, in Replace() argument 106 m_pairs[index] = pair(NormalizePath(path), NormalizePath(replacement)); in Replace()
|
| /freebsd-12.1/sys/teken/stress/ |
| H A D | teken_stress.c | 97 static const char replacement[] = variable 115 replacement[buf[i] % sizeof replacement]; in main()
|
| /freebsd-12.1/contrib/ntp/sntp/m4/ |
| H A D | snprintf.m4 | 7 # libopts to avoid their own replacement of snprintf. 143 AC_MSG_CHECKING([if C99-snprintf replacement vsnprintf will be used]) 153 [Define to rpl_vsnprintf if the replacement function should be used.])]) 199 AC_MSG_CHECKING([if C99-snprintf replacement snprintf will be used]) 209 [Define to rpl_snprintf if the replacement function should be used.])]) 228 AC_MSG_CHECKING([if C99-snprintf replacement vasprintf will be used]) 238 [Define to rpl_vasprintf if the replacement function should be used.])]) 261 AC_MSG_CHECKING([if C99-snprintf replacement asprintf will be used]) 271 [Define to rpl_asprintf if the replacement function should be used.])])
|
| /freebsd-12.1/tests/sys/cddl/zfs/tests/replacement/ |
| H A D | replacement_001_pos.ksh | 32 . $STF_SUITE/tests/replacement/replacement.kshlib
|
| H A D | replacement_003_pos.ksh | 32 . $STF_SUITE/tests/replacement/replacement.kshlib
|
| H A D | replacement_002_pos.ksh | 32 . $STF_SUITE/tests/replacement/replacement.kshlib
|
| H A D | Makefile | 6 TESTSDIR=${TESTSBASE}/sys/cddl/zfs/tests/replacement 17 ${PACKAGE}FILES+= replacement.kshlib
|
| /freebsd-12.1/contrib/sqlite3/ |
| H A D | Replace.cs | 156 string replacement = args[1]; in Main() 197 string outputLine = regEx.Replace(inputLine, replacement); in Main()
|
| /freebsd-12.1/contrib/gdb/gdb/cli/ |
| H A D | cli-decode.c | 168 c->replacement = NULL; in add_cmd() 201 deprecate_cmd (struct cmd_list_element *cmd, char *replacement) in deprecate_cmd() argument 205 if (replacement != NULL) in deprecate_cmd() 206 cmd->replacement = replacement; in deprecate_cmd() 208 cmd->replacement = NULL; in deprecate_cmd() 1245 if (alias->replacement) in deprecated_cmd_warning() 1246 printf_filtered ("Use '%s'.\n\n", alias->replacement); in deprecated_cmd_warning() 1252 if (cmd->replacement) in deprecated_cmd_warning() 1253 printf_filtered ("Use '%s'.\n\n", cmd->replacement); in deprecated_cmd_warning()
|
| /freebsd-12.1/tools/build/ |
| H A D | check-links.sh | 7 replacement=_ 11 libkey="${libkey%%${patterns}*}${replacement}${libkey#*${patterns}}"
|
| /freebsd-12.1/contrib/file/magic/Magdir/ |
| H A D | softquad | 25 # sqtroff intermediate language (replacement for ditroff int. lang.) 33 # sqtroff intermediate language (replacement for ditroff int. lang.)
|
| /freebsd-12.1/stand/lua/ |
| H A D | config.lua | 121 local replacement = loader.getenv(name) or "" 122 value = value:gsub("${" .. escapeName(name) .. "}", replacement) 125 local replacement = loader.getenv(name) or "" 126 value = value:gsub("$" .. escapeName(name), replacement)
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | TemplateName.h | 334 TemplateName replacement) in SubstTemplateTemplateParmStorage() argument 336 Parameter(parameter), Replacement(replacement) {} in SubstTemplateTemplateParmStorage() 346 TemplateName replacement);
|
| /freebsd-12.1/contrib/libstdc++/libsupc++/ |
| H A D | exception | 82 /// If you write a replacement %terminate handler, it must be of this type. 85 /// If you write a replacement %unexpected handler, it must be of this type. 117 /** A replacement for the standard terminate_handler which prints more
|
| /freebsd-12.1/contrib/gcc/doc/ |
| H A D | cppinternals.texi | 491 count is all you need to get the replacement list of a macro. 528 the replacement list of that macro. In the case of function-like 530 replacement list, stored as @code{CPP_MACRO_ARG} tokens, with the 550 @section Scanning the replacement list for macros to expand 552 with their possibly-expanded arguments, the replacement list is 554 replacement list that are not expanded during this scan are never 565 parameter in the macro's replacement list, the subsequent token 589 re-scanning after argument replacement, the token @samp{foo} is 670 and after each macro replacement, each argument replacement, and 696 in the replacement list. [all …]
|
| /freebsd-12.1/release/picobsd/tinyware/vm/ |
| H A D | README | 3 This is a small replacement for vmstat(8) program. It allows you to measure
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/AST/ |
| H A D | TemplateName.cpp | 45 TemplateName replacement) { in Profile() argument 47 ID.AddPointer(replacement.getAsVoidPointer()); in Profile()
|
| /freebsd-12.1/release/picobsd/tinyware/sps/ |
| H A D | README | 1 This is a small 'ps' replacement, which uses information available via
|