HomeSort by relevance Sort by last modified time
    Searched defs:bsd (Results 1 - 3 of 3) sorted by null

  /external/gptfdisk/
bsd.h 0 /* bsd.h -- BSD disklabel data structure definitions, types, and functions */
14 #define BSD_SIGNATURE UINT32_C(0x82564557) /* BSD disklabel signature ("magic") */
16 // BSD disklabels can start at offsets of 64 or the sector size -- at least,
43 enum BSDValidity {unknown, bsd_invalid, bsd}; enumerator in enum:BSDValidity
45 // Data for a single BSD partition record
57 // Full data in tweaked BSD format
63 // We only need a few items from the main BSD disklabel data structure....
70 // Above are basic BSD disklabel data; now add more stuff....
71 uint64_t labelFirstLBA; // first sector of BSD disklabel (partition or disk
    [all...]
  /external/swiftshader/third_party/LLVM/tools/llvm-nm/
llvm-nm.cpp 43 enum OutputFormatTy { bsd, sysv, posix }; enumerator in enum:__anon31651::OutputFormatTy
47 cl::values(clEnumVal(bsd, "BSD format"),
50 clEnumValEnd), cl::init(bsd));
71 cl::opt<bool> BSDFormat("B", cl::desc("Alias for --format=bsd"));
169 } else if (OutputFormat == bsd && MultipleFiles) {
202 } else if (OutputFormat == bsd) {
374 if (BSDFormat) OutputFormat = bsd;
  /external/llvm/tools/llvm-nm/
llvm-nm.cpp 54 enum OutputFormatTy { bsd, sysv, posix, darwin }; enumerator in enum:__anon26145::OutputFormatTy
57 cl::values(clEnumVal(bsd, "BSD format"), clEnumVal(sysv, "System V format"),
60 cl::init(bsd));
88 cl::opt<bool> BSDFormat("B", cl::desc("Alias for --format=bsd"),
619 } else if (OutputFormat == bsd && MultipleFiles && printName) {
708 // OutputFormat bsd (see below).
719 } else if (OutputFormat == bsd || (OutputFormat == darwin && !MachO)) {
    [all...]

Completed in 1113 milliseconds