Searched refs:desc (Results 351 - 375 of 1919) sorted by relevance

<<11121314151617181920>>

/freebsd-current/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyMCTargetDesc.cpp26 #define DEBUG_TYPE "wasm-mc-target-desc"
43 cl::desc("WebAssembly Emscripten-style exception handling"),
48 cl::desc("WebAssembly Emscripten-style setjmp/longjmp handling"),
53 cl::desc("WebAssembly exception handling"));
56 "wasm-enable-sjlj", cl::desc("WebAssembly setjmp/longjmp handling"));
/freebsd-current/contrib/llvm-project/clang/lib/Basic/
H A DLangStandards.cpp49 #define LANGSTANDARD(id, name, lang, desc, features) \
50 static const LangStandard Lang_##id = {name, desc, features, Language::lang};
57 #define LANGSTANDARD(id, name, lang, desc, features) \
66 #define LANGSTANDARD(id, name, lang, desc, features) .Case(name, lang_##id)
/freebsd-current/contrib/llvm-project/llvm/lib/IR/
H A DPrintPasses.cpp22 llvm::cl::desc("Print IR before specified passes"),
26 PrintAfter("print-after", llvm::cl::desc("Print IR after specified passes"),
30 llvm::cl::desc("Print IR before each pass"),
33 llvm::cl::desc("Print IR after each pass"),
61 "print-changed", cl::desc("Print changed IRs"), cl::Hidden,
83 cl::desc("system diff used by change reporters"));
87 cl::desc("When printing IR for print-[before|after]{-all} "
95 cl::desc("Only consider IR changes for passes whose names "
101 cl::desc("Only print IR for functions whose name "
/freebsd-current/contrib/llvm-project/llvm/lib/Analysis/
H A DDevelopmentModeInlineAdvisor.cpp36 cl::desc("Path where the development - mode inlining log is saved."));
40 cl::desc(R"(Path to SavedModel from the previous training iteration.
69 cl::desc("Override the path to the output spec json file. See "
75 cl::desc("Prefix for feature names."));
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-dis/
H A Dllvm-dis.cpp42 cl::desc("[input bitcode]..."),
46 cl::desc("Override output filename"),
50 static cl::opt<bool> Force("f", cl::desc("Enable binary output on terminals"),
54 cl::desc("Don't output the .ll file"),
59 cl::desc("Set lazy loading to pretend to import a module"),
64 cl::desc("Add informational comments to the .ll file"),
69 cl::desc("Preserve use-list order when writing LLVM assembly."),
74 cl::desc("Load module without materializing metadata, "
80 cl::desc("Only read thinlto index and print the index as LLVM assembly."),
/freebsd-current/libexec/rc/rc.d/
H A Dbgfsck12 desc="Run fsck in background"
H A Dzvol12 desc="Activate swap on ZVOLs"
H A Dwatchdogd36 desc="Watchdog daemon"
H A Dtmp35 desc="Configure tmpfs"
H A Dugidfw12 desc="Firewall-like access controls for file system objects"
H A Dstatic_arp38 desc="Static ARP Configuration"
H A Dftp-proxy12 desc="Internet File Transfer Protocol proxy daemon"
H A Dhostname36 desc="Set the system\'s hostname"
H A Dhostapd12 desc="Authenticator for IEEE 802.11 networks"
H A Dhostid_save12 desc="Save unique host ID to disk"
H A Dmountcritlocal12 desc="Mount critical local filesystems"
H A Dnscd21 desc="Name-service caching daemon"
H A Dbthidd13 desc="Bluetooth HID daemon"
H A Drtadvd14 desc="Router advertisement daemon"
H A Dnfsclient12 desc="NFS client setup"
/freebsd-current/sys/arm64/vmm/
H A Dvmm_stat.c61 if (vst->desc == NULL)
65 printf("Cannot accommodate vmm stat type \"%s\"!\n", vst->desc);
141 vst->desc, index - vst->index);
143 strlcpy(buf, vst->desc, bufsize);
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-mca/
H A Dllvm-mca.cpp72 cl::desc("<input file>"),
75 static cl::opt<std::string> OutputFilename("o", cl::desc("Output filename"),
81 cl::desc("Target architecture. "
87 cl::desc("Target triple. See -version for available targets"),
92 cl::desc("Target a specific cpu type (-mcpu=help for details)"),
97 cl::desc("Target specific attributes (-mattr=help for details)"),
101 cl::desc("Print the output in json format"),
106 cl::desc("Syntax variant to use for output printing"),
111 cl::desc("Prefer hex format when printing immediate values"));
114 cl::desc("Numbe
[all...]
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-debuginfo-analyzer/
H A DOptions.cpp46 cmdline::InputFilenames(cl::desc("<input object files or .dSYM bundles>"),
59 "attribute", cl::cat(AttributeCategory), cl::desc("Element attributes."),
139 cl::desc("Add the view as compare context."), cl::Hidden,
145 "compare", cl::cat(CompareCategory), cl::desc("Elements to compare."),
163 cl::desc("Redirect output to the specified file."),
170 cl::desc("Folder name for view splitting."),
177 cl::desc("Only print to a depth of N elements."),
183 "output", cl::cat(OutputCategory), cl::desc("Outputs for view."),
196 cl::desc("Primary key when ordering logical view (default: line)."),
213 "print", cl::cat(PrintCategory), cl::desc("Elemen
[all...]
/freebsd-current/sys/dev/xilinx/
H A Daxidma.c106 struct axidma_desc desc; member in struct:axidma_softc
144 struct axidma_desc *desc; local
171 desc = chan->descs[chan->idx_tail];
172 if ((desc->status & BD_STATUS_CMPLT) == 0)
176 st.transferred = desc->status & BD_CONTROL_LEN_M;
454 struct axidma_desc *desc; local
484 desc = chan->descs[chan->idx_head];
486 desc->phys = src_addr;
488 desc->phys = dst_addr;
489 desc
521 struct axidma_desc *desc; local
[all...]
/freebsd-current/sys/arm/allwinner/
H A Daw_sid.c69 char desc[EFUSE_DESC_SIZE]; member in struct:aw_sid_efuse
80 .desc = "Root Key or ChipID",
91 .desc = "Root Key or ChipID",
100 .desc = "Thermal Sensor Calibration Data",
112 .desc = "Root Key or ChipID",
121 .desc = "Thermal Sensor Calibration Data",
133 .desc = "Root Key or ChipID",
142 .desc = "Thermal Sensor Calibration Data",
154 .desc = "Root Key or ChipID",
163 .desc
[all...]

Completed in 117 milliseconds

<<11121314151617181920>>