Home
last modified time | relevance | path

Searched refs:suffix (Results 1 – 25 of 488) sorted by relevance

12345678910>>...20

/freebsd-11-stable/sys/contrib/octeon-sdk/
HDocteon-model.c154 const char * suffix; in octeon_model_get_string_buffer() local
192 suffix = "CP"; in octeon_model_get_string_buffer()
194 suffix = "SCP"; in octeon_model_get_string_buffer()
197 suffix = "EXP"; in octeon_model_get_string_buffer()
199 suffix = "NSP"; in octeon_model_get_string_buffer()
282 if ((num_cores == 4) && fus3.cn58xx.crip_1024k && !strncmp(suffix, "CP", 2)) in octeon_model_get_string_buffer()
305 suffix = "SP"; in octeon_model_get_string_buffer()
307 suffix = "SSP"; in octeon_model_get_string_buffer()
312 suffix = "CP"; in octeon_model_get_string_buffer()
315 suffix = "NSP"; in octeon_model_get_string_buffer()
[all …]
/freebsd-11-stable/contrib/ipfilter/lib/
HDprintaddr.c17 char *suffix; local
22 suffix = "bcast";
28 suffix = NULL;
32 suffix = "net";
36 suffix = "netmasked";
40 suffix = "peer";
44 suffix = NULL;
51 suffix = NULL;
57 suffix = NULL;
63 suffix = NULL;
[all …]
/freebsd-11-stable/contrib/bmake/unit-tests/
HDposix1.exp28 Target with suffix transformations
32 Implied source with suffix transformations
36 Suffixless target with suffix transformations
40 Out-of-date dependencies with suffix transformations
44 Member with suffix transformations
68 Target with suffix transformations
72 Implied source with suffix transformations
76 Suffixless target with suffix transformations
80 Out-of-date dependencies with suffix transformations
84 Member with suffix transformations
[all …]
/freebsd-11-stable/contrib/xz/src/xz/
HDsuffix.c87 test_suffix(const char *suffix, const char *src_name, size_t src_len) in test_suffix() argument
89 const size_t suffix_len = strlen(suffix); in test_suffix()
98 if (strcmp(suffix, src_name + src_len - suffix_len) == 0) in test_suffix()
183 msg_suffix(const char *src_name, const char *suffix) in msg_suffix() argument
186 src_name, suffix); in msg_suffix()
264 const char *suffix = custom_suffix != NULL in compressed_name() local
266 size_t suffix_len = strlen(suffix); in compressed_name()
291 && suffix[0] == '.') in compressed_name()
306 suffix = tar_suffixes[format]; in compressed_name()
323 suffix = "-"; in compressed_name()
[all …]
/freebsd-11-stable/usr.bin/basename/
HDbasename.c62 char *p, *suffix; in main() local
72 suffix = NULL; in main()
81 suffix = optarg; in main()
99 if ((suffix == NULL && !aflag) && argc == 2) { in main()
100 suffix = argv[1]; in main()
103 if (suffix != NULL) in main()
104 suffixlen = strlen(suffix); in main()
108 stripsuffix(p, suffix, suffixlen); in main()
116 stripsuffix(char *p, const char *suffix, size_t suffixlen) in stripsuffix() argument
123 strcmp(suffix, q) == 0) { in stripsuffix()
/freebsd-11-stable/contrib/ncurses/
HDmk-1st.awk70 return sprintf("%s%s%s", prefix, a_name, suffix)
75 result = sprintf("%s%s%s.a", prefix, a_name, suffix);
84 result = sprintf("%s%s$(ABI_VERSION)%s", "cyg", a_name, suffix);
86 result = sprintf("%s%s$(ABI_VERSION)%s", "msys-", a_name, suffix);
88 result = sprintf("%s%s$(ABI_VERSION)%s", prefix, a_name, suffix);
90 result = sprintf("%s%s.$(ABI_VERSION)%s", prefix, a_name, suffix);
99 result = sprintf("%s%s$(REL_VERSION)%s", "cyg", a_name, suffix);
101 result = sprintf("%s%s$(ABI_VERSION)%s", "msys-", a_name, suffix);
103 result = sprintf("%s%s$(REL_VERSION)%s", prefix, a_name, suffix);
105 result = sprintf("%s%s.$(REL_VERSION)%s", prefix, a_name, suffix);
[all …]
HDmk-2nd.awk96 suffix=".cc"
100 suffix=".c"
103 printf "../%s/%s$o :\t%s/%s%s", model, $1, $3, $1, suffix
130 printf "../%s/%s%s%s", name, dir, $1, suffix
132 printf "%s/%s%s", $3, $1, suffix
/freebsd-11-stable/contrib/gdb/gdb/
HDada-exp.y808 const char* suffix; local
833 suffix = strstr (expr, "___XE");
834 if (suffix == NULL)
837 name = (char*) malloc (suffix - expr + 1);
841 strncpy (name, expr, suffix-expr);
842 name[suffix-expr] = '\000';
850 suffix += 5;
852 while (*suffix == 'X')
854 suffix += 1;
856 switch (*suffix) {
[all …]
HDada-exp.c2479 const char* suffix; local
2504 suffix = strstr (expr, "___XE");
2505 if (suffix == NULL)
2508 name = (char*) xmalloc (suffix - expr + 1);
2512 strncpy (name, expr, suffix-expr);
2513 name[suffix-expr] = '\000';
2521 suffix += 5;
2523 while (*suffix == 'X')
2525 suffix += 1;
2527 switch (*suffix) {
[all …]
/freebsd-11-stable/contrib/libarchive/tar/
HDcreation_set.c49 const char *suffix; member
54 get_suffix_code(const struct suffix_code_t *tbl, const char *suffix) in get_suffix_code() argument
58 if (suffix == NULL) in get_suffix_code()
60 for (i = 0; tbl[i].suffix != NULL; i++) { in get_suffix_code()
61 if (strcmp(tbl[i].suffix, suffix) == 0) in get_suffix_code()
68 get_filter_code(const char *suffix) in get_filter_code() argument
87 return get_suffix_code(filters, suffix); in get_filter_code()
91 get_format_code(const char *suffix) in get_format_code() argument
108 return get_suffix_code(formats, suffix); in get_format_code()
112 decompose_alias(const char *suffix) in decompose_alias() argument
[all …]
/freebsd-11-stable/contrib/byacc/
HDmain.c404 #define CREATE_FILE_NAME(dest, suffix) \ argument
405 dest = alloc_file_name(len, suffix)
408 alloc_file_name(size_t len, const char *suffix) in alloc_file_name() argument
410 char *result = TMALLOC(char, len + strlen(suffix) + 1); in alloc_file_name()
414 strcpy(result + len, suffix); in alloc_file_name()
419 find_suffix(char *name, const char *suffix) in find_suffix() argument
422 size_t slen = strlen(suffix); in find_suffix()
426 if (strcmp(name, suffix) == 0) in find_suffix()
438 char *suffix; in create_file_names() local
440 suffix = NULL; in create_file_names()
[all …]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
HDCocoa.cpp298 std::string prefix, suffix; in NSNumber_FormatChar() local
301 suffix)) { in NSNumber_FormatChar()
303 suffix.clear(); in NSNumber_FormatChar()
307 stream.Printf("%s%hhd%s", prefix.c_str(), value, suffix.c_str()); in NSNumber_FormatChar()
314 std::string prefix, suffix; in NSNumber_FormatShort() local
317 suffix)) { in NSNumber_FormatShort()
319 suffix.clear(); in NSNumber_FormatShort()
323 stream.Printf("%s%hd%s", prefix.c_str(), value, suffix.c_str()); in NSNumber_FormatShort()
330 std::string prefix, suffix; in NSNumber_FormatInt() local
333 suffix)) { in NSNumber_FormatInt()
[all …]
HDCF.cpp96 std::string prefix, suffix; in CFBagSummaryProvider() local
99 suffix)) { in CFBagSummaryProvider()
101 suffix.clear(); in CFBagSummaryProvider()
106 (count == 1 ? "" : "s"), suffix.c_str()); in CFBagSummaryProvider()
283 std::string prefix, suffix; in CFBinaryHeapSummaryProvider() local
286 suffix)) { in CFBinaryHeapSummaryProvider()
288 suffix.clear(); in CFBinaryHeapSummaryProvider()
293 (count == 1 ? "" : "s"), suffix.c_str()); in CFBinaryHeapSummaryProvider()
/freebsd-11-stable/contrib/sendmail/contrib/
HDcidrexpand151 my ($network, $len, $prefix, $suffix) = @_;
157 print "$prefix$nl$suffix\n";
163 my ($network, $len, $prefix, $suffix) = @_;
169 print_expanded_v6network("::", 1, $prefix, $suffix);
170 print_expanded_v6network("8000::", 1, $prefix, $suffix);
178 print "$prefix$nl$suffix\n";
/freebsd-11-stable/usr.sbin/certctl/
HDcertctl.sh78 local suffix
89 suffix=$(get_decimal "$CERTDESTDIR" "$hash")
90 [ $VERBOSE -gt 0 ] && echo "Adding $hash.$suffix to trust store"
92 install ${INSTALLFLAGS} -lrs $(realpath "$1") "$CERTDESTDIR/$hash.$suffix"
98 local suffix
104 suffix=$(get_decimal "$BLACKLISTDESTDIR" "$hash")
105 filename="$hash.$suffix"
109 suffix=$(get_decimal "$BLACKLISTDESTDIR" "$hash")
110 filename="$hash.$suffix"
/freebsd-11-stable/crypto/heimdal/lib/roken/
HDrtbl.c51 char *suffix; member
113 free (c->suffix); in rtbl_destroy()
146 col->suffix = NULL; in rtbl_add_column_by_id()
237 const char *prefix, const char *suffix) in rtbl_set_column_affix_by_id() argument
253 if (c->suffix) in rtbl_set_column_affix_by_id()
254 free (c->suffix); in rtbl_set_column_affix_by_id()
255 if(suffix == NULL) in rtbl_set_column_affix_by_id()
256 c->suffix = NULL; in rtbl_set_column_affix_by_id()
258 c->suffix = strdup (suffix); in rtbl_set_column_affix_by_id()
259 if (c->suffix == NULL) in rtbl_set_column_affix_by_id()
[all …]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
HDARMInstrMVE.td315 // The suffix used in assembly language on an instruction operating
321 // The suffix used on an instruction that mentions the whole type.
324 // The letter part of the suffix only.
367 // of input operands that provides the VPT suffix (none, T or E) and
370 string suffix, string ops, vpred_ops vpred, string cstr,
373 // If the instruction has a suffix, like vadd.f32, then the
374 // VPT predication suffix goes before the dot, so the full
377 !if(!eq(suffix, ""), "", !strconcat(".", suffix))),
384 string suffix, string ops, vpred_ops vpred, string cstr,
386 : MVE_p<oops, iops, itin, iname, suffix, ops, vpred, cstr, pattern> {
[all …]
/freebsd-11-stable/contrib/libxo/libxo/
HDxo_humanize.h64 const char *suffix, int scale, int flags) in xo_humanize_number() argument
80 assert(suffix != NULL); in xo_humanize_number()
109 if (buf == NULL || suffix == NULL) in xo_humanize_number()
129 baselen += strlen(suffix); in xo_humanize_number()
160 sep, SCALE2PREFIX(i), suffix); in xo_humanize_number()
166 sep, SCALE2PREFIX(i), suffix); in xo_humanize_number()
/freebsd-11-stable/usr.bin/makewhatis/
HDmakewhatis.c60 char * suffix; member
137 free(info->suffix); in free_page_info()
151 char *suffix; in new_page_info() local
158 suffix = &dirent->d_name[basename_length]; in new_page_info()
161 suffix -= 3; in new_page_info()
162 *suffix = '\0'; in new_page_info()
165 if (--suffix == dirent->d_name || !isalnum(*suffix)) { in new_page_info()
166 if (*suffix == '.') in new_page_info()
175 *suffix++ = '\0'; in new_page_info()
177 info->suffix = strdup(suffix); in new_page_info()
[all …]
/freebsd-11-stable/contrib/groff/tmac/
HDhyphenex.pl57 foreach $suffix (@suffix_list) {
58 print " $field[2]$suffix\n";
64 foreach $suffix (@suffix_list) {
65 print " $field[2]$suffix\n";
/freebsd-11-stable/contrib/gcclibs/libiberty/
HDmake-temp-file.c148 make_temp_file (const char *suffix) in make_temp_file() argument
155 if (suffix == 0) in make_temp_file()
156 suffix = ""; in make_temp_file()
159 suffix_len = strlen (suffix); in make_temp_file()
166 strcpy (temp_filename + base_len + TEMP_FILE_LEN, suffix); in make_temp_file()
/freebsd-11-stable/contrib/binutils/libiberty/
HDmake-temp-file.c148 make_temp_file (const char *suffix) in make_temp_file() argument
155 if (suffix == 0) in make_temp_file()
156 suffix = ""; in make_temp_file()
159 suffix_len = strlen (suffix); in make_temp_file()
166 strcpy (temp_filename + base_len + TEMP_FILE_LEN, suffix); in make_temp_file()
/freebsd-11-stable/contrib/tcsh/
HDtw.color.c45 #define VAR(suffix,variable,defaultcolor) \ argument
47 suffix, variable, { defaultcolor, sizeof(defaultcolor) - 1 }, \
53 const char suffix; member
422 print_color(const Char *fname, size_t len, Char suffix) in print_color() argument
429 switch (suffix) { in print_color()
440 if (variables[i].suffix != NOS && in print_color()
441 (Char)variables[i].suffix == suffix) { in print_color()
467 print_with_color(const Char *filename, size_t len, Char suffix) in print_with_color() argument
472 print_color(filename, len, suffix); in print_with_color()
484 xputwchar(suffix); in print_with_color()
/freebsd-11-stable/contrib/file/
HDinstall-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-11-stable/lib/libutil/
HDhumanize_number.c50 const char *suffix, int scale, int flags) in humanize_number() argument
63 if (buf == NULL || suffix == NULL) in humanize_number()
128 baselen += strlen(suffix); in humanize_number()
173 sep, SCALE2PREFIX(i), suffix); in humanize_number()
177 sep, SCALE2PREFIX(i), suffix); in humanize_number()

12345678910>>...20