Home
last modified time | relevance | path

Searched refs:str2 (Results 1 – 14 of 14) sorted by relevance

/toolchain/binutils/binutils-2.25/bfd/
Daix5ppc-core.c248 const char *str1, *str2; in xcoff64_core_file_matches_executable_p() local
292 str2 = strrchr (exec_bfd->filename, '/'); in xcoff64_core_file_matches_executable_p()
296 str2 = str2 != NULL ? str2 + 1 : exec_bfd->filename; in xcoff64_core_file_matches_executable_p()
298 if (strcmp (str1, str2) == 0) in xcoff64_core_file_matches_executable_p()
Drs6000-core.c662 const char *str1, *str2; in rs6000coff_core_file_matches_executable_p() local
715 str2 = strrchr (exec_bfd->filename, '/'); in rs6000coff_core_file_matches_executable_p()
719 str2 = str2 != NULL ? str2 + 1 : exec_bfd->filename; in rs6000coff_core_file_matches_executable_p()
721 if (strcmp (str1, str2) == 0) in rs6000coff_core_file_matches_executable_p()
DChangeLog-94954886 str1 and str2 const pointers.
/toolchain/binutils/binutils-2.25/gold/testsuite/
Dicf_string_merge_test.cc31 const char* const str2 = "bbbbaaaaaastr1"; variable
40 return str2; in get2()
/toolchain/binutils/binutils-2.25/libiberty/
Dmemcmp.c23 memcmp (const PTR str1, const PTR str2, size_t count) in memcmp() argument
26 register const unsigned char *s2 = (const unsigned char*)str2; in memcmp()
/toolchain/binutils/binutils-2.25/gas/config/
Dtc-m32r.c896 assemble_two_insns (char *str1, char *str2, int parallel_p) in assemble_two_insns() argument
902 char save_str2 = *str2; in assemble_two_insns()
905 *str2 = 0; in assemble_two_insns()
978 *str2 = save_str2; in assemble_two_insns()
984 str1 = str2 + 2; in assemble_two_insns()
988 str2 = str3; in assemble_two_insns()
1095 as_bad (_("'%s': only the NOP instruction can be issued in parallel on the m32r"), str2); in assemble_two_insns()
1124 …put of 1st instruction is the same as an input to 2nd instruction - is this intentional ?"), str2); in assemble_two_insns()
1128 …put of 2nd instruction is the same as an input to 1st instruction - is this intentional ?"), str2); in assemble_two_insns()
1175 as_bad ("'%s': %s", str2, errmsg); in assemble_two_insns()
[all …]
Dtc-d10v.c1724 char *str2; in md_assemble() local
1729 str2 = strstr (str, "||"); in md_assemble()
1730 if (str2) in md_assemble()
1734 str2 = strstr (str, "->"); in md_assemble()
1735 if (str2) in md_assemble()
1739 str2 = strstr (str, "<-"); in md_assemble()
1740 if (str2) in md_assemble()
1746 if (str2) in md_assemble()
1748 *str2 = 0; in md_assemble()
1761 str = str2 + 2; in md_assemble()
Dtc-d30v.c1574 char *str2; in md_assemble() local
1591 str2 = strstr (str, "||"); in md_assemble()
1592 if (str2) in md_assemble()
1599 str2 = strstr (str, "->"); in md_assemble()
1600 if (str2) in md_assemble()
1604 str2 = strstr (str, "<-"); in md_assemble()
1605 if (str2) in md_assemble()
1611 if (str2) in md_assemble()
1613 *str2 = 0; in md_assemble()
1626 str = str2 + 2; in md_assemble()
Dtc-i370.c592 char *str2; in i370_elf_suffix() local
609 for (ch = *str, str2 = ident; in i370_elf_suffix()
610 (str2 < ident + sizeof (ident) - 1 in i370_elf_suffix()
613 *str2++ = TOLOWER (ch); in i370_elf_suffix()
615 *str2 = '\0'; in i370_elf_suffix()
616 len = str2 - ident; in i370_elf_suffix()
Dtc-ppc.c1874 char *str2; in ppc_elf_suffix() local
1986 for (ch = *str, str2 = ident; in ppc_elf_suffix()
1987 (str2 < ident + sizeof (ident) - 1 in ppc_elf_suffix()
1991 *str2++ = TOLOWER (ch); in ppc_elf_suffix()
1994 *str2 = '\0'; in ppc_elf_suffix()
1995 len = str2 - ident; in ppc_elf_suffix()
Dtc-m68k.c7997 char *str2; in m68k_elf_suffix() local
8004 for (ch = *str, str2 = ident; in m68k_elf_suffix()
8005 (str2 < ident + sizeof (ident) - 1 in m68k_elf_suffix()
8009 *str2++ = ch; in m68k_elf_suffix()
8012 *str2 = '\0'; in m68k_elf_suffix()
8013 len = str2 - ident; in m68k_elf_suffix()
Dtc-xtensa.c1658 char *str2; in xtensa_elf_suffix() local
1666 for (ch = *str, str2 = ident; in xtensa_elf_suffix()
1667 (str2 < ident + sizeof (ident) - 1 in xtensa_elf_suffix()
1671 *str2++ = (ISLOWER (ch)) ? ch : TOLOWER (ch); in xtensa_elf_suffix()
1674 *str2 = '\0'; in xtensa_elf_suffix()
1675 len = str2 - ident; in xtensa_elf_suffix()
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/
Dmerge2.s12 .section .rodata.str2,"aMS","progbits",4
/toolchain/binutils/binutils-2.25/gas/doc/
Dc-tic54x.texi711 @item @code{$symcmp(@var{str1},@var{str2})}
712 Returns 0 if @var{str1} == @var{str2}, non-zero otherwise.