Searched refs:str (Results 1 - 25 of 6843) sorted by relevance

1234567891011>>

/netbsd-current/tests/usr.bin/indent/
H A Dlsym_sizeof.c24 char str[sizeof(int) * CHAR_BIT + 1]; variable
/netbsd-current/tests/usr.bin/xlint/lint1/
H A Dmsg_264.c11 char str[] = "vertical \v tab"; variable
H A Dmsg_263.c11 char str[] = "Hello\?"; variable
H A Dmsg_280.c10 varargs_ok(const char *str, ...) argument
12 (void)str;
35 varargs_bad_param(/* VARARGS */ const char *str, ...) argument
37 (void)str;
42 varargs_bad_ellipsis(const char *str, /* VARARGS */ ...) argument
44 (void)str;
48 varargs_bad_body(const char *str, ...) argument
52 (void)str;
56 /* expect+1: warning: parameter 'str' unused in function 'argsused_bad_body' [231] */
57 argsused_bad_body(const char *str) argument
[all...]
H A Dmsg_128.c11 char *str; local
13 /* expect+1: warning: 'str' set but not used in function 'conversion_to_unconst' [191] */
14 str = cstr;
H A Dmsg_211.c8 struct str { struct
13 return_int(double dbl, void *ptr, struct str str) argument
20 if (str.member > 0)
21 /* expect+1: error: function has return type 'int' but returns 'struct str' [211] */
22 return str;
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.fortran/
H A Dsubarray.f21 character *7 str variable in program:subarray
24 c Initialize character array "str" and integer array "array".
25 str = 'abcdefg'
30 write (*, *) str(2:4)
31 write (*, *) str(:3)
32 write (*, *) str(5:)
33 write (*, *) str(:)
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.fortran/
H A Dsubarray.f21 character *7 str variable in program:subarray
24 c Initialize character array "str" and integer array "array".
25 str = 'abcdefg'
30 write (*, *) str(2:4)
31 write (*, *) str(:3)
32 write (*, *) str(5:)
33 write (*, *) str(:)
H A Dcall-no-debug-func.f9024 integer function string_func (str)
25 character(len=*) :: str local in function:string_func
27 print *, str
/netbsd-current/sys/arch/sbmips/include/
H A Dleds.h37 void cswarm_setleds(const char *str);
/netbsd-current/sys/arch/evbmips/sbmips/
H A Dleds.h37 void cswarm_setleds(const char *str);
/netbsd-current/external/cddl/osnet/sys/sys/
H A Drefstr.h34 #define refstr_value(str) (str)
/netbsd-current/crypto/external/bsd/heimdal/dist/lib/roken/
H A Dstrsep.c45 strsep(char **str, const char *delim) argument
47 char *save = *str;
48 if(*str == NULL)
50 *str = *str + strcspn(*str, delim);
51 if(**str == 0)
52 *str = NULL;
54 **str = 0;
55 (*str)
[all...]
/netbsd-current/external/public-domain/xz/dist/src/xz/
H A Doptions.h17 extern lzma_options_delta *options_delta(const char *str);
24 extern lzma_options_bcj *options_bcj(const char *str);
31 extern lzma_options_lzma *options_lzma(const char *str);
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
H A Dnested-subp2.c19 iter_str (const char *str, void (*callback) (char c)) argument
21 for (; *str != '\0'; ++str)
22 callback (*str);
26 length_str (const char *str) argument
38 iter_str (str, &increment);
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
H A Dnested-subp2.c19 iter_str (const char *str, void (*callback) (char c)) argument
21 for (; *str != '\0'; ++str)
22 callback (*str);
26 length_str (const char *str) argument
38 iter_str (str, &increment);
/netbsd-current/sys/dev/acpi/
H A Dacpidevs_data.h10 const struct { const char *pnp, *str; } acpi_knowndevs[] = { member in struct:__anon4
/netbsd-current/crypto/external/bsd/openssl.old/dist/test/testutil/
H A Dcb.c13 int openssl_error_cb(const char *str, size_t len, void *u) argument
15 return test_printf_stderr("%s", str);
/netbsd-current/crypto/external/bsd/openssl/dist/test/testutil/
H A Dcb.c13 int openssl_error_cb(const char *str, size_t len, void *u) argument
15 return test_printf_stderr("%s", str);
/netbsd-current/external/lgpl3/gmp/dist/mpz/
H A Ddump.c43 char *str; local
45 str = mpz_get_str (0, 10, u);
46 printf ("%s\n", str);
47 (*__gmp_free_func) (str, strlen (str) + 1);
/netbsd-current/external/gpl3/gcc.old/dist/gcc/
H A Dstringpool.h37 #define get_identifier(str) \
38 (__builtin_constant_p (str) \
39 ? get_identifier_with_length ((str), strlen (str)) \
40 : get_identifier (str))
/netbsd-current/external/gpl3/gcc/dist/gcc/
H A Dstringpool.h37 #define get_identifier(str) \
38 (__builtin_constant_p (str) \
39 ? get_identifier_with_length ((str), strlen (str)) \
40 : get_identifier (str))
/netbsd-current/external/gpl2/gettext/dist/gettext-tools/src/
H A Dmsgunfmt.tcl23 proc msgcat::puts_po_string {str} {
25 regsub -all "\"" $str "\\\"" str
27 regsub -all "\\\\" $str "\\\\\\" str
29 regsub -all [subst "\n"] $str "\\n" str
30 regsub -all [subst "\a"] $str "\\a" str
31 regsub -all [subst "\b"] $str "\\
[all...]
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
H A Dsanitizer_stacktrace_printer_test.cc20 InternalScopedString str(128);
21 RenderSourceLocation(&str, "/dir/file.cc", 10, 5, false, "");
22 EXPECT_STREQ("/dir/file.cc:10:5", str.data());
24 str.clear();
25 RenderSourceLocation(&str, "/dir/file.cc", 11, 0, false, "");
26 EXPECT_STREQ("/dir/file.cc:11", str.data());
28 str.clear();
29 RenderSourceLocation(&str, "/dir/file.cc", 0, 0, false, "");
30 EXPECT_STREQ("/dir/file.cc", str.data());
32 str
[all...]
/netbsd-current/external/lgpl3/gmp/dist/mpf/
H A Ddump.c44 char *str; local
46 str = mpf_get_str (0, &exp, 10, 0, u);
47 if (str[0] == '-')
48 printf ("-0.%se%ld\n", str + 1, exp);
50 printf ("0.%se%ld\n", str, exp);
51 (*__gmp_free_func) (str, strlen (str) + 1);

Completed in 385 milliseconds

1234567891011>>