Home
last modified time | relevance | path

Searched refs:tempbuf (Results 1 – 10 of 10) sorted by relevance

/dragonfly/contrib/gdb-7/gdb/
HDd-lang.c34 extract_identifiers (const char *mangled_str, struct obstack *tempbuf) in extract_identifiers() argument
46 obstack_grow (tempbuf, mangled_str, i); in extract_identifiers()
48 obstack_grow_str (tempbuf, "."); in extract_identifiers()
52 obstack_blank (tempbuf, -1); in extract_identifiers()
59 extract_type_info (const char *mangled_str, struct obstack *tempbuf) in extract_type_info() argument
68 if (!extract_type_info (mangled_str, tempbuf)) in extract_type_info()
70 obstack_grow_str (tempbuf, "[]"); in extract_type_info()
73 if (!extract_type_info (mangled_str, tempbuf)) in extract_type_info()
75 obstack_grow_str (tempbuf, "*"); in extract_type_info()
78 if (!extract_type_info (mangled_str, tempbuf)) in extract_type_info()
[all …]
HDgo-lang.c339 struct obstack tempbuf; in go_demangle() local
359 obstack_init (&tempbuf); in go_demangle()
366 obstack_grow_str (&tempbuf, "(*"); in go_demangle()
367 obstack_grow_str (&tempbuf, method_type_package_name); in go_demangle()
368 obstack_grow_str (&tempbuf, "."); in go_demangle()
369 obstack_grow_str (&tempbuf, method_type_object_name); in go_demangle()
371 obstack_grow_str (&tempbuf, ")"); in go_demangle()
372 obstack_grow_str (&tempbuf, "."); in go_demangle()
373 obstack_grow_str (&tempbuf, object_name); in go_demangle()
377 obstack_grow_str (&tempbuf, package_name); in go_demangle()
[all …]
HDp-exp.y1135 static char *tempbuf; in yylex() local
1354 tempbuf = (char *) realloc (tempbuf, tempbufsize += 64); in yylex()
1370 tempbuf[tempbufindex++] = c; in yylex()
1373 tempbuf[tempbufindex++] = *tokptr++; in yylex()
1381 tempbuf[tempbufindex] = '\0'; /* See note above. */ in yylex()
1382 yylval.sval.ptr = tempbuf; in yylex()
1596 tempbuf = (char *) realloc (tempbuf, namelen + 1); in yylex()
1597 strncpy (tempbuf, tokstart, namelen); tempbuf [namelen] = 0; in yylex()
1598 yylval.sval.ptr = tempbuf; in yylex()
HDf-exp.y880 static char *tempbuf; /* Current buffer contents */ variable
905 if (tempbuf == NULL) in growbuf_by_size()
906 tempbuf = (char *) malloc (tempbufsize); in growbuf_by_size()
908 tempbuf = (char *) realloc (tempbuf, tempbufsize); in growbuf_by_size()
935 tempbuf[tempbufindex++] = *tokptr; in match_string_literal()
942 tempbuf[tempbufindex] = '\0'; in match_string_literal()
943 yylval.sval.ptr = tempbuf; in match_string_literal()
HDjv-exp.y864 static char *tempbuf; in yylex() local
1061 tempbuf = (char *) realloc (tempbuf, tempbufsize += 64); in yylex()
1076 tempbuf[tempbufindex++] = c; in yylex()
1079 tempbuf[tempbufindex++] = *tokptr++; in yylex()
1087 tempbuf[tempbufindex] = '\0'; /* See note above */ in yylex()
1088 yylval.sval.ptr = tempbuf; in yylex()
HDgo-exp.y900 static struct obstack tempbuf; variable
928 obstack_free (&tempbuf, NULL); in parse_string_or_char()
929 obstack_init (&tempbuf); in parse_string_or_char()
943 *host_chars += c_parse_escape (&tokptr, &tempbuf); in parse_string_or_char()
949 obstack_1grow (&tempbuf, c); in parse_string_or_char()
968 value->ptr = obstack_base (&tempbuf); in parse_string_or_char()
969 value->length = obstack_object_size (&tempbuf); in parse_string_or_char()
HDgo-exp.c2708 static struct obstack tempbuf; variable
2736 obstack_free (&tempbuf, NULL); in parse_string_or_char()
2737 obstack_init (&tempbuf); in parse_string_or_char()
2751 *host_chars += c_parse_escape (&tokptr, &tempbuf); in parse_string_or_char()
2757 obstack_1grow (&tempbuf, c); in parse_string_or_char()
2776 value->ptr = obstack_base (&tempbuf); in parse_string_or_char()
2777 value->length = obstack_object_size (&tempbuf); in parse_string_or_char()
HDc-exp.y1879 static struct obstack tempbuf; variable
2072 obstack_free (&tempbuf, NULL); in parse_string_or_char()
2073 obstack_init (&tempbuf); in parse_string_or_char()
2115 *host_chars += c_parse_escape (&tokptr, &tempbuf); in parse_string_or_char()
2121 obstack_1grow (&tempbuf, c); in parse_string_or_char()
2140 value->ptr = obstack_base (&tempbuf); in parse_string_or_char()
2141 value->length = obstack_object_size (&tempbuf); in parse_string_or_char()
/dragonfly/sbin/fsdb/
HDfsdbutil.c182 char tempbuf[32]; /* enough to print an ufs_daddr_t */ in printindir() local
205 j = sprintf(tempbuf, "%d", blkno); in printindir()
213 fputs(tempbuf, stdout); in printindir()
/dragonfly/gnu/usr.bin/rcs/lib/
HDrcsfnms.c688 static struct buf tempbuf; local
723 bufscpy(&tempbuf, base);
724 workname = p = tempbuf.string;