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

1 2 3 4 5 6 7 8 91011>>

  /src/tests/usr.bin/indent/
lsym_sizeof.c 24 char str[sizeof(int) * CHAR_BIT + 1]; variable in typeref:typename:char[]
lsym_sizeof.c 24 char str[sizeof(int) * CHAR_BIT + 1]; variable in typeref:typename:char[]
  /src/tests/usr.bin/xlint/lint1/
msg_263.c 11 char str[] = "Hello\?"; variable in typeref:typename:char[]
msg_264.c 11 char str[] = "vertical \v tab"; variable in typeref:typename:char[]
msg_263.c 11 char str[] = "Hello\?"; variable in typeref:typename:char[]
msg_264.c 11 char str[] = "vertical \v tab"; variable in typeref:typename:char[]
msg_280.c 10 varargs_ok(const char *str, ...)
12 (void)str;
35 varargs_bad_param(/* VARARGS */ const char *str, ...)
37 (void)str;
42 varargs_bad_ellipsis(const char *str, /* VARARGS */ ...)
44 (void)str;
48 varargs_bad_body(const char *str, ...)
52 (void)str;
56 /* expect+1: warning: parameter 'str' unused in function 'argsused_bad_body' [231] */
57 argsused_bad_body(const char *str)
    [all...]
msg_280.c 10 varargs_ok(const char *str, ...)
12 (void)str;
35 varargs_bad_param(/* VARARGS */ const char *str, ...)
37 (void)str;
42 varargs_bad_ellipsis(const char *str, /* VARARGS */ ...)
44 (void)str;
48 varargs_bad_body(const char *str, ...)
52 (void)str;
56 /* expect+1: warning: parameter 'str' unused in function 'argsused_bad_body' [231] */
57 argsused_bad_body(const char *str)
    [all...]
msg_058.c 12 function(i, dbl, str)
15 const char *str;
18 return i + (int)dbl + str[0];
msg_058.c 12 function(i, dbl, str)
15 const char *str;
18 return i + (int)dbl + str[0];
msg_215.c 14 struct str { struct
20 test(struct str str, const double *p_double)
29 /* expect+2: error: type 'struct str' does not have member 'member' [101] */
31 str.member();
msg_215.c 14 struct str { struct
20 test(struct str str, const double *p_double)
29 /* expect+2: error: type 'struct str' does not have member 'member' [101] */
31 str.member();
  /src/sys/arch/evbmips/sbmips/
leds.h 37 void cswarm_setleds(const char *str);
leds.h 37 void cswarm_setleds(const char *str);
  /src/sys/arch/sbmips/include/
leds.h 37 void cswarm_setleds(const char *str);
leds.h 37 void cswarm_setleds(const char *str);
  /src/sys/dev/acpi/
acpidevs_data.h 10 const struct { const char *pnp, *str; } acpi_knowndevs[] = { member in struct:__anoncef4f6530108
acpidevs_data.h 10 const struct { const char *pnp, *str; } acpi_knowndevs[] = { member in struct:__anoncef4f6530108
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_stacktrace_printer_test.cc 20 InternalScopedString str(128); local in function:__sanitizer::TEST
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.clear()
54 InternalScopedString str(128); local in function:__sanitizer::TEST
80 InternalScopedString str(256); local in function:__sanitizer::TEST
    [all...]
sanitizer_stacktrace_printer_test.cc 20 InternalScopedString str(128); local in function:__sanitizer::TEST
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.clear()
54 InternalScopedString str(128); local in function:__sanitizer::TEST
80 InternalScopedString str(256); local in function:__sanitizer::TEST
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dml/
dml_logger.h 35 #define dml_print(str, ...) {DC_LOG_DML(str, ##__VA_ARGS__); }
36 #define DTRACE(str, ...) {DC_LOG_DML(str, ##__VA_ARGS__); }
dml_logger.h 35 #define dml_print(str, ...) {DC_LOG_DML(str, ##__VA_ARGS__); }
36 #define DTRACE(str, ...) {DC_LOG_DML(str, ##__VA_ARGS__); }
  /src/sbin/dump/
unctime.c 53 unctime(const char *str)
57 str = strptime(str, "%a %b %e %H:%M:%S %Y", &then);
59 if (str == NULL || (*str != '\n' && *str != '\0'))
unctime.c 53 unctime(const char *str)
57 str = strptime(str, "%a %b %e %H:%M:%S %Y", &then);
59 if (str == NULL || (*str != '\n' && *str != '\0'))
  /src/lib/libterminfo/
tputs.c 53 _ti_calcdelay(const char **str, int affcnt, int *mand)
59 while (isdigit(*(const unsigned char *)*str))
60 i = i * 10 + *(*str)++ - '0';
62 if (*(*str) == '.') {
63 (*str)++;
64 if (isdigit(*(const unsigned char *)*str))
65 i += *(*str) - '0';
66 while (isdigit(*(const unsigned char *)*str))
67 (*str)++;
69 if (*(*str) == '*')
    [all...]

Completed in 27 milliseconds

1 2 3 4 5 6 7 8 91011>>