Searched refs:q (Results 1 – 6 of 6) sorted by relevance
/scripts/basic/ |
D | fixdep.c | 239 const char *q, *r; in parse_config_file() local 248 q = p; in parse_config_file() 249 while (isalnum(*q) || *q == '_') in parse_config_file() 250 q++; in parse_config_file() 251 if (str_ends_with(p, q - p, "_MODULE")) in parse_config_file() 252 r = q - 7; in parse_config_file() 254 r = q; in parse_config_file() 257 p = q; in parse_config_file()
|
/scripts/kconfig/ |
D | preprocess.c | 459 const char *q; in expand_dollar_with_args() local 473 q = p; in expand_dollar_with_args() 474 while (*q) { in expand_dollar_with_args() 475 if (*q == '(') { in expand_dollar_with_args() 477 } else if (*q == ')') { in expand_dollar_with_args() 481 q++; in expand_dollar_with_args() 484 if (!*q) in expand_dollar_with_args() 488 *str = q + 1; in expand_dollar_with_args() 490 return eval_clause(p, q - p, argc, argv); in expand_dollar_with_args()
|
/scripts/ |
D | asn1_compiler.c | 349 char *line, *nl, *start, *p, *q; in tokenise() local 381 q = p + 2; in tokenise() 382 while ((q = memchr(q, '-', nl - q))) { in tokenise() 383 if (q[1] == '-') { in tokenise() 385 q += 2; in tokenise() 386 memmove(p, q, nl - q); in tokenise() 389 q++; in tokenise() 417 q = p + 1; in tokenise() 418 while (q < nl && (isalnum(*q) || *q == '-' || *q == '_')) in tokenise() 419 q++; in tokenise() [all …]
|
D | Kconfig.include | 43 $(error-if,$(success, $(LD) -v | grep -q gold), gold linker '$(LD)' not supported)
|
/scripts/dtc/libfdt/ |
D | fdt_ro.c | 260 const char *q = memchr(path, '/', end - p); in fdt_path_offset_namelen() local 262 if (!q) in fdt_path_offset_namelen() 263 q = end; in fdt_path_offset_namelen() 265 p = fdt_get_alias_namelen(fdt, p, q - p); in fdt_path_offset_namelen() 270 p = q; in fdt_path_offset_namelen() 274 const char *q; in fdt_path_offset_namelen() local 281 q = memchr(p, '/', end - p); in fdt_path_offset_namelen() 282 if (! q) in fdt_path_offset_namelen() 283 q = end; in fdt_path_offset_namelen() 285 offset = fdt_subnode_offset_namelen(fdt, offset, p, q-p); in fdt_path_offset_namelen() [all …]
|
/scripts/dtc/ |
D | data.c | 60 char *q; in data_copy_escape_string() local 65 q = d.val; in data_copy_escape_string() 72 q[d.len++] = c; in data_copy_escape_string() 75 q[d.len++] = '\0'; in data_copy_escape_string()
|