Home
last modified time | relevance | path

Searched full:suffix (Results 1 – 25 of 1402) sorted by relevance

12345678910>>...57

/openbsd-src/usr.bin/tmux/
H A Dcmd-find-window.c50 const char *s = args_string(args, 0), *suffix = ""; in cmd_find_window_exec() local
62 suffix = "/ri"; in cmd_find_window_exec()
64 suffix = "/r"; in cmd_find_window_exec()
66 suffix = "/i"; in cmd_find_window_exec()
79 suffix, s, suffix, star, s, star, suffix, star, s, star); in cmd_find_window_exec()
83 suffix, s, suffix, star, s, star); in cmd_find_window_exec()
87 suffix, s, suffix, star, s, star); in cmd_find_window_exec()
92 suffix, star, s, star, suffix, star, s, star); in cmd_find_window_exec()
96 suffix, s); in cmd_find_window_exec()
100 suffix, star, s, star); in cmd_find_window_exec()
[all …]
/openbsd-src/gnu/usr.bin/perl/ext/XS-APItest/t/
H A Dhandy_base.pl80 my ($locale, $suffix) = @_;
89 return ("", 0) if $suffix !~ /LC/;
95 return if $suffix !~ /LC/;
244 foreach my $suffix ("", "_A", "_L1", "_LC", "_uni", "_uvchr",
252 next if $suffix !~ / ^ _ ( uni | uvchr | utf8 ) $ /x;
259 next if $suffix eq '_A'
260 || $suffix eq '_L1'
261 || $suffix eq '_uvchr';
264 next if $suffix ne "" && $suffix ne '_A' && $suffix ne '_L1';
269 next if $suffix ne ""
[all …]
/openbsd-src/gnu/llvm/llvm/lib/TableGen/
H A DTableGenBackend.cpp23 StringRef Suffix) { in printLine() argument
25 assert((Prefix.str().size() + Suffix.size() <= MAX_LINE_LEN) && in printLine()
28 for (size_t i = (size_t)OS.tell() - Pos, e = MAX_LINE_LEN - Suffix.size(); in printLine()
31 OS << Suffix << '\n'; in printLine()
37 StringRef Suffix(" *|"); in emitSourceFileHeader() local
38 printLine(OS, Prefix, ' ', Suffix); in emitSourceFileHeader()
39 size_t PSLen = Prefix.size() + Suffix.size(); in emitSourceFileHeader()
44 printLine(OS, Prefix + Desc.substr(Pos, Length), ' ', Suffix); in emitSourceFileHeader()
47 printLine(OS, Prefix, ' ', Suffix); in emitSourceFileHeader()
49 Suffix); in emitSourceFileHeader()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/Support/
H A DSuffixTree.h9 // This file defines the Suffix Tree class and Suffix Tree Node struct.
22 /// Represents an undefined index in the suffix tree.
25 /// A node in a suffix tree which represents a substring or suffix.
39 /// suffix in \p SuffixIdx.
60 /// For leaves, the start index of the suffix represented by this node.
71 /// insert O(1), and there are a total of O(N) inserts. The suffix link
78 /// string, starting with the longest suffix of the prefix, and ending with
117 /// Suffix trees represent the suffixes of their input strings in their leaves.
118 /// A suffix tree is a type of compressed trie structure where each node
120 /// of the tree is a suffix.
[all …]
/openbsd-src/regress/lib/libc/mkstemp/
H A Dmkstemp_test.c27 #define SUFFIX ".suff" macro
28 #define SLEN (sizeof SUFFIX - 1)
39 char const *suffix, size_t slen, int tlen) in check() argument
62 if (memcmp(path + plen + tlen, suffix, slen + 1) != 0) in check()
63 errx(1, "suffix changed! %s vs %s", suffix, path); in check()
92 try_mkstemps(char *p, char const *prefix, int len, char const *suffix) in try_mkstemps() argument
96 size_t slen = strlen(suffix); in try_mkstemps()
102 memcpy(p + plen + len, suffix, slen + 1); in try_mkstemps()
104 if (check(fd, p, prefix, plen, suffix, slen, len)) in try_mkstemps()
143 /* again, with mkstemps() and an empty suffix */ in main()
[all …]
/openbsd-src/gnu/llvm/compiler-rt/lib/tsan/go/
H A Dbuildgo.sh58 SUFFIX="linux_ppc64le"
61 SUFFIX="linux_amd64"
69 SUFFIX="linux_arm64"
73 SUFFIX="linux_mips64le"
76 SUFFIX="linux_mips64"
81 SUFFIX="linux_s390x"
89 SUFFIX="freebsd_amd64"
110 SUFFIX="netbsd_amd64"
140 SUFFIX="darwin_amd64"
143 SUFFIX="darwin_arm64"
[all …]
/openbsd-src/usr.bin/make/
H A Dsuff.c40 * Functions to maintain suffix lists and find implicit dependents
41 * using suffix transformation rules
71 /* We remember the longest suffix, so we don't need to look beyond that. */
91 /* conflicts between suffixes are solved by suffix declaration order. */
95 * Structure describing an individual suffix.
102 #define SUFF_PATH 0x10 /* False suffix: actually, the path keyword */
103 LIST searchPath; /* The path along which files of this suffix
123 Suff *suff; /* The suffix on the file */
142 static Suff *emptySuff; /* The empty suffix required for POSIX
143 * single-suffix transformation rules */
[all …]
/openbsd-src/gnu/usr.bin/binutils/gdb/
H A Dada-exp.y732 const char *suffix; in write_object_renaming() local
760 suffix = strstr (expr, "___XE"); in write_object_renaming()
761 if (suffix == NULL) in write_object_renaming()
764 name = (char *) obstack_alloc (&temp_parse_space, suffix - expr + 1); in write_object_renaming()
765 strncpy (name, expr, suffix-expr); in write_object_renaming()
766 name[suffix-expr] = '\000'; in write_object_renaming()
775 suffix += 5; in write_object_renaming()
777 while (*suffix == 'X') in write_object_renaming()
779 suffix += 1; in write_object_renaming()
781 switch (*suffix) { in write_object_renaming()
[all …]
H A Devent-top.h30 and a suffix. The prompt to be displayed at any given time is the
46 actually composed of a prefix, the prompt itself and a suffix. */
51 stack: the usual one, w/o prefix and suffix (at top - 1), and the
52 'composite' one with prefix and suffix added (at top). At this
67 char *suffix; member
75 #define SUFFIX(X) the_prompts.prompt_stack[the_prompts.top + X].suffix macro
101 extern void push_prompt (char *prefix, char *prompt, char *suffix);
/openbsd-src/regress/usr.bin/mandoc/man/MR/
H A Dbasic.in19 .MR test 1 suffix
20 with suffix
23 .MR test 1 suffix excess
27 .MR test 1 suffix too many
34 .MR test 1 suffix
39 .MR test 1 suffix
H A Dbasic.out_ascii13 three arguments: test(1)suffix with suffix
15 four arguments: test(1)suffix warning
17 five arguments: test(1)suffix warning
19 after setting bboolldd ffoonntt:: test(1)suffix not bold
21 in bold next-line scope: test(1)suffix not bold
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/cpp/
H A Dif-1.c12 #if 12wrt /* { dg-error "invalid suffix" "invalid number" } */
15 #if 0abc /* { dg-error "invalid suffix" "invalid number" } */
18 #if 42abc /* { dg-error "invalid suffix" "invalid number" } */
28 #if 4uu /* { dg-error "invalid suffix" "too many suffixes" } */
31 #if 124123231lll /* { dg-error "invalid suffix" "too many suffixes" } */
34 #if 1234lul /* { dg-error "invalid suffix" "u between ls" } */
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/
H A Dwtr-suffix-1.c15 i = 1U; /* { dg-warning "traditional C rejects" "numeric constant suffix" } */ in testfunc()
16 i = 1u; /* { dg-warning "traditional C rejects" "numeric constant suffix" } */ in testfunc()
18 f = 1.0F; /* { dg-warning "traditional C rejects" "numeric constant suffix" } */ in testfunc()
19 f = 1.0f; /* { dg-warning "traditional C rejects" "numeric constant suffix" } */ in testfunc()
20 f = 1.0L; /* { dg-warning "traditional C rejects" "numeric constant suffix" } */ in testfunc()
21 f = 1.0l; /* { dg-warning "traditional C rejects" "numeric constant suffix" } */ in testfunc()
/openbsd-src/regress/usr.bin/mandoc/roff/esc/
H A Dbs_mdoc.in11 prefix\*[usestr]suffix
12 prefix\\*[usestr]suffix
16 on a text line: prefix\\suffix
24 .Sy prefix\\*[usestr]suffix
30 .argmac prefix\\*[usestr]suffix
H A Dbs_man.in8 prefix\*[usestr]suffix
9 prefix\\*[usestr]suffix
13 on a text line: prefix\\suffix
21 .IB prefix ##\\*[usestr]## suffix
27 .argmac prefix\\*[usestr]suffix
H A Dbs_mdoc.out_ascii7 on a text line: prefix\suffix
9 in a macro definition: prefix(initial)suffix prefix(later)suffix
11 in a string definition: prefix(initial)middle(later)suffix
15 in a user-defined macro argument: {prefix(later)suffix}
H A Dbs_man.out_ascii7 on a text line: prefix\suffix
9 in a macro definition: prefix(initial)suffix prefix(later)suffix
11 in a string definition: prefix(initial)middle(later)suffix
15 in a user-defined macro argument: {prefix(later)suffix}
/openbsd-src/gnu/llvm/llvm/utils/lit/tests/Inputs/shtest-define/errors/defined-check/
H A Dredefine-suffixes-pattern.txt1 # REDEFINE: %{global:suffix} = @
2 # RUN: echo '@%{global:suffix}'
4 # CHECK: ValueError: Existing substitution whose pattern contains '%{global:suffix}' does not …
5 # CHECK-NEXT: Expected pattern: %{global:suffix}
6 # CHECK-NEXT: Existing pattern: @%{global:suffix}
/openbsd-src/usr.bin/yacc/
H A Dmain.c195 char *suffix; in create_file_names() local
201 /* does the output_file_name have a known suffix */ in create_file_names()
202 if ((suffix = strrchr(output_file_name, '.')) != 0 && in create_file_names()
203 (!strcmp(suffix, ".c") || /* good, old-fashioned C */ in create_file_names()
204 !strcmp(suffix, ".C") || /* C++, or C on Windows */ in create_file_names()
205 !strcmp(suffix, ".cc") || /* C++ */ in create_file_names()
206 !strcmp(suffix, ".cxx") || /* C++ */ in create_file_names()
207 !strcmp(suffix, ".cpp"))) {/* C++ (Windows) */ in create_file_names()
209 suffix - output_file_name + 1); in create_file_names()
210 defines_file_name[suffix - output_file_name + 1] = 'h'; in create_file_names()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Target/ARM/
H A DARMInstrMVE.td274 // The suffix used in assembly language on an instruction operating
280 // The suffix used on an instruction that mentions the whole type.
281 string Suffix = suffixletter # BitsSuffix;
283 // The letter part of the suffix only.
399 // of input operands that provides the VPT suffix (none, T or E) and
402 string suffix, string ops, vpred_ops vpred, string cstr,
405 // If the instruction has a suffix, like vadd.f32, then the
406 // VPT predication suffix goes before the dot, so the full
409 !if(!eq(suffix, ""), "", !strconcat(".", suffix))),
416 string suffix, string ops, vpred_ops vpred, string cstr,
[all …]
/openbsd-src/gnu/usr.bin/perl/lib/File/
H A DBasename.pm3 File::Basename - Parse file paths into directory, filename and suffix.
9 my ($name, $path, $suffix) = fileparse($fullname, @suffixlist);
19 and suffix.
67 my($filename, $dirs, $suffix) = fileparse($path);
68 my($filename, $dirs, $suffix) = fileparse($path, @suffixes);
72 and (optionally) the filename $suffix.
89 portion is removed and becomes the $suffix.
95 matching for suffix removal is performed case-insensitively, since
98 You are guaranteed that C<$dirs . $filename . $suffix> will
162 my $suffix = '';
[all …]
/openbsd-src/usr.bin/compress/
H A Dmain.c57 static char suffix[16]; variable
62 const char *suffix; member
157 { "suffix", required_argument, 0, 'S' },
217 strlcpy(suffix, method->suffix, sizeof(suffix)); in main()
258 strlcpy(suffix, method->suffix, sizeof(suffix)); in main()
285 strlcpy(suffix, method->suffix, sizeof(suffix)); in main()
305 strlcpy(suffix, method->suffix, sizeof(suffix)); in main()
318 p = suffix; in main()
321 strlcpy(p, optarg, sizeof(suffix) - (p - suffix)); in main()
396 * If file does not exist and has no suffix, in main()
[all …]
/openbsd-src/usr.sbin/ldapd/
H A Dindex.c21 * with the distinguished name of the entry. The namespace suffix is
24 * Below, the namespace suffix dc=example,dc=com is stripped.
50 * Substring index could probably be stored like a suffix tree:
57 * This facilitates both substring and suffix search.
103 dnsz = dn->size - strlen(ns->suffix); in index_attribute()
133 dnsz = dn->size - strlen(ns->suffix); in index_rdn_key()
202 dnsz = dn->size - strlen(ns->suffix); in unindex_attribute()
278 /* Reconstruct the full dn from the index key and the namespace suffix.
316 * Full DN is made up of rdn + parent rdn + namespace suffix. in index_to_dn()
325 dn->size = indx->size + strlen(ns->suffix); in index_to_dn()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Target/RISCV/
H A DRISCVStripWSuffix.cpp1 //===-------------- RISCVStripWSuffix.cpp - -w Suffix Removal -------------===//
10 // This pass removes the -w suffix from each addiw and slliw instructions
22 static cl::opt<bool> DisableStripWSuffix("riscv-disable-strip-w-suffix",
23 cl::desc("Disable strip W suffix"),
43 StringRef getPassName() const override { return "RISCV Strip W Suffix"; } in getPassName()
49 INITIALIZE_PASS(RISCVStripWSuffix, "riscv-strip-w-suffix",
50 "RISCV Strip W Suffix", false, false)
/openbsd-src/gnu/llvm/clang/lib/Lex/
H A DHeaderMap.cpp145 Result.Suffix = getEndianAdjustedWord(BucketPtr->Suffix); in getBucket()
192 StringRef Suffix = getStringOrInvalid(B.Suffix); in dump() local
194 << Suffix << "'\n"; in dump()
221 std::optional<StringRef> Suffix = getString(B.Suffix); in lookupFilename() local
224 if (LLVM_LIKELY(Prefix && Suffix)) { in lookupFilename()
226 DestPath.append(Suffix->begin(), Suffix->end()); in lookupFilename()
246 std::optional<StringRef> Suffix = getString(B.Suffix); in reverseLookupFilename() local
247 if (LLVM_LIKELY(Key && Prefix && Suffix)) { in reverseLookupFilename()
250 Buf.append(Suffix->begin(), Suffix->end()); in reverseLookupFilename()

12345678910>>...57