Searched refs:symlen (Results 1 – 8 of 8) sorted by relevance
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic54x/ |
D | subsym.s | 14 label: .word $symlen(SYMBOL) ; 5, substitutes string for symbol 15 .word $symlen(":SYMBOL:") ; 5, forced substitution 16 .word $symlen("SYMBOL") ; 6, uses string directly
|
/toolchain/binutils/binutils-2.25/gas/config/ |
D | obj-evax.c | 104 int symlen = strlen (symname); in evax_frob_symbol() local 107 if (symlen > 4 in evax_frob_symbol() 108 && strcmp (symname + symlen - 4, "..en") == 0 in evax_frob_symbol()
|
D | tc-alpha.c | 1358 int symlen = strlen (symname); in load_expression() local 1360 if ((symlen > 4 && in load_expression() 1361 strcmp (ptr2 = &symname [symlen - 4], "..lk") == 0)) in load_expression() 2180 int symlen = strlen (symname); in emit_ir_load() local 2191 (symlen > 4 && strcmp (&symname [symlen - 4], "..lk") == 0)) in emit_ir_load() 2881 int symlen = strlen (symname); in emit_jsrjmp() local 2885 ensymname = (char *) alloca (symlen + 5); in emit_jsrjmp() 2886 memcpy (ensymname, symname, symlen); in emit_jsrjmp() 2887 memcpy (ensymname + symlen, "..en", 5); in emit_jsrjmp()
|
/toolchain/binutils/binutils-2.25/gold/ |
D | archive.cc | 70 size_t symlen = ver - sym_name; in should_include_member() local 71 if (symlen + 1 > *tmpbuflen) in should_include_member() 73 tmpbuf = static_cast<char*>(xrealloc(tmpbuf, symlen + 1)); in should_include_member() 75 *tmpbuflen = symlen + 1; in should_include_member() 77 memcpy(tmpbuf, sym_name, symlen); in should_include_member() 78 tmpbuf[symlen] = '\0'; in should_include_member()
|
/toolchain/binutils/binutils-2.25/gas/doc/ |
D | c-tic54x.texi | 706 @cindex @code{$symlen} subsym builtin, TIC54X 707 @item @code{$symlen(@var{str})}
|
/toolchain/binutils/binutils-2.25/bfd/ |
D | mach-o.c | 2456 unsigned int symlen; in bfd_mach_o_write_contents() local 2459 symlen = wide ? BFD_MACH_O_NLIST_64_SIZE : BFD_MACH_O_NLIST_SIZE; in bfd_mach_o_write_contents() 2466 mdata->filelen += symtab->nsyms * symlen; in bfd_mach_o_write_contents()
|
D | vms-alpha.c | 5011 unsigned int symlen = *cur_sym; in alpha_vms_slurp_relocs() local 5015 symlen = *cur_sym; in alpha_vms_slurp_relocs() 5020 if (PRIV (syms)[j]->namelen == symlen in alpha_vms_slurp_relocs() 5021 && memcmp (PRIV (syms)[j]->name, cur_sym, symlen) == 0) in alpha_vms_slurp_relocs()
|
D | elflink.c | 7636 size_t symlen; in eval_symbol() local 7669 symlen = strtol (sym, (char **) symp, 10); in eval_symbol() 7672 if (symend < sym || symlen + 1 > sizeof (symbuf)) in eval_symbol() 7678 memcpy (symbuf, sym, symlen); in eval_symbol() 7679 symbuf[symlen] = '\0'; in eval_symbol() 7680 *symp = sym + symlen; in eval_symbol()
|