| /netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| H A D | dmacro.c | 102 unsigned char instring = 0; in extractArgN() local 122 if (!inexp && !instring && !incomment && parens == 1) in extractArgN() 139 if (!inexp && !instring && !incomment) in extractArgN() 144 if (!inexp && !instring && !incomment && --parens == 0) in extractArgN() 154 if (c == instring) in extractArgN() 155 instring = 0; in extractArgN() 156 else if (!instring) in extractArgN() 157 instring = c; in extractArgN() 162 if (!inexp && !instring && !incomment) in extractArgN() 185 !instring && in extractArgN()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
| H A D | dmacro.d | 325 ubyte instring = 0; in extractArgN() local 344 if (!inexp && !instring && !incomment && parens == 1) in extractArgN() 362 if (!inexp && !instring && !incomment) in extractArgN() 366 if (!inexp && !instring && !incomment && --parens == 0) in extractArgN() 375 if (c == instring) in extractArgN() 376 instring = 0; in extractArgN() 377 else if (!instring) in extractArgN() 378 instring = c; in extractArgN() 382 if (!inexp && !instring && !incomment) in extractArgN() 398 … if (!inexp && !instring && incomment && v + 2 < end && p[v + 1] == '-' && p[v + 2] == '>') in extractArgN()
|
| /netbsd-src/external/gpl3/binutils.old/dist/gas/config/ |
| H A D | tc-vax.c | 1951 char *instring) /* Text of a vax instruction: we modify. */ in vip() argument 1969 if (*instring == ' ') in vip() 1970 ++instring; in vip() 1973 for (p = instring; *p && *p != ' '; p++) in vip() 1978 if (p - instring == 0) in vip() 1991 vwP = (struct vot_wot *) str_hash_find (op_hash, instring); in vip() 2016 instring = p; /* Point just past operation code. */ in vip() 2026 else if (*instring) in vip() 2028 for (q = instring; (c = *q) && c != ','; q++) in vip() 2036 vip_op (instring, operandp); in vip() [all …]
|
| H A D | tc-m68k.c | 1312 m68k_ip (char *instring) in m68k_ip() argument 1329 if (*instring == ' ') in m68k_ip() 1330 instring++; /* Skip leading whitespace. */ in m68k_ip() 1335 for (p = instring; *p != '\0'; p++) in m68k_ip() 1343 if (p == instring) in m68k_ip() 1362 opcode = (const struct m68k_incant *) str_hash_find (op_hash, instring); in m68k_ip() 1826 && startswith (instring, "jbsr"))) in m68k_ip() 2007 && instring[3] != 'q' in m68k_ip() 2008 && instring[4] != 'q') in m68k_ip() 2026 && (startswith (instring, "add") in m68k_ip() [all …]
|
| /netbsd-src/external/gpl3/binutils/dist/gas/config/ |
| H A D | tc-vax.c | 1951 char *instring) /* Text of a vax instruction: we modify. */ in vip() argument 1969 if (*instring == ' ') in vip() 1970 ++instring; in vip() 1973 for (p = instring; *p && *p != ' '; p++) in vip() 1978 if (p - instring == 0) in vip() 1991 vwP = (struct vot_wot *) str_hash_find (op_hash, instring); in vip() 2016 instring = p; /* Point just past operation code. */ in vip() 2026 else if (*instring) in vip() 2028 for (q = instring; (c = *q) && c != ','; q++) in vip() 2036 vip_op (instring, operandp); in vip() [all …]
|
| H A D | tc-m68k.c | 1310 m68k_ip (char *instring) in m68k_ip() argument 1327 if (*instring == ' ') in m68k_ip() 1328 instring++; /* Skip leading whitespace. */ in m68k_ip() 1333 for (p = instring; *p != '\0'; p++) in m68k_ip() 1341 if (p == instring) in m68k_ip() 1360 opcode = (const struct m68k_incant *) str_hash_find (op_hash, instring); in m68k_ip() 1824 && startswith (instring, "jbsr"))) in m68k_ip() 2005 && instring[3] != 'q' in m68k_ip() 2006 && instring[4] != 'q') in m68k_ip() 2024 && (startswith (instring, "add") in m68k_ip() [all …]
|
| /netbsd-src/external/gpl2/gmake/dist/ |
| H A D | job.c | 2315 int instring, word_has_equals, seen_nonequals, last_argument_was_empty; in construct_command_argv_internal() local 2409 instring = word_has_equals = seen_nonequals = last_argument_was_empty = 0; in construct_command_argv_internal() 2414 if (instring) in construct_command_argv_internal() 2418 if (*p == instring) in construct_command_argv_internal() 2420 instring = 0; in construct_command_argv_internal() 2432 if (instring == '"' in construct_command_argv_internal() 2457 else if (instring == '"' && strchr ("\\$`", *p) != 0 && unixy_shell) in construct_command_argv_internal() 2536 instring = *p; in construct_command_argv_internal() 2598 if (instring) in construct_command_argv_internal()
|
| /netbsd-src/external/gpl3/binutils/dist/gprofng/libcollector/ |
| H A D | linetrace.c | 134 static char * build_experiment_path (char *instring, size_t instring_sz, const char *lineage_str); 549 build_experiment_path (char * instring, size_t instring_sz, const char *lineage_str) in build_experiment_path() argument 565 *instring = 0; in build_experiment_path() 568 __collector_strlcpy (instring, linetrace_exp_dir_name, basedir_sz); in build_experiment_path() 569 size_t slen = __collector_strlen (instring); in build_experiment_path() 570 CALL_UTIL (snprintf)(instring + slen, instring_sz - slen, "/%s.er", lineage_str); in build_experiment_path() 571 assert (__collector_strlen (instring) + 1 == basedir_sz + additional_sz); in build_experiment_path() 572 return instring; in build_experiment_path()
|
| /netbsd-src/external/gpl3/binutils.old/dist/gprofng/libcollector/ |
| H A D | linetrace.c | 114 static char * build_experiment_path (char *instring, size_t instring_sz, const char *lineage_str); 529 build_experiment_path (char * instring, size_t instring_sz, const char *lineage_str) in build_experiment_path() argument 545 *instring = 0; in build_experiment_path() 548 __collector_strlcpy (instring, linetrace_exp_dir_name, basedir_sz); in build_experiment_path() 549 size_t slen = __collector_strlen (instring); in build_experiment_path() 550 CALL_UTIL (snprintf)(instring + slen, instring_sz - slen, "/%s.er", lineage_str); in build_experiment_path() 551 assert (__collector_strlen (instring) + 1 == basedir_sz + additional_sz); in build_experiment_path() 552 return instring; in build_experiment_path()
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/root/ |
| H A D | filename.c | 75 { char instring = 0; in splitPath() local 86 instring ^= 1; // toggle inside/outside of string in splitPath()
|
| /netbsd-src/external/bsd/pcc/dist/pcc/cc/ccom/ |
| H A D | symtabs.c | 639 instring(sp); in strend() 658 instring(sp); in strprint()
|
| H A D | pass1.h | 350 void instring(struct symtab *);
|
| H A D | pftn.c | 1267 instring(struct symtab *sp) in instring() function
|
| /netbsd-src/external/bsd/pcc/dist/pcc/arch/pdp11/ |
| H A D | local.c | 216 instring(struct symtab *sp) in instring() function
|
| /netbsd-src/external/bsd/pcc/dist/pcc/cc/cxxcom/ |
| H A D | pass1.h | 320 void instring(struct symtab *);
|
| H A D | pftn.c | 1286 instring(sp); in strend() 1323 instring(struct symtab *sp) in instring() function
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/root/ |
| H A D | filename.d | 535 if (!instring) // if not in string
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/fortran/ |
| H A D | match.cc | 255 gfc_instring instring; in gfc_match_parens() local 260 instring = NONSTRING; in gfc_match_parens() 267 c = gfc_next_char_literal (instring); in gfc_match_parens() 273 instring = INSTRING_WARN; in gfc_match_parens() 279 instring = NONSTRING; in gfc_match_parens()
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/fortran/ |
| H A D | match.c | 255 gfc_instring instring; in gfc_match_parens() local 260 instring = NONSTRING; in gfc_match_parens() 267 c = gfc_next_char_literal (instring); in gfc_match_parens() 273 instring = INSTRING_WARN; in gfc_match_parens() 279 instring = NONSTRING; in gfc_match_parens()
|
| /netbsd-src/external/gpl3/binutils/dist/gprofng/common/ |
| H A D | hwctable.c | 3906 hwc_lookup (int forKernel, hrtime_t global_min_time_nsec, const char *instring, in hwc_lookup() argument 3939 instring ? instring : "NULL"); in hwc_lookup() 3944 if (!instring) in hwc_lookup() 3976 ss = instr_copy = strdup (instring); in hwc_lookup()
|
| /netbsd-src/external/gpl3/binutils.old/dist/gprofng/common/ |
| H A D | hwctable.c | 3870 hwc_lookup (int forKernel, hrtime_t global_min_time_nsec, const char *instring, in hwc_lookup() argument 3903 instring ? instring : "NULL"); in hwc_lookup() 3908 if (!instring) in hwc_lookup() 3940 ss = instr_copy = strdup (instring); in hwc_lookup()
|
| /netbsd-src/external/bsd/pcc/dist/pcc/arch/powerpc/ |
| H A D | local.c | 804 instring(struct symtab *sp) function
|
| /netbsd-src/external/gpl3/binutils/dist/gas/ |
| H A D | ChangeLog-9697 | 2217 * config/tc-m68k.c (instring): Useless local declaration of
|
| /netbsd-src/external/gpl3/binutils.old/dist/gas/ |
| H A D | ChangeLog-9697 | 2217 * config/tc-m68k.c (instring): Useless local declaration of
|