Searched refs:suffix (Results 76 - 100 of 265) sorted by relevance

1234567891011

/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/IntelJITEvents/
H A Dittnotify_config.h155 #define __ITT_BUILD_ASSERT(expr, suffix) do { \
156 static char __itt_build_check_##suffix[(expr) ? 1 : -1]; \
157 __itt_build_check_##suffix[0] = 0; \
159 #define _ITT_BUILD_ASSERT(expr, suffix) __ITT_BUILD_ASSERT((expr), suffix)
/freebsd-11-stable/contrib/binutils/gas/
H A Dexpr.c250 char *suffix = NULL;
289 /* In MRI mode, the number may have a suffix indicating the
292 for (suffix = input_line_pointer; ISALNUM (*suffix); suffix++)
294 if (*suffix == 'e' || *suffix == 'E')
298 if (suffix == input_line_pointer)
301 suffix = NULL;
305 c = *--suffix;
246 char *suffix = NULL; local
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dtree-dump.c794 dump_register (const char *suffix, const char *swtch, const char *glob,
814 extra_dump_files[this].suffix = suffix;
859 char suffix;
861 suffix = 't';
863 suffix = 'i';
865 suffix = 'r';
867 if (snprintf (dump_id, sizeof (dump_id), ".%03d%c", dfi->num, suffix) < 0)
871 return concat (dump_base_name, dump_id, dfi->suffix, NULL);
1036 if (dfi->suffix
793 dump_register(const char *suffix, const char *swtch, const char *glob, int flags, int letter) argument
858 char suffix; local
[all...]
H A Dgcc.c93 /* By default there is no special suffix for target executables. */
99 /* By default there is no special suffix for host executables. */
106 /* By default, the suffix for target object files is ".o". */
382 %B same as %b, but include the file suffix (text after the last period).
384 substitute a file name that has suffix SUFFIX and is chosen
393 to any appended suffix (which was therefore treated just like
408 the same suffix "space", so `%g.s ... %U.s ... %g.s ... %U.s'
412 without regard to any appended suffix.
437 Input files whose names have no recognized suffix are not compiled
440 %O substitutes the suffix fo
911 const char *suffix; /* Use this compiler for input files member in struct:compiler
1910 const char *suffix; /* suffix associated with the code. */ member in struct:temp_name
2049 char *suffix; local
2647 const char *suffix; member in struct:file_at_path_info
4899 const char *suffix = p; local
7029 bool suffix = false; local
[all...]
H A Dmklibgcc.in735 suffix=
737 suffix=`echo $dir | sed s,/,_,g`
739 echo extra$suffix: stmp-dirs
743 echo "all: extra$suffix"
748 echo "$libgcc_s_so: extra$suffix"
751 echo "$libunwind_so: extra$suffix"
/freebsd-11-stable/contrib/tnftp/src/
H A Dcomplete.c236 char suffix[2] = " "; local
239 suffix[0] = '/';
240 if (el_insertstr(el, suffix) == -1)
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DLanguage.cpp222 const char *suffix) {
224 s.Printf("%s%s%s", prefix, language_names[i].name, suffix);
424 std::string &suffix) {
221 PrintAllLanguages(Stream &s, const char *prefix, const char *suffix) argument
421 GetFormatterPrefixSuffix(ValueObject &valobj, ConstString type_hint, std::string &prefix, std::string &suffix) argument
/freebsd-11-stable/contrib/binutils/bfd/
H A Dppcboot.c266 mangle_name (abfd, suffix)
268 char *suffix;
275 + strlen (suffix)
282 sprintf (buf, "_ppcboot_%s_%s", bfd_get_filename (abfd), suffix);
H A Dmerge.c47 /* Entry this is a suffix of (if alignment is 0). */
48 struct sec_merge_hash_entry *suffix; member in union:sec_merge_hash_entry::__anon249
121 ret->u.suffix = NULL;
580 /* B cannot be a suffix of A unless A is equal to B, which is guaranteed
639 cmp->u.suffix = e;
690 e->secinfo = e->u.suffix->secinfo;
691 e->alignment = e->u.suffix->alignment;
692 e->u.index = e->u.suffix->u.index + (e->u.suffix->len - e->len);
/freebsd-11-stable/usr.bin/whois/
H A Dwhois.c95 const char *suffix, *server; member in struct:__anon13846
246 for (i = 0; whoiswhere[i].suffix != NULL; i++) {
247 size_t suffix_len = strlen(whoiswhere[i].suffix);
250 whoiswhere[i].suffix) == 0)
/freebsd-11-stable/usr.sbin/asf/
H A Dasf.c200 /* Have to fts once per suffix to find preferred suffixes first */
202 sl = *sfx ? strlen(*sfx) : 0; /* current suffix length */
217 /* non-blank suffix; see if file name has it */
220 continue; /* no such suffix */
223 p[i] = '\0'; /* remove suffix in the copy */
250 "%s [-afKksVx] [-M core] [-N system] [-o outfile] [-X suffix]\n"
261 "\t-X\tappend suffix to list of possible module file name suffixes\n"
397 /* prepare basename of KLD, w/o suffix */
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/
H A Dstdint.h283 #define __int_c(v, suffix) __int_c_join(v, suffix)
284 #define __uint_c(v, suffix) __int_c_join(v##U, suffix)
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DObjCLanguage.h118 std::string &suffix) override;
/freebsd-11-stable/bin/ls/tests/
H A Dls_tests.sh553 suffix=B
556 suffix=K
559 suffix=M
562 suffix=G
565 suffix=T
568 suffix=P
727 suffix=
728 # If path is not a symlink and is a directory, then the suffix
731 suffix=/
733 atf_check -e empty -o match:"$path${suffix}"
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DLanguage.h202 // prefix/suffix information in language-specific ways
206 std::string &suffix);
245 const char *suffix);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/interception/
H A Dinterception.h240 #define INTERCEPTOR_ZZZ(suffix, ret_type, func, ...) \
241 extern "C" ret_type func(__VA_ARGS__) suffix; \
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DStream.h417 /// suffix strings.
431 /// \param[in] suffix
432 /// A suffix C string. If nullptr, no suffix will be output.
434 const char *prefix = nullptr, const char *suffix = nullptr);
439 /// optional \a prefix and \a suffix strings.
456 /// \param[in] suffix
457 /// A suffix C string. If nullptr, no suffix will be output.
460 const char *suffix
[all...]
/freebsd-11-stable/gnu/usr.bin/rcs/lib/
H A Drcsfnms.c210 char const *suffix, *comlead; member in struct:compair
256 { 0 , "# " } /* default for unknown suffix; must be last */
364 suffix_matches(suffix, pattern)
365 register char const *suffix, *pattern;
371 switch (*suffix++ - (c = *pattern++)) {
397 /* guess the comment leader from the suffix*/
399 if (Suffix==workname) Suffix= ""; /* empty suffix; will get default*/
400 for (i=0; !suffix_matches(Suffix,comtable[i].suffix); i++)
530 /* Yield the length of X, an RCS pathname suffix. */
549 /* Yield the suffix o
[all...]
/freebsd-11-stable/sys/cddl/dev/profile/
H A Dprofile.c372 char *name, *suffix = NULL; local
449 * We need to start before any time suffix.
454 suffix = &name[j];
457 ASSERT(suffix != NULL);
474 * Look-up the suffix to determine the multiplier.
477 if (strcasecmp(suffixes[i].name, suffix) == 0) {
483 if (suffixes[i].name == NULL && *suffix != '\0')
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/thirdparty/ittnotify/
H A Dittnotify_config.h203 #define __ITT_BUILD_ASSERT(expr, suffix) do { \
204 static char __itt_build_check_##suffix[(expr) ? 1 : -1]; \
205 __itt_build_check_##suffix[0] = 0; \
207 #define _ITT_BUILD_ASSERT(expr, suffix) __ITT_BUILD_ASSERT((expr), suffix)
/freebsd-11-stable/contrib/binutils/gas/config/
H A Dtc-arc.c222 /* Only put the first entry of each equivalently named suffix in the
742 as_bad ("invalid suffix class");
751 as_bad ("expected comma after suffix class");
797 as_bad ("unknown suffix class");
1578 const struct arc_operand_value *suffix = NULL;
1602 for "%q" (ie: a condition code suffix). */
1610 /* Pick the suffix out and look it up via the hash table. */
1623 the table so "lle" isn't an illegal suffix. */
1636 /* Insert the suffix's value into the insn. */
1644 suffix
1571 const struct arc_operand_value *suffix = NULL; local
[all...]
/freebsd-11-stable/contrib/mdocml/
H A Dmdoc_markdown.c35 const char *suffix; /* post-node string constant */ member in struct:md_act
731 const char *suffix; local
733 if ((suffix = md_acts[n->tok].suffix) != NULL) {
735 md_rawword(suffix);
736 if (*suffix == '`')
756 const char *suffix; local
758 if ((suffix = md_acts[n->tok].suffix) != NULL) {
760 md_word(suffix);
[all...]
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Ddsl_prop.c948 const char *suffix; local
952 suffix = strchr(za.za_name, '$');
954 if (suffix == NULL) {
964 } else if (strcmp(suffix, ZPROP_INHERIT_SUFFIX) == 0) {
967 } else if (strcmp(suffix, ZPROP_RECVD_SUFFIX) == 0) {
971 (void) strncpy(buf, za.za_name, (suffix - za.za_name));
972 buf[suffix - za.za_name] = '\0';
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCheckSecuritySyntaxOnly.cpp623 // Count the number of X's, taking into account a possible cutoff suffix.
628 // Take into account the suffix.
629 unsigned suffix = 0; local
639 suffix = (unsigned) Result.getZExtValue();
640 n = (n > suffix) ? n - suffix : 0;
659 if (suffix) {
660 out << ", " << suffix << " character"; local
661 if (suffix > 1)
663 out << " used as a suffix";
[all...]
/freebsd-11-stable/contrib/binutils/ld/
H A Dldfile.c305 const char *suffix)
353 + strlen (suffix)
358 lib, entry->filename, arch, suffix);
398 /* Try to open <filename><suffix> or lib<filename><suffix>.a */
302 ldfile_open_file_search(const char *arch, lang_input_statement_type *entry, const char *lib, const char *suffix) argument

Completed in 327 milliseconds

1234567891011