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

12

/freebsd-11-stable/usr.sbin/kgzip/
H A Daouthdr.c59 N_DATA | N_EXT, /* n_type */
69 N_DATA | N_EXT, /* n_type */
/freebsd-11-stable/sys/sys/
H A Dnlist_aout.h86 #define N_FN 0x1e /* file name (N_EXT on) */
87 #define N_WARN 0x1e /* warning message (N_EXT off) */
89 #define N_EXT 0x01 /* external (global) bit, OR'ed in */ macro
/freebsd-11-stable/contrib/gdb/include/
H A Dbout.h130 #define N_EXT 1 /* External symbol (OR'd in with one of above) */ macro
/freebsd-11-stable/contrib/binutils/gas/config/
H A Dobj-aout.c43 if (! (type & ~ (N_TYPE | N_EXT)))
45 if (type == (N_UNDF | N_EXT)
62 type |= N_EXT;
97 if (type & N_EXT)
H A Daout_gnu.h245 /* Note: N_EXT can only usefully be OR-ed with N_UNDF, N_ABS, N_TEXT,
248 #define N_EXT 1
432 (the N_EXT bit may be set also, but signifies nothing). */
247 #define N_EXT macro
/freebsd-11-stable/contrib/binutils/bfd/
H A Daoutx.h1416 if ((cache_ptr->type & N_EXT) == 0)
1424 case N_ABS: case N_ABS | N_EXT:
1429 case N_UNDF | N_EXT:
1443 case N_TEXT: case N_TEXT | N_EXT:
1455 case N_SETV: case N_SETV | N_EXT:
1456 case N_DATA: case N_DATA | N_EXT:
1462 case N_BSS: case N_BSS | N_EXT:
1468 case N_SETA: case N_SETA | N_EXT:
1469 case N_SETT: case N_SETT | N_EXT:
1470 case N_SETD: case N_SETD | N_EXT
[all...]
H A Dbout.c794 case N_TEXT | N_EXT:
799 case N_DATA | N_EXT:
804 case N_BSS | N_EXT:
809 case N_ABS | N_EXT:
H A Dsunos.c2246 type = N_UNDF | N_EXT;
2262 type = N_UNDF | N_EXT;
2283 type |= N_EXT;
2291 type = N_UNDF | N_EXT;
/freebsd-11-stable/contrib/gdb/gdb/
H A Ddbxread.c440 case N_TEXT | N_EXT:
445 case N_DATA | N_EXT:
450 case N_BSS | N_EXT:
455 case N_ABS | N_EXT:
461 case N_SETV | N_EXT:
1065 type |= N_EXT;
1324 case N_TEXT | N_EXT:
1325 case N_NBTEXT | N_EXT:
1329 case N_DATA | N_EXT:
1330 case N_NBDATA | N_EXT
[all...]
H A Dmdebugread.c2769 case N_TEXT | N_EXT:
2770 case N_NBTEXT | N_EXT:
2774 case N_DATA | N_EXT:
2775 case N_NBDATA | N_EXT:
2780 case N_BSS | N_EXT:
2781 case N_NBBSS | N_EXT:
2782 case N_SETV | N_EXT: /* FIXME, is this in BSS? */
2786 case N_ABS | N_EXT:
2808 case N_UNDF | N_EXT:
2827 case N_INDR | N_EXT
[all...]
/freebsd-11-stable/usr.bin/ldd/
H A Dsods.c482 switch (np->n_type & ~N_EXT) {
496 case N_FN: strcpy(type, np->n_type&N_EXT ? "fn" : "warn"); break;
528 if (np->n_type & N_EXT && type[0] != '0')
/freebsd-11-stable/usr.bin/gprof/
H A Daout.c199 if ( ! ( ( nlistp -> n_type == ( N_TEXT | N_EXT ) )
/freebsd-11-stable/contrib/binutils/include/aout/
H A Daout64.h290 /* Note: N_EXT can only be usefully OR-ed with N_UNDF, N_ABS, N_TEXT,
293 #define N_EXT 1 /* External symbol (as opposed to local-to-this-file). */
398 (the N_EXT bit may be set also, but signifies nothing). */
291 #define N_EXT macro
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DMachONormalizedFileBinaryReader.cpp395 sout.scope = (sin->n_type & (N_PEXT|N_EXT));
403 else if (sin->n_type & N_EXT)
427 sout.scope = (sin->n_type & (N_PEXT|N_EXT));
433 else if (sout.scope == (SymbolScope)N_EXT)
H A DMachONormalizedFileFromAtoms.cpp1001 scope = N_PEXT | N_EXT;
1013 scope = N_EXT;
1022 scope = N_EXT;
1117 AtomAndIndex ai = { atom, 0, N_EXT };
1121 AtomAndIndex ai = { atom, 0, N_EXT };
H A DMachONormalizedFileToAtoms.cpp215 case N_EXT:
218 case N_PEXT | N_EXT:
1577 assert((sym.scope & N_EXT) && "only expect external symbols here");
H A DMachONormalizedFileYAML.cpp276 io.bitSetCase(value, "N_EXT", llvm::MachO::N_EXT);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/
H A DObject.h110 return n_type & ((MachO::N_EXT | MachO::N_PEXT));
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp371 NType |= MachO::N_EXT;
375 NType |= MachO::N_EXT | MachO::N_UNDF;
534 if (NType & MachO::N_EXT) {
1346 S.NType = MachO::N_EXT | MachO::N_ABS;
1349 S.NType = MachO::N_EXT | MachO::N_INDR;
1352 S.NType = MachO::N_EXT | MachO::N_SECT;
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 | Mach
[all...]
/freebsd-11-stable/lib/libc/gen/
H A Dnlist.c402 nl->n_type |= N_EXT;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DMachOLinkGraphBuilder.cpp71 if (Type & MachO::N_EXT)
/freebsd-11-stable/contrib/llvm-project/lldb/tools/compact-unwind/
H A Dcompact-unwind-dumper.c328 ((nlist.n_type & N_EXT) == 1 ||
358 ((nlist.n_type & N_EXT) == 1 ||
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DMachODumper.cpp647 if (MOSymbol.Type & MachO::N_EXT)
/freebsd-11-stable/lib/libkvm/
H A Dkvm.c108 list->n_type = N_DATA | N_EXT;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DMachObjectWriter.cpp377 Type |= MachO::N_EXT;

Completed in 363 milliseconds

12