HomeSort by: relevance | last modified time | path
    Searched refs:suffixes (Results 1 - 25 of 70) sorted by relevancy

1 2 3

  /src/usr.bin/make/unit-tests/
deptgt-suffixes.exp 0 #*** Suffixes:
30 : Making deptgt-suffixes.src-left out of nothing.
31 : Making deptgt-suffixes.tgt-right from deptgt-suffixes.src-left.
32 : Making deptgt-suffixes.src-right out of nothing.
33 : Making deptgt-suffixes.tgt-left from deptgt-suffixes.src-right.
varname-dot-suffixes.mk 1 # $NetBSD: varname-dot-suffixes.mk,v 1.5 2023/12/20 09:03:09 rillig Exp $
3 # Tests for the special "variable" .SUFFIXES, which lists the suffixes that
4 # have been registered for use in suffix transformation rules. Suffixes are
7 # The name '.SUFFIXES' does not refer to a real variable, instead it can be
8 # used as a starting "variable name" for expressions like ${.SUFFIXES} or
9 # ${.SUFFIXES:M*o}.
12 .if ${.SUFFIXES} != ""
15 # There is no actual variable named '.SUFFIXES', it is all made up.
16 .if defined(.SUFFIXES)
    [all...]
suff-main-several.exp 8 Parsing suff-main-several.mk:19: .SUFFIXES: .1 .2 .3 .4
9 ParseDependency(.SUFFIXES: .1 .2 .3 .4)
29 Parsing suff-main-several.mk:24: .SUFFIXES:
30 ParseDependency(.SUFFIXES:)
31 Clearing all suffixes
32 Parsing suff-main-several.mk:32: .SUFFIXES: .4 .3 .2 .1
33 ParseDependency(.SUFFIXES: .4 .3 .2 .1)
38 Parsing suff-main-several.mk:33: .SUFFIXES:
39 ParseDependency(.SUFFIXES:)
40 Clearing all suffixes
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
gencfn-macros.cc 84 suffixes in null-terminated list SUFFIXES. */
87 is_group (string_set *builtins, const char *name, const char *const *suffixes)
89 for (unsigned int i = 0; suffixes[i]; ++i)
90 if (!builtins->contains (ACONCAT (("BUILT_IN_", name, suffixes[i], NULL))))
96 null-terminated list of suffixes in SUFFIXES. INTERNAL_P says whether
104 const char *const *suffixes, const char *floatn)
109 for (unsigned int i = 0; suffixes[i]; ++i)
111 internal_p || i > 0 ? ":" : "", name, suffixes[i])
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
gencfn-macros.cc 84 suffixes in null-terminated list SUFFIXES. */
87 is_group (string_set *builtins, const char *name, const char *const *suffixes)
89 for (unsigned int i = 0; suffixes[i]; ++i)
90 if (!builtins->contains (ACONCAT (("BUILT_IN_", name, suffixes[i], NULL))))
96 null-terminated list of suffixes in SUFFIXES. INTERNAL_P says whether
104 const char *const *suffixes, const char *floatn)
109 for (unsigned int i = 0; suffixes[i]; ++i)
111 internal_p || i > 0 ? ":" : "", name, suffixes[i])
    [all...]
  /src/external/apache2/llvm/dist/libcxx/benchmarks/
lit.cfg.py 16 config.suffixes = []
  /src/external/gpl2/gmake/dist/
rule.h 26 char **suffixes; /* Suffixes (after `%') of each target. */ member in struct:rule
rule.c 54 /* Pointer to structure for the file .SUFFIXES
55 whose dependencies are the suffixes to be searched. */
215 All rules for the suffixes on the .SUFFIXES list
226 /* Compute maximum length of all the suffixes. */
371 r->suffixes = (char **) xmalloc (2 * sizeof (char *));
375 r->suffixes[1] = 0;
382 r->suffixes[0] = find_percent (r->targets[0]);
383 if (r->suffixes[0] == 0)
387 ++r->suffixes[0]
    [all...]
implicit.c 328 char *suffix = rule->suffixes[i];
469 + (rule->suffixes[matches[i]] - rule->targets[matches[i]]) - 1;
957 rule->suffixes[i] - rule->targets[i] - 1);
958 p += rule->suffixes[i] - rule->targets[i] - 1;
961 bcopy (rule->suffixes[i], p,
962 rule->lens[i] - (rule->suffixes[i] - rule->targets[i]) + 1);
  /src/external/public-domain/xz/dist/src/xz/
suffix.c 123 } suffixes[] = { local
140 for (size_t i = 0; i < ARRAY_SIZE(suffixes); ++i) {
141 new_len = test_suffix(suffixes[i].compressed,
144 new_suffix = suffixes[i].uncompressed;
195 /// In contrast to uncompressed_name(), we check only suffixes that are valid
236 const char *const *suffixes = all_suffixes[format]; local
238 // Look for known filename suffixes and refuse to compress them.
239 for (size_t i = 0; suffixes[i] != NULL; ++i) {
240 if (test_suffix(suffixes[i], src_name, src_len) != 0) {
241 msg_suffix(src_name, suffixes[i])
    [all...]
  /src/tests/usr.bin/mkdep/
t_mkdep.sh 44 atf_test_case suffixes
46 atf_set "descr" "Test suffixes list"
68 atf_set "descr" "Test the combination of a prefix and suffixes"
81 atf_add_test_case suffixes
  /src/external/ibm-public/postfix/dist/mantools/
check-table-proto 14 # Force a failure if the pcf*suffixes.h files do not exist. Avoid using
16 for map in `(ls src/postconf/pcf*suffixes.h || kill $$) |
  /src/external/gpl2/diffutils/dist/lib/
xstrtol.c 158 /* FIXME: update all callers except the ones that allow suffixes
169 int suffixes = 1; local
191 suffixes += 2;
197 suffixes++;
265 (*p) += suffixes;
  /src/external/gpl2/grep/dist/lib/
xstrtol.c 146 /* FIXME: update all callers except the ones that allow suffixes
157 int suffixes = 1; local
175 suffixes++;
180 suffixes++;
245 (*p) += suffixes;
  /src/external/gpl3/gdb/dist/readline/readline/
tilde.c 164 register char **suffixes; local
166 suffixes = tilde_additional_suffixes;
178 for (j = 0; suffixes && suffixes[j]; j++)
180 if (strncmp (string + i, suffixes[j], strlen (suffixes[j])) == 0)
  /src/external/gpl3/gdb.old/dist/readline/readline/
tilde.c 164 register char **suffixes; local
166 suffixes = tilde_additional_suffixes;
178 for (j = 0; suffixes && suffixes[j]; j++)
180 if (strncmp (string + i, suffixes[j], strlen (suffixes[j])) == 0)
  /src/external/gpl2/texinfo/dist/info/
tilde.c 99 register char **suffixes = tilde_additional_suffixes; local
108 for (j = 0; suffixes && suffixes[j]; j++)
110 if (strncmp (string + i, suffixes[j], strlen (suffixes[j])) == 0)
  /src/usr.bin/ftp/
progressbar.c 88 * List of order of magnitude suffixes, per IEC 60027-2.
91 static const char * const suffixes[] = { variable
105 #define NSUFFIXES (int)(sizeof(suffixes) / sizeof(suffixes[0]))
244 suffixes[i]);
261 suffixes[i]);
354 suffixes[i]);
  /src/external/gpl2/rcs/dist/src/
rcsmerge.c 148 suffixes = X_DEFAULT;
181 suffixes = a;
  /src/external/apache2/llvm/dist/llvm/utils/lit/lit/
LitConfig.py 46 self.suffixes = ['cfg.py', 'cfg']
47 self.config_names = ['%s.%s' % (self.config_prefix,x) for x in self.suffixes]
48 self.site_config_names = ['%s.site.%s' % (self.config_prefix,x) for x in self.suffixes]
49 self.local_config_names = ['%s.local.%s' % (self.config_prefix,x) for x in self.suffixes]
  /src/crypto/external/bsd/openssl.old/dist/apps/
rehash.c 91 /* Keep in sync with |suffixes|, below. */
106 static const char *suffixes[] = { "", "r" }; variable
210 for (type = OSSL_NELEM(suffixes) - 1; type > 0; type--) {
211 const char *suffix = suffixes[type];
215 i += strlen(suffixes[type]);
398 suffixes[bp->type], ep->old_id);
409 suffixes[bp->type], nextid);
431 suffixes[bp->type], ep->old_id);
  /src/usr.bin/mkdep/
mkdep.c 89 "usage: %s [-aDdiopqv] [-f file] [-P prefix] [-s suffixes] "
224 const char *suffixes = NULL, *s; local
273 suffixes = "";
282 suffixes = optarg;
301 if (suffixes != NULL) {
302 if (*suffixes) {
303 for (s = suffixes; (sz = strcspn(s, ", ")) != 0;) {
  /src/crypto/external/apache2/openssl/dist/apps/
rehash.c 87 /* Keep in sync with |suffixes|, below. */
104 static const char *suffixes[] = { "", "r" }; variable
212 for (type = OSSL_NELEM(suffixes) - 1; type > 0; type--)
214 suffixes[type], strlen(suffixes[type]))
218 i += strlen(suffixes[type]);
428 suffixes[bp->type], ep->old_id);
439 suffixes[bp->type], nextid);
461 suffixes[bp->type], ep->old_id);
  /src/external/apache2/llvm/dist/clang/docs/tools/
generate_formatted_state.py 32 suffixes = (".cpp", ".h") variable
112 if not ext.endswith(suffixes):
  /src/crypto/external/bsd/openssl/dist/apps/
rehash.c 87 /* Keep in sync with |suffixes|, below. */
102 static const char *suffixes[] = { "", "r" }; variable
212 for (type = OSSL_NELEM(suffixes) - 1; type > 0; type--) {
213 const char *suffix = suffixes[type];
217 i += strlen(suffixes[type]);
427 suffixes[bp->type], ep->old_id);
438 suffixes[bp->type], nextid);
460 suffixes[bp->type], ep->old_id);

Completed in 30 milliseconds

1 2 3