Searched refs:suffix (Results 26 - 50 of 255) sorted by relevance

1234567891011

/freebsd-current/contrib/libarchive/tar/
H A Dcreation_set.c48 const char *suffix; member in struct:suffix_code_t
53 get_suffix_code(const struct suffix_code_t *tbl, const char *suffix) argument
57 if (suffix == NULL)
59 for (i = 0; tbl[i].suffix != NULL; i++) {
60 if (strcmp(tbl[i].suffix, suffix) == 0)
67 get_filter_code(const char *suffix) argument
69 /* A pair of suffix and compression/filter. */
86 return get_suffix_code(filters, suffix);
90 get_format_code(const char *suffix) argument
111 decompose_alias(const char *suffix) argument
[all...]
/freebsd-current/usr.sbin/bluetooth/iwmbtfw/
H A Diwmbt_fw.c113 const char *prefix, const char *suffix)
131 suffix);
142 suffix);
152 suffix);
164 suffix);
112 iwmbt_get_fwname(struct iwmbt_version *ver, struct iwmbt_boot_params *params, const char *prefix, const char *suffix) argument
H A Diwmbt_fw.h75 const char *suffix);
/freebsd-current/lib/libutil/
H A Dhumanize_number.c49 const char *suffix, int scale, int flags)
62 if (buf == NULL || suffix == NULL)
127 baselen += strlen(suffix);
129 /* Check if enough room for `x y' + suffix + `\0' */
172 sep, SCALE2PREFIX(i), suffix);
176 sep, SCALE2PREFIX(i), suffix);
48 humanize_number(char *buf, size_t len, int64_t quotient, const char *suffix, int scale, int flags) argument
/freebsd-current/usr.sbin/certctl/
H A Dcertctl.sh112 local suffix
131 suffix=$(get_decimal "$CERTDESTDIR" "$hash")
132 verbose "Adding $hash.$suffix to trust store"
134 "$(realpath "$1")" "$CERTDESTDIR/$hash.$suffix"
141 local suffix
147 suffix=$(get_decimal "$UNTRUSTDESTDIR" "$hash")
148 filename="$hash.$suffix"
149 echo "$srcfile" "$hash.$suffix"
153 suffix=$(get_decimal "$UNTRUSTDESTDIR" "$hash")
154 filename="$hash.$suffix"
[all...]
/freebsd-current/contrib/bmake/unit-tests/
H A Dsuff-add-later.exp1 Adding suffix ".c"
2 Adding suffix ".d"
6 Adding suffix ".e"
H A Dposix1.mk6 all: line-continuations suffix-substitution localvars
47 suffix-substitution:
52 # Local variables: regular forms, D/F forms and suffix substitution.
63 # $* = target without suffix $? = sources newer than target
92 "Target with suffix transformations\n\
96 Implied source with suffix transformations\n\
100 Suffixless target with suffix transformations\n\
104 Out-of-date dependencies with suffix transformations\n\
108 Member with suffix transformations\n\
H A Dvarmod-sysv.mk3 # Tests for the variable modifier ':from=to', which replaces the suffix
31 # Another use case for the modifier ':from=to' is to append a suffix to each
82 .if ${:L:=suffix} != ""
90 .if ${:L:%=suffix} != ""
140 # a suffix.
145 # Each word gets the suffix "X" appended.
150 # The suffix "o" is replaced with "X".
155 # The suffix "o" is replaced with nothing.
160 # The suffix "o" is replaced with a literal percent. The percent is only
166 # Each word with the suffix "
[all...]
/freebsd-current/sys/teken/
H A Dgensequences76 suffix = sequence[nsequences];
77 cmd = prefix suffix;
83 l_cmd_suffix[cmd] = suffix;
/freebsd-current/contrib/file/
H A Dinstall-sh61 suffix=""
66 -b) suffix=".old"
257 *%*) suffix=`echo x |
266 *) suffix="$suffixfmt";;
268 dstbackup="$dstfinal$suffix"
289 if [ x"$suffix" != x ] && [ -f "$dstfinal" ]
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Core/
H A DHighlighter.h27 /// stores color codes in these strings (the suffix string is often used for
35 ColorStyle(llvm::StringRef prefix, llvm::StringRef suffix) { argument
36 Set(prefix, suffix);
46 /// Sets the prefix and suffix strings.
47 void Set(llvm::StringRef prefix, llvm::StringRef suffix);
52 /// stop-show-column-ansi-prefix/stop-show-column-ansi-suffix.
/freebsd-current/contrib/libfido2/src/
H A Dlog.c35 do_log(const char *suffix, const char *fmt, va_list args) argument
41 if (suffix != NULL)
42 snprintf(line, sizeof(line), "%.180s: %.70s\n", body, suffix);
/freebsd-current/usr.bin/procstat/
H A Dprocstat_rlimit.c49 const char *suffix; member in struct:__anon912
82 rlimit_param[indx].suffix, HN_AUTOSCALE | HN_GETSCALE, HN_DECIMAL);
84 rlimit_param[indx].suffix, HN_AUTOSCALE, HN_DECIMAL);
85 /* Pad with one space if there is no suffix prefix. */
/freebsd-current/contrib/llvm-project/clang/lib/Analysis/
H A DCocoaConventions.cpp129 StringRef suffix = functionName.substr(it - start);
130 if (suffix.starts_with("reate")) {
132 } else if (suffix.starts_with("opy")) {
/freebsd-current/contrib/llvm-project/clang/utils/TableGen/
H A DASTTableGen.cpp34 static StringRef removeExpectedNodeNameSuffix(Record *node, StringRef suffix) { argument
36 if (!nodeName.ends_with(suffix)) {
38 Twine("name of node doesn't end in ") + suffix);
40 return nodeName.drop_back(suffix.size());
54 // C++ class, and the ID just strips this suffix.
66 // no standard suffix). The ID adds "Class" for historical reasons.
/freebsd-current/crypto/heimdal/lib/roken/
H A Drtbl.c51 char *suffix; member in struct:column_data
113 free (c->suffix);
146 col->suffix = NULL;
237 const char *prefix, const char *suffix)
253 if (c->suffix)
254 free (c->suffix);
255 if(suffix == NULL)
256 c->suffix = NULL;
258 c->suffix = strdup (suffix);
236 rtbl_set_column_affix_by_id(rtbl_t table, unsigned int id, const char *prefix, const char *suffix) argument
[all...]
/freebsd-current/contrib/byacc/
H A Dmain.c559 #define CREATE_FILE_NAME(dest, suffix) \
560 dest = alloc_file_name(len, suffix)
563 alloc_file_name(size_t len, const char *suffix) argument
565 char *result = TMALLOC(char, len + strlen(suffix) + 1);
569 strcpy(result + len, suffix);
574 find_suffix(char *name, const char *suffix) argument
577 size_t slen = strlen(suffix);
581 if (strcmp(name, suffix) == 0)
593 char *suffix; local
595 suffix
[all...]
/freebsd-current/crypto/openssh/
H A Dlog.c337 do_log(LogLevel level, int force, const char *suffix, const char *fmt, argument
394 if (suffix != NULL) {
395 snprintf(fmtbuf, sizeof(fmtbuf), "%s: %s", msgbuf, suffix);
428 LogLevel level, const char *suffix, const char *fmt, ...)
433 sshlogv(file, func, line, showfunc, level, suffix, fmt, args);
439 LogLevel level, const char *suffix, const char *fmt, ...)
445 suffix, fmt, args);
452 LogLevel level, const char *suffix, const char *fmt, ...)
458 suffix, fmt, args);
465 LogLevel level, const char *suffix, cons
427 sshlog(const char *file, const char *func, int line, int showfunc, LogLevel level, const char *suffix, const char *fmt, ...) argument
438 sshlogdie(const char *file, const char *func, int line, int showfunc, LogLevel level, const char *suffix, const char *fmt, ...) argument
451 sshsigdie(const char *file, const char *func, int line, int showfunc, LogLevel level, const char *suffix, const char *fmt, ...) argument
464 sshlogv(const char *file, const char *func, int line, int showfunc, LogLevel level, const char *suffix, const char *fmt, va_list args) argument
[all...]
/freebsd-current/contrib/netbsd-tests/usr.bin/basename/
H A Dt_basename.sh45 atf_test_case suffix
48 atf_set "descr" "Checks removing of provided suffix"
61 atf_add_test_case suffix
/freebsd-current/contrib/sendmail/contrib/
H A Dcidrexpand167 my ($network, $len, $prefix, $suffix) = @_;
174 my $val = "$prefix$nl$suffix\n";
186 my ($network, $len, $prefix, $suffix) = @_;
192 print_expanded_v6network("::", 1, $prefix, $suffix);
193 print_expanded_v6network("8000::", 1, $prefix, $suffix);
202 my $val = "$prefix$nl$suffix\n";
/freebsd-current/contrib/googletest/googletest/test/
H A Dgtest_stress_test.cc57 std::string IdToKey(int id, const char* suffix) { argument
59 key << "key_" << id << "_" << suffix; local
70 const std::vector<TestProperty>& properties, int id, const char* suffix) {
71 TestPropertyKeyIs matches_key(IdToKey(id, suffix).c_str());
75 << "expecting " << suffix << " value for id " << id;
69 ExpectKeyAndValueWereRecordedForId( const std::vector<TestProperty>& properties, int id, const char* suffix) argument
/freebsd-current/crypto/openssl/tools/
H A Dc_rehash.in230 my $suffix = 0;
233 while(exists $hashlist{"$hash.$crlmark$suffix"}) {
235 if ($hashlist{"$hash.$crlmark$suffix"} eq $fprint) {
240 $suffix++;
242 $hash .= ".$crlmark$suffix";
/freebsd-current/contrib/xz/src/xz/
H A Dutil.c29 # define FORMAT_THOUSAND_SEP(prefix, suffix) prefix suffix
32 # define FORMAT_THOUSAND_SEP(prefix, suffix) ((thousand == WORKS) \
33 ? prefix "'" suffix \
34 : prefix suffix)
126 // Look for suffix. Originally this supported both base-2
130 // letter of the suffix.
148 message(V_ERROR, _("%s: Invalid multiplier suffix"),
227 static const char suffix[5][4] = { "B", "KiB", "MiB", "GiB", "TiB" }; local
228 my_snprintf(&pos, &left, " %s", suffix[uni
[all...]
/freebsd-current/sys/contrib/openzfs/contrib/pyzfs/libzfs_core/
H A D_nvlist.py127 _TypeInfo = namedtuple('_TypeInfo', ['suffix', 'ctype', 'is_array', 'convert'])
218 suffix = _prop_name_to_type_str.get(key, "uint64")
219 cfunc = getattr(_lib, "nvlist_add_%s_array" % (suffix,))
223 suffix = _type_to_suffix[_ffi.typeof(specimen)][True]
224 cfunc = getattr(_lib, "nvlist_add_%s_array" % (suffix,))
239 cfunc = getattr(_lib, "nvpair_value_%s" % (typeinfo.suffix,), None)
282 suffix = _prop_name_to_type_str.get(k, "uint64")
283 cfunc = getattr(_lib, "nvlist_add_%s" % (suffix,))
286 suffix = _type_to_suffix[_ffi.typeof(v)][False]
287 cfunc = getattr(_lib, "nvlist_add_%s" % (suffix,))
[all...]
/freebsd-current/tests/sys/cddl/zfs/bin/
H A Dmkfile.c63 char *suffix; local
71 length = strtoull(s, &suffix, 10);
73 switch (tolower(*suffix)) {

Completed in 305 milliseconds

1234567891011