HomeSort by: relevance | last modified time | path
    Searched refs:str (Results 1 - 25 of 1004) 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[]
  /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_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_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_211.c 8 struct str { struct
13 return_int(double dbl, void *ptr, struct str str)
20 if (str.member > 0)
21 /* expect+1: error: function has return type 'int' but returns 'struct str' [211] */
22 return str;
  /src/sys/arch/evbmips/sbmips/
leds.h 37 void cswarm_setleds(const char *str);
  /src/sys/arch/sbmips/include/
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
  /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...]
  /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__); }
  /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'))
  /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...]
  /src/lib/libc/stdlib/
atoi.c 45 atoi(const char *str)
47 _DIAGASSERT(str != NULL);
49 return((int)strtol(str, NULL, 10));
atol.c 45 atol(const char *str)
47 _DIAGASSERT(str != NULL);
49 return(strtol(str, (char **)NULL, 10));
  /src/sys/arch/luna68k/dev/xplx/
cdump.awk 32 str = array[2 + i]
33 if (str !~ "[[:xdigit:]]{2}") {
44 printf "0x%s,", str
  /src/include/ssp/
stdio.h 55 #define sprintf(str, ...) \
56 __builtin___sprintf_chk(str, 0, __ssp_bos(str), __VA_ARGS__)
58 #define vsprintf(str, fmt, ap) \
59 __builtin___vsprintf_chk(str, 0, __ssp_bos(str), fmt, ap)
61 #define snprintf(str, len, ...) \
62 __builtin___snprintf_chk(str, len, 0, __ssp_bos(str), __VA_ARGS__)
64 #define vsnprintf(str, len, fmt, ap)
    [all...]
  /src/lib/libc/posix1e/
acl_from_text_nfs4.c 55 * Parse the tag field of ACL entry passed as "str". If qualifier
60 parse_tag(const char *str, acl_entry_t entry, int *need_qualifier)
66 if (strcmp(str, "owner@") == 0)
68 if (strcmp(str, "group@") == 0)
70 if (strcmp(str, "everyone@") == 0)
75 if (strcmp(str, "user") == 0 || strcmp(str, "u") == 0)
77 if (strcmp(str, "group") == 0 || strcmp(str, "g") == 0)
86 * Parse the qualifier field of ACL entry passed as "str"
    [all...]
  /src/sys/arch/ia64/stand/common/
interp_backslash.c 31 * backslash: Return malloc'd copy of str with all standard "backslash
35 backslash(char *str)
49 if ((new_str = strdup(str)) == NULL)
52 while (*str) {
55 switch (*str) {
58 str++;
66 new_str[i++] = *str++;
71 str++;
76 str++;
81 str++
    [all...]
  /src/bin/pax/
gen_subs.c 186 safe_print(const char *str, FILE *fp)
195 for (cp = str; *cp; cp++) {
200 (void)fputs(str, fp);
215 asc_u32(char *str, int len, int base)
220 stop = str + len;
225 while ((str < stop) && ((*str == ' ') || (*str == '0')))
226 ++str;
233 while (str < stop)
    [all...]
  /src/lib/libcurses/
instr.c 55 instr(char *str)
57 return winstr(stdscr, str);
61 innstr(char *str, int n)
63 return winnstr(stdscr, str, n);
74 mvinstr(int y, int x, char *str)
76 return mvwinstr(stdscr, y, x, str);
80 mvinnstr(int y, int x, char *str, int n)
82 return mvwinnstr(stdscr, y, x, str, n);
93 mvwinstr(WINDOW *win, int y, int x, char *str)
98 return winstr(win, str);
    [all...]
  /src/sys/dev/isa/
esp_isavar.h 110 #define ESP_TRACE(str) \
111 do {if (esp_isa_debug & ESP_SHOWTRAC) printf str;} while (0)
112 #define ESP_REGS(str) \
113 do {if (esp_isa_debug & ESP_SHOWREGS) printf str;} while (0)
114 #define ESP_MISC(str) \
115 do {if (esp_isa_debug & ESP_SHOWMISC) printf str;} while (0)
117 #define ESP_TRACE(str)
118 #define ESP_REGS(str)
119 #define ESP_MISC(str)
  /src/sys/modules/examples/properties/
properties.c 42 prop_string_t str; local in function:handle_props
45 str = prop_dictionary_get(props, "msg");
48 str = NULL;
50 if (str == NULL)
52 else if (prop_object_type(str) != PROP_TYPE_STRING)
55 msg = prop_string_cstring_nocopy(str);
  /src/sys/lib/libsa/
stat.c 37 stat(const char *str, struct stat *sb)
41 fd = open(str, 0);

Completed in 16 milliseconds

1 2 3 4 5 6 7 8 91011>>