Searched refs:suffix (Results 126 - 150 of 255) sorted by relevance

1234567891011

/freebsd-current/sys/contrib/openzfs/cmd/
H A Dzilstat.in97 suffix = [' ', 'K', 'M', 'G', 'T', 'P', 'E', 'Z']
117 return "%*.1f%s" % (sz - 1, num, suffix[index])
119 return "%*d%s" % (sz - 1, num, suffix[index])
H A Ddbufstat.in201 suffix = [' ', 'K', 'M', 'G', 'T', 'P', 'E', 'Z']
221 return "%*.1f%s" % (sz - 1, num, suffix[index])
223 return "%*d%s" % (sz - 1, num, suffix[index])
H A Darcstat.in299 suffix = [' ', 'K', 'M', 'G', 'T', 'P', 'E', 'Z']
320 return "%*.1f%s" % (sz - 1, num, suffix[index])
322 return "%*d%s" % (sz - 1, num, suffix[index])
/freebsd-current/contrib/llvm-project/clang/utils/TableGen/
H A DClangASTPropertiesEmitter.cpp41 /// The suffix on classes: Reader/Writer
359 StringRef suffix = info.ClassSuffix; local
363 Out << "template <class Property" << suffix << ">\n"
364 "class Abstract" << info.HierarchyName << suffix << " {\n"
366 " Property" << suffix << " &" << var << ";\n\n";
369 Out << " Abstract" << info.HierarchyName << suffix
370 << "(Property" << suffix << " &" << var << ") : "
/freebsd-current/contrib/llvm-project/lld/COFF/
H A DDriverUtils.cpp523 // Write the suffix.
524 auto *suffix = reinterpret_cast<object::WinResHeaderSuffix *>(buf); local
525 suffix->DataVersion = 0;
526 suffix->MemoryFlags = object::WIN_RES_PURE_MOVEABLE;
527 suffix->Language = SUBLANG_ENGLISH_US;
528 suffix->Version = 0;
529 suffix->Characteristics = 0;
645 // Strip any trailing stdcall suffix
/freebsd-current/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_lock.h915 #define KMP_BIND_USER_LOCK_TEMPLATE(nest, kind, suffix) \
918 kmp_user_lock_p, kmp_int32))__kmp_acquire##nest##kind##_##suffix; \
920 kmp_user_lock_p, kmp_int32))__kmp_release##nest##kind##_##suffix; \
922 kmp_user_lock_p, kmp_int32))__kmp_test##nest##kind##_##suffix; \
924 (void (*)(kmp_user_lock_p))__kmp_init##nest##kind##_##suffix; \
926 (void (*)(kmp_user_lock_p))__kmp_destroy##nest##kind##_##suffix; \
/freebsd-current/sys/contrib/openzfs/cmd/zpool/
H A Dzpool_vdev.c1340 * appear in any order but the d/s/c suffix is required.
1387 /* Expected non-zero value with c/d/s suffix */
1389 char suffix = tolower(*end); local
1391 (suffix != 'c' && suffix != 'd' && suffix != 's')) {
1398 if (suffix == 'c') {
1407 } else if (suffix == 'd') {
1409 } else if (suffix == 's') {
/freebsd-current/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_options.c749 } suffix[] = { local
772 for (i = 0; suffix[i].name != NULL; i++) {
773 if (strcasecmp(suffix[i].name, end) == 0) {
774 mul = suffix[i].mul;
779 if (suffix[i].name == NULL && *end != '\0' || val < 0)
/freebsd-current/libexec/tftpd/tests/
H A Dfunctional.c456 char suffix[] = {'\0', 'o', 'c', 't', 'e', 't', '\0'}; local
462 ATF_REQUIRE(pathlen + sizeof(suffix) < sizeof(command) - 2);
463 memmove(&command[2 + pathlen], suffix, sizeof(suffix));
469 send_bytes(command, 2 + pathlen + sizeof(suffix));
/freebsd-current/crypto/openssl/apps/lib/
H A Dapps.c1517 int save_serial(const char *serialfile, const char *suffix, const BIGNUM *serial, argument
1526 if (suffix == NULL)
1529 j = strlen(serialfile) + strlen(suffix) + 1;
1535 if (suffix == NULL)
1539 j = BIO_snprintf(buf[0], sizeof(buf[0]), "%s.%s", serialfile, suffix);
1541 j = BIO_snprintf(buf[0], sizeof(buf[0]), "%s-%s", serialfile, suffix);
1731 int save_index(const char *dbfile, const char *suffix, CA_DB *db) argument
1737 j = strlen(dbfile) + strlen(suffix);
1744 j = BIO_snprintf(buf[1], sizeof(buf[1]), "%s.attr.%s", dbfile, suffix);
1745 j = BIO_snprintf(buf[0], sizeof(buf[0]), "%s.%s", dbfile, suffix);
[all...]
/freebsd-current/crypto/openssl/apps/
H A Drehash.c213 const char *suffix = suffixes[type]; local
214 if (OPENSSL_strncasecmp(suffix, &filename[i], strlen(suffix)) == 0)
/freebsd-current/contrib/llvm-project/lld/ELF/
H A DSymbols.cpp55 const char *suffix = sym.getVersionSuffix(); local
56 if (*suffix == '@')
57 ret += suffix;
/freebsd-current/usr.sbin/newsyslog/
H A Dnewsyslog.c136 const char *suffix; /* Compression suffix */ member in struct:compress_types
149 .name = "none", .flag = "", .suffix = "",
153 .name = "gzip", .flag = "Z", .suffix = ".gz",
157 .name = "bzip2", .flag = "J", .suffix = ".bz2",
161 .name = "xz", .flag = "X", .suffix = ".xz",
165 .name = "zstd", .flag = "Y", .suffix = ".zst",
1657 if (strcmp(s, compress_type[c].suffix) == 0)
1807 compress_type[c].suffix);
1843 * Search for logfile and return its compression suffix (i
[all...]
/freebsd-current/contrib/libarchive/libarchive/
H A Darchive_util.c235 static const wchar_t suffix[] = L"XXXXXXXXXX"; local
314 archive_wstrcat(&temp_name, suffix);
316 xp = ep - wcslen(suffix);
/freebsd-current/contrib/bc/
H A Dconfigure.sh258 printf ' EXECSUFFIX The suffix to append to the executable names, used to not\n'
1155 suffix=" *"
1158 if [ "${ccbase%%$suffix}" != "$ccbase" ]; then
1160 cc="${ccbase%%$suffix}"
1182 suffix=" *"
1185 if [ "${ccbase%%$suffix}" != "$ccbase" ]; then
1187 cc="${ccbase%%$suffix}"
H A Dconfigure258 printf ' EXECSUFFIX The suffix to append to the executable names, used to not\n'
1155 suffix=" *"
1158 if [ "${ccbase%%$suffix}" != "$ccbase" ]; then
1160 cc="${ccbase%%$suffix}"
1182 suffix=" *"
1185 if [ "${ccbase%%$suffix}" != "$ccbase" ]; then
1187 cc="${ccbase%%$suffix}"
/freebsd-current/contrib/tcsh/
H A Dma.setp.c53 * If 'dosuffix' is true, the appropriate suffix will be added to
98 char *psuf; /* suffix for pathlist */
106 char *suffix; member in struct:__anon6211
262 pe->psuf = syspath[i].suffix;
458 if (sflag) { /* add suffix */
560 if (sflag) { /* append suffix */
/freebsd-current/contrib/llvm-project/llvm/lib/Support/
H A DTimer.cpp458 const char *suffix, double Value) {
464 OS << "\t\"time." << Name << '.' << R.Name << suffix
457 printJSONValue(raw_ostream &OS, const PrintRecord &R, const char *suffix, double Value) argument
/freebsd-current/crypto/openssl/apps/include/
H A Dapps.h227 int save_serial(const char *serialfile, const char *suffix,
235 int save_index(const char *dbfile, const char *suffix, CA_DB *db);
/freebsd-current/crypto/openssl/util/perl/TLSProxy/
H A DMessage.pm486 my $suffix = substr($recdata, $self->startoffset + $old_length);
488 $rec->decrypt_data($prefix.($msgdata).($suffix));
/freebsd-current/contrib/bmake/unit-tests/
H A Darchive.mk11 FILES= archive.mk archive-suffix.mk modmisc.mk ternary.mk varmisc.mk
/freebsd-current/contrib/flex/src/
H A Dmain.c321 char *suffix;
324 suffix = "cc";
326 suffix = "c";
329 prefix, suffix);
320 char *suffix; local
/freebsd-current/crypto/heimdal/lib/krb5/
H A Dconfig_file.c391 char suffix[] = ".plist"; local
392 if (len < sizeof(suffix))
394 if (strcasecmp(&fname[len - (sizeof(suffix) - 1)], suffix) != 0)
/freebsd-current/crypto/openssl/crypto/pem/
H A Dpem_lib.c32 int ossl_pem_check_suffix(const char *pem_str, const char *suffix);
1011 * "RSA PRIVATE KEY" and suffix = "PRIVATE KEY" the return value is 3 for the
1015 int ossl_pem_check_suffix(const char *pem_str, const char *suffix) argument
1018 int suffix_len = strlen(suffix);
1023 if (strcmp(p, suffix))
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Support/
H A DTimer.h249 const char *suffix, double Value);

Completed in 410 milliseconds

1234567891011