Searched refs:N_UNDF (Results 1 - 25 of 25) sorted by relevance

/freebsd-11-stable/sys/sys/
H A Dnlist_aout.h71 #define N_UNDF 0x00 /* undefined */ macro
/freebsd-11-stable/contrib/gdb/include/
H A Dbout.h123 #define N_UNDF 0 /* Undefined symbol */ macro
/freebsd-11-stable/lib/libc/gen/
H A Dnlist.c381 nl->n_type = N_UNDF;
389 nl->n_type = N_UNDF;
395 (sh->sh_type == SHT_NOBITS ? N_BSS : N_UNDF);
/freebsd-11-stable/lib/libkvm/
H A Dkvm.c591 if (p->n_type != N_UNDF)
615 if (p->n_type != N_UNDF)
638 if (np->n_type != N_UNDF)
646 if (p->n_type != N_UNDF)
661 if (np->n_type != N_UNDF)
711 if (p->n_type != N_UNDF)
/freebsd-11-stable/contrib/binutils/gas/config/
H A Daout_gnu.h237 #define N_UNDF 0
245 /* Note: N_EXT can only usefully be OR-ed with N_UNDF, N_ABS, N_TEXT,
236 #define N_UNDF macro
H A Dobj-aout.c45 if (type == (N_UNDF | N_EXT)
/freebsd-11-stable/contrib/binutils/include/aout/
H A Daout64.h282 #define N_UNDF 0 /* Undefined symbol. */
290 /* Note: N_EXT can only be usefully OR-ed with N_UNDF, N_ABS, N_TEXT,
280 #define N_UNDF macro
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DMachONormalizedFile.h139 Symbol() : type(llvm::MachO::N_UNDF), scope(0), sect(0), desc(0), value(0) { }
H A DMachONormalizedFileYAML.cpp265 io.enumCase(value, "N_UNDF", llvm::MachO::N_UNDF);
467 if (sym.type == llvm::MachO::N_UNDF) {
H A DMachONormalizedFileBinaryReader.cpp401 else if (sout.type == N_UNDF)
431 if (sout.type == N_UNDF)
H A DMachONormalizedFileFromAtoms.cpp1136 sym.type = N_UNDF;
H A DMachONormalizedFileToAtoms.cpp585 } else if ((sym->type & N_TYPE) == N_UNDF) {
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/
H A DObject.h116 return (n_type & MachO::N_TYPE) == MachO::N_UNDF;
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp375 NType |= MachO::N_EXT | MachO::N_UNDF;
461 case MachO::N_UNDF:
563 if ((NType & MachO::N_TYPE) != MachO::N_UNDF &&
566 if ((NType & MachO::N_TYPE) != MachO::N_UNDF && NDesc & MachO::N_ALT_ENTRY)
568 if ((NType & MachO::N_TYPE) != MachO::N_UNDF && NDesc & MachO::N_COLD_FUNC)
592 (((NType & MachO::N_TYPE) == MachO::N_UNDF && NValue == 0) ||
1429 U.NType = MachO::N_EXT | MachO::N_UNDF;
1490 B.NType = MachO::N_EXT | MachO::N_UNDF;
1549 L.NType = MachO::N_EXT | MachO::N_UNDF;
1612 W.NType = MachO::N_EXT | MachO::N_UNDF;
[all...]
/freebsd-11-stable/usr.bin/ldd/
H A Dsods.c483 case N_UNDF: strcpy(type, "undf"); break;
/freebsd-11-stable/contrib/binutils/bfd/
H A Daoutx.h1429 case N_UNDF | N_EXT:
1590 sym_pointer->e_type[0] = N_UNDF | N_EXT;
1594 sym_pointer->e_type[0] = N_UNDF | N_EXT;
1647 case N_UNDF: type = N_WEAKU; break;
2995 case N_UNDF:
3012 case N_UNDF | N_EXT:
3291 if (type == (N_UNDF | N_EXT))
3568 type = N_UNDF | N_EXT;
3594 type = N_UNDF | N_EXT;
3865 case N_UNDF
[all...]
H A Dsunos.c2246 type = N_UNDF | N_EXT;
2262 type = N_UNDF | N_EXT;
2291 type = N_UNDF | N_EXT;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DMachOLinkGraphBuilder.cpp310 case MachO::N_UNDF:
/freebsd-11-stable/contrib/gdb/gdb/
H A Ddbxread.c1401 case N_UNDF | N_EXT:
1414 nlist.n_type ^= (N_BSS ^ N_UNDF); /* Define it as a bss-symbol */
1420 case N_UNDF:
3266 /* N_UNDF: Solaris 2: file separator mark */
3267 /* N_UNDF: -- we will never encounter it, since we only process one
H A Dmdebugread.c2808 case N_UNDF | N_EXT:
2811 case N_UNDF:
/freebsd-11-stable/contrib/binutils/binutils/
H A Dobjdump.c2287 else if (type == N_UNDF)
2295 /* Symbols with type == 0 (N_UNDF) specify the length of the
2298 if (type == N_UNDF)
/freebsd-11-stable/contrib/binutils/gas/
H A Dsymbols.c354 #ifdef N_UNDF
355 know (N_UNDF == 0);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DMachObjectWriter.cpp364 Type = MachO::N_UNDF;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
H A DMachOObjectFile.cpp1724 (((NType & MachO::N_TYPE) == MachO::N_UNDF && NValue == 0) ||
1829 case MachO::N_UNDF :
1859 if ((MachOType & MachO::N_TYPE) == MachO::N_UNDF) {
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMachO.h304 N_UNDF = 0x0u,

Completed in 230 milliseconds