/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/ |
H A D | ARMAttributeParser.cpp | 83 static const char *strings[] = { in CPU_arch() local 90 return parseStringAttribute("CPU_arch", tag, makeArrayRef(strings)); in CPU_arch() 111 static const char *strings[] = {"Not Permitted", "Permitted"}; in ARM_ISA_use() local 112 return parseStringAttribute("ARM_ISA_use", tag, makeArrayRef(strings)); in ARM_ISA_use() 116 static const char *strings[] = {"Not Permitted", "Thumb-1", "Thumb-2", "Permitted"}; in THUMB_ISA_use() local 117 return parseStringAttribute("THUMB_ISA_use", tag, makeArrayRef(strings)); in THUMB_ISA_use() 121 static const char *strings[] = { in FP_arch() local 124 return parseStringAttribute("FP_arch", tag, makeArrayRef(strings)); in FP_arch() 128 static const char *strings[] = {"Not Permitted", "WMMXv1", "WMMXv2"}; in WMMX_arch() local 129 return parseStringAttribute("WMMX_arch", tag, makeArrayRef(strings)); in WMMX_arch() [all …]
|
/netbsd-src/crypto/external/bsd/heimdal/dist/kadmin/ |
H A D | mod.c | 62 struct getarg_strings *strings) in add_constrained_delegation() argument 73 if (strings->num_strings == 1 && strings->strings[0][0] == '\0') { in add_constrained_delegation() 81 calloc(strings->num_strings, in add_constrained_delegation() 83 ext.data.u.allowed_to_delegate_to.len = strings->num_strings; in add_constrained_delegation() 85 for (i = 0; i < strings->num_strings; i++) { in add_constrained_delegation() 86 ret = krb5_parse_name(contextp, strings->strings[i], &p); in add_constrained_delegation() 109 struct getarg_strings *strings) in add_aliases() argument 123 if (strings->num_strings == 1 && strings->strings[0][0] == '\0') { in add_aliases() 128 calloc(strings->num_strings, in add_aliases() 130 ext.data.u.aliases.aliases.len = strings->num_strings; in add_aliases() [all …]
|
/netbsd-src/crypto/external/bsd/openssl/dist/test/recipes/ |
H A D | 02-test_errstr.t | 113 my @strings = @_; 118 if (scalar @strings > 1) { 120 . join("', '", @strings) . "' )"; 122 $desc = "match '$first' ($desc) with '$strings[0]'"; 127 @strings 134 my @strings = @_; 142 return match_any($reason, $errcode_hex, @strings); 148 my @strings = (); 150 push @strings, eval { 158 push @strings, qr/^non-translatable vms error code:/ if $^O eq 'VMS'; [all …]
|
/netbsd-src/crypto/external/bsd/heimdal/dist/lib/roken/ |
H A D | getusershell.c | 80 static char **curshell, **shells, *strings; variable 105 if (strings != NULL) in endusershell() 106 free(strings); in endusershell() 107 strings = NULL; in endusershell() 131 free(strings); in initshells() 132 strings = NULL; in initshells() 143 strings = malloc(cp - tmp); in initshells() 144 if(strings == NULL) { in initshells() 149 memcpy(strings, tmp, cp - tmp); in initshells() 150 for(sp = shells, cp = strings; *cp; cp += strlen(cp) + 1, sp++) in initshells() [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/docs/CommandGuide/ |
H A D | llvm-strings.rst | 1 llvm-strings - print strings 4 .. program:: llvm-strings 9 :program:`llvm-strings` [*options*] [*input...*] 14 :program:`llvm-strings` is a tool intended as a drop-in replacement for GNU's 15 :program:`strings`, which looks for printable strings in files and writes them 20 :program:`llvm-strings` looks for strings in each ``input`` file specified. 21 Unlike GNU :program:`strings` it looks in the entire input file, regardless of 35 $ llvm-strings input.txt 44 Silently ignored. Present for GNU :program:`strings` compatibility. 67 $ llvm-strings --print-file-name test.o test.elf [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/utils/gn/secondary/llvm/tools/llvm-strings/ |
H A D | BUILD.gn | 5 symlink_or_copy("strings") { 6 deps = [ ":llvm-strings" ] 7 source = "llvm-strings" 8 output = "$root_out_dir/bin/strings" 12 # //:llvm-strings depends on this symlink target, see comment in //BUILD.gn. 14 deps = [ ":llvm-strings" ] 16 deps += [ ":strings" ] 20 executable("llvm-strings") { 26 sources = [ "llvm-strings.cpp" ]
|
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-go/ |
H A D | llvm-go.go | 85 outstr = strings.TrimSuffix(outstr, "\n") 86 outstr = strings.Replace(outstr, "\n", " ", -1) 94 if strings.Contains(llvmConfig("--cxxflags"), "-stdlib=libc++") { 115 if strings.HasPrefix(a, "-tags=") { 130 fmt.Println(strings.Join(components, " ")) 185 newgopath := strings.Join(newgopathlist, string(filepath.ListSeparator)) 203 if !strings.HasPrefix(v, "CC=") && 204 !strings.HasPrefix(v, "CXX=") && 205 !strings.HasPrefix(v, "CGO_CPPFLAGS=") && 206 !strings.HasPrefix(v, "CGO_CXXFLAGS=") && [all …]
|
/netbsd-src/tests/lib/libexecinfo/ |
H A D | t_backtrace.c | 71 char **strings; in myfunc3() local 82 strings = backtrace_symbols_fmt(buffer, nptrs, "%n"); in myfunc3() 84 ATF_CHECK(strings != NULL); in myfunc3() 90 printf("#%zu: %s\n", j, strings[j]); in myfunc3() 95 ATF_CHECK_STREQ(strings[0], "myfunc3"); in myfunc3() 96 ATF_CHECK_STREQ(strings[1], "myfunc2"); in myfunc3() 99 ATF_CHECK_STREQ(strings[j], "myfunc1"); in myfunc3() 103 strcmp(strings[j], frames[i].name)) { in myfunc3() 107 ATF_CHECK_STREQ(strings[j], frames[i].name); in myfunc3() 110 free(strings); in myfunc3()
|
/netbsd-src/external/apache2/llvm/dist/libcxx/benchmarks/ |
H A D | string.bench.cpp | 243 std::string strings[kNumStrings]; in run() local 247 std::string().swap(strings[i]); in run() 249 benchmark::DoNotOptimize(strings); in run() 252 strings[i].__resize_default_init(maybeOpaque(length, opaque)); in run() 268 std::string strings[kNumStrings]; in run() local 272 std::string().swap(strings[i]); in run() 274 benchmark::DoNotOptimize(strings); in run() 277 strings[i] = *maybeOpaque(&src, opaque); in run() 292 std::string strings[kNumStrings]; in run() local 296 std::string().swap(strings[i]); in run() [all …]
|
/netbsd-src/external/bsd/ipf/dist/lib/ |
H A D | save_file.c | 32 file_parse(strings) in file_parse() argument 33 char **strings; in file_parse() 41 if (strings[0] != NULL && strings[0][0] != '\0') { 43 if (!strncmp(strings[0], "raw://", 6)) { 45 ctx->path = strdup(strings[0] + 6); 47 } else if (!strncmp(strings[0], "file://", 7)) { 48 ctx->path = strdup(strings[0] + 7);
|
H A D | save_execute.c | 27 execute_parse(char **strings) in execute_parse() argument 33 if (ctx != NULL && strings[0] != NULL && strings[0][0] != '\0') { in execute_parse() 34 ctx->path = strdup(strings[0]); in execute_parse()
|
/netbsd-src/crypto/external/bsd/openssl.old/dist/util/ |
H A D | mkerr.pl | 139 my %strings; # define -> text 193 die "Duplicate define $name" if exists $strings{$name}; 194 $strings{$name} = $next; 198 die "Duplicate define $name" if exists $strings{$name}; 199 $strings{$name} = $3; 581 if ( exists $strings{$i} and $strings{$i} ne '' ) { 582 $fn = $strings{$i}; 588 $strings{$i} = $fn; 607 if ( exists $strings{$i} ) { 608 $rn = $strings{$i}; [all …]
|
/netbsd-src/external/bsd/kyua-cli/dist/utils/text/ |
H A D | operations.ipp | 39 /// Concatenates a collection of strings into a single string. 41 /// \param strings The collection of strings to concatenate. If the collection 43 /// \param delimiter The delimiter to use to separate the strings. 45 /// \return The concatenated strings. 48 utils::text::join(const Collection& strings, const std::string& delimiter) 51 if (strings.size() > 1) { 52 for (typename Collection::const_iterator iter = strings.begin(); 53 iter != --strings.end(); ++iter) 56 if (strings.size() > 0) 57 output << *(--strings.end());
|
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/tests/ |
H A D | gettext-3-prg.c | 42 struct data_t strings[] = variable 47 const int data_cnt = sizeof (strings) / sizeof (strings[0]); 77 printf ("%s - %s\n", strings[j].selection, in main() 78 gettext (strings[j].description)); in main()
|
/netbsd-src/crypto/external/bsd/heimdal/dist/lib/hx509/ |
H A D | hxtool-commands.in | 41 type = "strings" 54 type = "strings" 60 type = "strings" 66 type = "strings" 72 type = "strings" 127 type = "strings" 134 type = "strings" 140 type = "strings" 184 type = "strings" 190 type = "strings" [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-strings/ |
H A D | CMakeLists.txt | 7 add_llvm_tool(llvm-strings 8 llvm-strings.cpp 12 add_llvm_tool_symlink(strings llvm-strings)
|
/netbsd-src/crypto/external/bsd/openssl/dist/util/ |
H A D | mkerr.pl | 140 my %strings; # define -> text 200 die "Duplicate define $name" if exists $strings{$name}; 201 $strings{$name} = $next; 205 die "Duplicate define $name" if exists $strings{$name}; 206 $strings{$name} = $3; 559 if ( exists $strings{$i} ) { 560 $rn = $strings{$i}; 566 $strings{$i} = $rn; 682 my $t = exists $strings{$i} ? "$strings{$i}" : "";
|
/netbsd-src/crypto/external/bsd/openssl.old/dist/doc/man3/ |
H A D | UI_STRING.pod | 67 This is only useful for B<UIT_PROMPT> and B<UIT_VERIFY> type strings. 73 This is only useful for B<UIT_VERIFY> type strings. 78 This is only useful for B<UIT_PROMPT> and B<UIT_VERIFY> type strings. 82 For B<UIT_PROMPT> and B<UIT_VERIFY> type UI strings, this sets the 86 For B<UIT_BOOLEAN> type UI strings, this sets the first character of 98 only useful with normal C strings. 109 string for B<UIT_BOOLEAN> type UI strings, NULL for any other type. 112 B<UIT_PROMPT> and B<UIT_VERIFY> type UI strings, NULL for any other 116 content length for B<UIT_PROMPT> and B<UIT_VERIFY> type UI strings, 120 string for B<UIT_VERIFY> type UI strings, NULL for any other type. [all …]
|
/netbsd-src/external/bsd/atf/dist/atf-c++/ |
H A D | utils_test.cpp | 248 std::set< std::string > strings; in ATF_TEST_CASE_BODY() local 249 strings.insert("First"); in ATF_TEST_CASE_BODY() 250 strings.insert("Second"); in ATF_TEST_CASE_BODY() 252 ATF_REQUIRE( atf::utils::grep_collection("irs", strings)); in ATF_TEST_CASE_BODY() 253 ATF_REQUIRE( atf::utils::grep_collection("cond", strings)); in ATF_TEST_CASE_BODY() 254 ATF_REQUIRE(!atf::utils::grep_collection("Third", strings)); in ATF_TEST_CASE_BODY() 260 std::vector< std::string > strings; in ATF_TEST_CASE_BODY() local 261 strings.push_back("First"); in ATF_TEST_CASE_BODY() 262 strings.push_back("Second"); in ATF_TEST_CASE_BODY() 264 ATF_REQUIRE( atf::utils::grep_collection("irs", strings)); in ATF_TEST_CASE_BODY() [all …]
|
/netbsd-src/crypto/external/bsd/openssl/dist/doc/man3/ |
H A D | UI_STRING.pod | 67 This is only useful for B<UIT_PROMPT> and B<UIT_VERIFY> type strings. 73 This is only useful for B<UIT_VERIFY> type strings. 78 This is only useful for B<UIT_PROMPT> and B<UIT_VERIFY> type strings. 82 For B<UIT_PROMPT> and B<UIT_VERIFY> type UI strings, this sets the 86 For B<UIT_BOOLEAN> type UI strings, this sets the first character of 98 only useful with normal C strings. 109 string for B<UIT_BOOLEAN> type UI strings, NULL for any other type. 112 B<UIT_PROMPT> and B<UIT_VERIFY> type UI strings, NULL for any other 116 content length for B<UIT_PROMPT> and B<UIT_VERIFY> type UI strings, 120 string for B<UIT_VERIFY> type UI strings, NULL for any other type. [all …]
|
/netbsd-src/external/gpl3/binutils.old/dist/binutils/ |
H A D | rddbg.c | 123 bfd_byte *stabs, *strings; in read_section_stabs_debugging_info() local 140 strings = (bfd_byte *) xmalloc (strsize + 1); in read_section_stabs_debugging_info() 141 if (! bfd_get_section_contents (abfd, strsec, strings, 0, strsize)) in read_section_stabs_debugging_info() 147 free (strings); in read_section_stabs_debugging_info() 152 strings [strsize] = 0; in read_section_stabs_debugging_info() 158 free (strings); in read_section_stabs_debugging_info() 205 s = (char *) strings + stroff + strx; in read_section_stabs_debugging_info() 229 s = concat (s, (char *) strings + strx, in read_section_stabs_debugging_info() 250 free (strings); in read_section_stabs_debugging_info()
|
/netbsd-src/crypto/external/bsd/heimdal/dist/lib/kadm5/ |
H A D | sample_passwd_check.c | 77 char *strings[2]; in check_cracklib() local 80 strings[0] = principal->name.name_string.val[0]; /* XXX */ in check_cracklib() 81 strings[1] = NULL; in check_cracklib() 84 msg = FascistCheck(s, DICTPATH, strings); in check_cracklib()
|
/netbsd-src/external/gpl2/xcvs/dist/doc/ |
H A D | getdate.texi | 46 programs accept. These are the strings you, as a user, can supply as 56 * Relative items in date strings:: next tuesday, 2 years ago. 57 * Pure numbers in date strings:: 19931219, 1440. 69 @cindex items in date strings 89 @findex first @r{in date strings} 90 @findex next @r{in date strings} 91 @findex last @r{in date strings} 107 allowed strings. 155 numerically or literally. All these strings specify the same calendar date: 193 @cindex month names in date strings [all …]
|
/netbsd-src/sys/arch/xen/xenbus/ |
H A D | xenbus_xs.c | 260 count_strings(const char *strings, unsigned int len) in count_strings() argument 265 for (p = strings, num = 0; p < strings + len; p += strlen(p) + 1) in count_strings() 292 split(char *strings, unsigned int len, unsigned int *num) in split() argument 297 *num = count_strings(strings, len); in split() 302 free(strings, M_DEVBUF); in split() 305 memcpy(&ret[*num], strings, len); in split() 306 free(strings, M_DEVBUF); in split() 308 strings = (char *)&ret[*num]; in split() 309 for (p = strings, *num = 0; p < strings + len; p += strlen(p) + 1) in split() 320 char *strings, *path; in xenbus_directory() local [all …]
|
/netbsd-src/external/mit/libcbor/dist/doc/source/api/ |
H A D | type_2.rst | 1 Type 2 – Byte strings 4 …strings are just (ordered) series of bytes without further interpretation (unless there is a :doc:… 6 In case a byte string is indefinite, it is encoded as a series of definite byte strings. These are … 30 Streaming indefinite byte strings
|