Home
last modified time | relevance | path

Searched refs:tmpbuf (Results 1 – 8 of 8) sorted by relevance

/toolchain/binutils/binutils-2.25/gprof/
Dbasic_blocks.c341 char tmpbuf[NBBS * 30]; in annotate_with_count() local
349 p = tmpbuf; in annotate_with_count()
397 if (p > tmpbuf) in annotate_with_count()
411 if (bb_annotate_all_lines && p == tmpbuf) in annotate_with_count()
433 strcpy (tmpbuf, "#####"); in annotate_with_count()
434 p = tmpbuf + 5; in annotate_with_count()
440 len = p - tmpbuf; in annotate_with_count()
443 strncpy (buf, tmpbuf, width); in annotate_with_count()
450 strcpy (buf + width - len, tmpbuf); in annotate_with_count()
/toolchain/binutils/binutils-2.25/gold/
Darchive.cc65 char* tmpbuf = *tmpbufp; in should_include_member() local
73 tmpbuf = static_cast<char*>(xrealloc(tmpbuf, symlen + 1)); in should_include_member()
74 *tmpbufp = tmpbuf; in should_include_member()
77 memcpy(tmpbuf, sym_name, symlen); in should_include_member()
78 tmpbuf[symlen] = '\0'; in should_include_member()
79 sym_name = tmpbuf; in should_include_member()
772 char* tmpbuf = NULL; in add_symbols() local
802 &why, &tmpbuf, &tmpbuflen); in add_symbols()
819 if (tmpbuf != NULL) in add_symbols()
820 free(tmpbuf); in add_symbols()
[all …]
Dplugin.cc1152 char* tmpbuf = NULL; in do_should_include_member() local
1164 &tmpbuf, in do_should_include_member()
1168 if (tmpbuf != NULL) in do_should_include_member()
1169 free(tmpbuf); in do_should_include_member()
1173 if (tmpbuf != NULL) in do_should_include_member()
1174 free(tmpbuf); in do_should_include_member()
Dobject.cc1985 char* tmpbuf = NULL; in do_should_include_member() local
2011 &tmpbuf, in do_should_include_member()
2015 if (tmpbuf != NULL) in do_should_include_member()
2016 free(tmpbuf); in do_should_include_member()
2020 if (tmpbuf != NULL) in do_should_include_member()
2021 free(tmpbuf); in do_should_include_member()
/toolchain/binutils/binutils-2.25/bfd/
Dxtensa-isa.c1039 static xtensa_insnbuf tmpbuf = 0; in xtensa_operand_encode() local
1042 if (!tmpbuf) in xtensa_operand_encode()
1044 tmpbuf = xtensa_insnbuf_alloc (isa); in xtensa_operand_encode()
1045 CHECK_ALLOC (tmpbuf, -1); in xtensa_operand_encode()
1067 (*set_fn) (tmpbuf, *valp); in xtensa_operand_encode()
1068 return ((*get_fn) (tmpbuf) != *valp); in xtensa_operand_encode()
/toolchain/binutils/binutils-2.25/gas/config/
Dtc-microblaze.c762 char *tmpbuf; in check_got() local
796 tmpbuf = xmalloc (first + second + 2); /* One extra byte for ' ' and one for NUL. */ in check_got()
797 memcpy (tmpbuf, input_line_pointer, first); in check_got()
798 tmpbuf[first] = ' '; /* @GOTOFF is replaced with a single space. */ in check_got()
799 memcpy (tmpbuf + first + 1, past_got, second); in check_got()
800 tmpbuf[first + second + 1] = '\0'; in check_got()
802 return tmpbuf; in check_got()
Dtc-i386.c7527 char *tmpbuf, *past_reloc; in lex_got() local
7558 tmpbuf = (char *) xmalloc (first + second + 2); in lex_got()
7559 memcpy (tmpbuf, input_line_pointer, first); in lex_got()
7563 tmpbuf[first++] = ' '; in lex_got()
7570 memcpy (tmpbuf + first, past_reloc, second); in lex_got()
7571 tmpbuf[first + second] = '\0'; in lex_got()
7574 return tmpbuf; in lex_got()
7639 char *tmpbuf, *past_reloc; in lex_got() local
7669 tmpbuf = (char *) xmalloc (first + second + 2); in lex_got()
7670 memcpy (tmpbuf, input_line_pointer, first); in lex_got()
[all …]
/toolchain/binutils/binutils-2.25/binutils/
Ddllwrap.c939 char *tmpbuf = (char *) xmalloc (sizeof ("0x12345678") + 1); in main() local
941 sprintf (tmpbuf, "0x%.8lX", 0x60000000|((hash<<16)&0xFFC0000)); in main()
942 image_base_str = tmpbuf; in main()