Searched refs:suffix (Results 101 - 125 of 255) sorted by relevance

1234567891011

/freebsd-current/contrib/ncurses/progs/
H A Dtic.c311 static char *namebuf, *suffix; local
317 if ((suffix = typeRealloc(char, have, suffix)) == NULL)
318 failed("put_translate suffix");
335 suffix[0] = '\0';
339 _nc_STRCPY(suffix, up, have);
346 (void) fputs(suffix, stdout);
352 (void) fputs(suffix, stdout);
581 char suffix[] = DBM_SUFFIX; local
582 size_t need = strlen(nominal) + sizeof(suffix);
1368 size_t suffix; local
[all...]
H A Dtoe.c243 static const char suffix[] = DBM_SUFFIX; local
246 size_t lens = sizeof(suffix) - 1;
252 && !strcmp(src + size - lens, suffix)) {
256 (int) (PATH_MAX - sizeof(suffix)),
257 src, suffix);
/freebsd-current/sys/contrib/zstd/programs/
H A Dfileio.c1382 DISPLAYLEVEL(4, "Decompression will require %.*f%s of memory\n", windowSize.precision, windowSize.value, windowSize.suffix);
1435 buffered_hrs.precision, buffered_hrs.value, buffered_hrs.suffix,
1436 consumed_hrs.precision, consumed_hrs.value, consumed_hrs.suffix,
1437 produced_hrs.precision, produced_hrs.value, produced_hrs.suffix,
1454 DISPLAYLEVEL(1, "Read:%6.*f%4s ", consumed_hrs.precision, consumed_hrs.value, consumed_hrs.suffix);
1456 DISPLAYLEVEL(2, "/%6.*f%4s", file_hrs.precision, file_hrs.value, file_hrs.suffix);
1632 hr_isize.precision, hr_isize.value, hr_isize.suffix,
1633 hr_osize.precision, hr_osize.value, hr_osize.suffix,
1639 hr_isize.precision, hr_isize.value, hr_isize.suffix,
1640 hr_osize.precision, hr_osize.value, hr_osize.suffix,
1862 FIO_determineCompressedName(const char* srcFileName, const char* outDirName, const char* suffix) argument
1913 FIO_compressMultipleFilenames(FIO_ctx_t* const fCtx, FIO_prefs_t* const prefs, const char** inFileNamesTable, const char* outMirroredRootDirName, const char* outDirName, const char* outFileName, const char* suffix, const char* dictFileName, int compressionLevel, ZSTD_compressionParameters comprParams) argument
[all...]
H A Dutil.c320 hrs.suffix = " MiB";
326 hrs.suffix = " B";
333 hrs.suffix = " EiB";
336 hrs.suffix = " PiB";
339 hrs.suffix = " TiB";
342 hrs.suffix = " GiB";
345 hrs.suffix = " MiB";
348 hrs.suffix = " KiB";
351 hrs.suffix = " B";
H A Dfileio.h146 const char* outFileName, const char* suffix,
H A Dutil.h186 * precision, value, suffix order to a "%.*f%s" format string.
194 const char* suffix; member in struct:__anon341
/freebsd-current/tests/sys/cddl/zfs/tests/rsend/
H A Drsend.kshlib310 # Get all the sub-datasets of give dataset with specific suffix
318 typeset suffix=$2
321 | $GREP "$suffix$")
/freebsd-current/sbin/nvmecontrol/modules/wdc/
H A Dwdc.c116 wdc_append_serial_name(int fd, char *buf, size_t len, const char *suffix) argument
131 snprintf(buf, len, "_%s_%s.bin", sn, suffix);
159 wdc_do_dump_e6(int fd, char *tmpl, const char *suffix, uint32_t opcode, argument
170 wdc_append_serial_name(fd, tmpl, MAXPATHLEN, suffix);
203 errx(EX_PROTOCOL, "No data for %s", suffix);
320 const char *suffix, uint32_t opcode, int len_off)
329 wdc_append_serial_name(fd, tmpl, MAXPATHLEN, suffix);
332 errx(EX_PROTOCOL, "No data for %s", suffix);
319 wdc_do_dump_dui(int fd, char *tmpl, uint8_t data_area, const char *suffix, uint32_t opcode, int len_off) argument
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Target/
H A DLanguage.h217 /// values of said types by appending proper prefix/suffix information in
218 /// language-specific ways. This function returns that prefix and suffix.
221 /// A StringRef used to determine what the prefix and suffix should be. It
223 /// the prefix and/or suffix may vary.
227 /// second being the suffix. They may be empty.
291 const char *suffix);
298 /// \param[in] suffix String that is appended to the language type.
301 llvm::StringRef suffix);
/freebsd-current/contrib/llvm-project/compiler-rt/lib/interception/
H A Dinterception.h314 #define INTERCEPTOR_ZZZ(suffix, ret_type, func, ...) \
315 extern "C" ret_type func(__VA_ARGS__) suffix; \
/freebsd-current/contrib/llvm-project/lld/COFF/
H A DMinGW.cpp150 for (StringRef suffix : excludeSymbolSuffixes.keys())
151 if (sym->getName().ends_with(suffix))
/freebsd-current/sys/cddl/dev/profile/
H A Dprofile.c325 char *name, *suffix = NULL; local
402 * We need to start before any time suffix.
407 suffix = &name[j];
410 ASSERT(suffix != NULL);
427 * Look-up the suffix to determine the multiplier.
430 if (strcasecmp(suffixes[i].name, suffix) == 0) {
436 if (suffixes[i].name == NULL && *suffix != '\0')
/freebsd-current/contrib/llvm-project/openmp/runtime/src/thirdparty/ittnotify/
H A Dittnotify_config.h206 #define __ITT_BUILD_ASSERT(expr, suffix) \
208 static char __itt_build_check_##suffix[(expr) ? 1 : -1]; \
209 __itt_build_check_##suffix[0] = 0; \
211 #define _ITT_BUILD_ASSERT(expr, suffix) __ITT_BUILD_ASSERT((expr), suffix)
/freebsd-current/contrib/mandoc/
H A Dmdoc_markdown.c40 const char *suffix; /* post-node string constant */ member in struct:md_act
762 const char *suffix; local
764 if ((suffix = md_act(n->tok)->suffix) != NULL) {
766 md_rawword(suffix);
767 if (*suffix == '`')
787 const char *suffix; local
789 if ((suffix = md_act(n->tok)->suffix) != NULL) {
791 md_word(suffix);
[all...]
/freebsd-current/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCheckSecuritySyntaxOnly.cpp621 // Count the number of X's, taking into account a possible cutoff suffix.
626 // Take into account the suffix.
627 unsigned suffix = 0; local
637 suffix = (unsigned) Result.getZExtValue();
638 n = (n > suffix) ? n - suffix : 0;
657 if (suffix) {
658 out << ", " << suffix << " character"; local
659 if (suffix > 1)
661 out << " used as a suffix";
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp1551 std::string &suffix, char &quote_char) {
1553 suffix.clear();
1595 suffix.assign(command.begin() + pos, command.end());
2316 llvm::StringRef suffix = {}) {
2318 if (!suffix.empty()) {
2320 init_file_name.append(suffix.str());
3403 std::string suffix; local
3404 ExtractCommand(scratch_command, next_word, suffix, quote_char);
3444 next_word.c_str(), suffix.c_str(),
3448 suffix
1550 ExtractCommand(std::string &command_string, std::string &command, std::string &suffix, char &quote_char) argument
[all...]
/freebsd-current/contrib/nvi/common/
H A Dmsg.c47 size_t suffix; /* Suffix string length. */ member in struct:__anon5533
221 str[soff].suffix = p - u;
256 str[cnt2].skip, str[cnt2].suffix);
257 s_rbp += str[cnt2].prefix + str[cnt2].suffix;
/freebsd-current/crypto/openssl/include/openssl/
H A Dtrace.h81 * Attach a prefix and a suffix to the given |category|, to be printed at the
84 * If a null pointer is passed as argument, the existing prefix or suffix is
90 int OSSL_trace_set_suffix(int category, const char *suffix);
/freebsd-current/contrib/bmake/unit-tests/
H A Dvarname-dot-suffixes.mk4 # have been registered for use in suffix transformation rules. Suffixes are
11 # In the beginning, there are no suffix rules, the expression is thus empty.
/freebsd-current/contrib/ncurses/ncurses/tinfo/
H A Dwrite_entry.c163 static const char suffix[] = DBM_SUFFIX; local
165 size_t need = strlen(suffix);
166 if (have > need && strcmp(dst + (int) (have - need), suffix)) {
168 _nc_STRCAT(dst, suffix, limit);
/freebsd-current/contrib/atf/atf-c/
H A Dutils.c54 * \param suffix Either "out" or "err".
57 init_out_filename(atf_dynstr_t *name, const pid_t pid, const char *suffix, argument
63 (int)pid, suffix);
/freebsd-current/sys/contrib/openzfs/module/zfs/
H A Ddsl_prop.c1074 const char *suffix; local
1078 suffix = strchr(za.za_name, '$');
1080 if (suffix == NULL) {
1098 } else if (strcmp(suffix, ZPROP_INHERIT_SUFFIX) == 0) {
1101 } else if (strcmp(suffix, ZPROP_RECVD_SUFFIX) == 0) {
1106 MIN(sizeof (buf), suffix - za.za_name + 1));
1130 } else if (strcmp(suffix, ZPROP_IUV_SUFFIX) == 0) {
1132 MIN(sizeof (buf), suffix - za.za_name + 1));
/freebsd-current/contrib/bmake/mk/
H A Djobs.mk83 # if the factor is floating point, the C suffix isn't needed
H A Dauto.dep.mk29 # However suffix rules do not work with something like .o.d so we
/freebsd-current/contrib/bmake/
H A Dsuff.c72 * Maintain suffix lists and find implicit dependents using suffix
81 * Extend the search path of each suffix to include the
90 * Suff_AddSuffix Add the passed string as another known suffix.
92 * Suff_GetPath Return the search path for the given suffix.
95 * Mark the given suffix as denoting an include file.
97 * Suff_AddLib Mark the given suffix as denoting a library.
100 * Add another transformation to the suffix graph.
102 * Suff_SetNull Define the suffix to consider the suffix o
[all...]

Completed in 473 milliseconds

1234567891011