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

123456

/freebsd-11-stable/crypto/openssl/crypto/ui/
H A Dui.h74 /* typedef struct ui_st UI; */
85 UI *UI_new(void);
86 UI *UI_new_method(const UI_METHOD *method);
87 void UI_free(UI *ui);
113 All of the functions in this group take a UI and a prompt string.
132 int UI_add_input_string(UI *ui, const char *prompt, int flags,
134 int UI_dup_input_string(UI *ui, const char *prompt, int flags,
136 int UI_add_verify_string(UI *ui, const char *prompt, int flags,
139 int UI_dup_verify_string(UI *ui, const char *prompt, int flags,
142 int UI_add_input_boolean(UI *u
[all...]
H A Dui_locl.h81 int (*ui_open_session) (UI *ui);
82 int (*ui_write_string) (UI *ui, UI_STRING *uis);
87 int (*ui_flush) (UI *ui);
88 int (*ui_read_string) (UI *ui, UI_STRING *uis);
89 int (*ui_close_session) (UI *ui);
97 char *(*ui_construct_prompt) (UI *ui, const char *object_desc,
111 * Otherwise, it may be allocated by the UI
H A Dui_lib.c72 UI *UI_new(void)
77 UI *UI_new_method(const UI_METHOD *method)
79 UI *ret;
81 ret = (UI *)OPENSSL_malloc(sizeof(UI));
115 void UI_free(UI *ui)
124 static int allocate_string_stack(UI *ui)
135 static UI_STRING *general_allocate_prompt(UI *ui, const char *prompt,
157 static int general_allocate_string(UI *ui, const char *prompt,
182 static int general_allocate_boolean(UI *u
[all...]
H A Dui_openssl.c315 static int read_string_inner(UI *ui, UI_STRING *uis, int echo, int strip_nl);
317 static int read_string(UI *ui, UI_STRING *uis);
318 static int write_string(UI *ui, UI_STRING *uis);
320 static int open_console(UI *ui);
321 static int echo_console(UI *ui);
322 static int noecho_console(UI *ui);
323 static int close_console(UI *ui);
345 static int write_string(UI *ui, UI_STRING *uis)
359 static int read_string(UI *ui, UI_STRING *uis)
413 static int read_string_inner(UI *u
[all...]
H A Dui_util.c76 UI *ui;
/freebsd-11-stable/contrib/llvm-project/llvm/tools/opt/
H A DAnalysisWrappers.cpp40 Instruction *UI = dyn_cast<Instruction>(U); variable
41 if (!UI) continue;
43 CallSite CS(cast<Value>(UI));
54 errs() << *UI;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonOptimizeSZextends.cpp77 for (auto UI = Arg.use_begin(); UI != Arg.use_end();) {
78 if (isa<SExtInst>(*UI)) {
79 Instruction* Use = cast<Instruction>(*UI);
83 ++UI;
89 ++UI;
131 for (auto UI = Ashr->user_begin(), UE = Ashr->user_end();
132 UI != UE; ++UI) {
133 const Use &TheUse = UI
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DWin64EHDumper.cpp45 static uint64_t getOffsetOfLSDA(const UnwindInfo& UI) { argument
46 return static_cast<const char*>(UI.getLanguageSpecificData())
47 - reinterpret_cast<const char*>(&UI);
219 void Dumper::printUnwindCode(const UnwindInfo& UI, ArrayRef<UnwindCode> UC) { argument
241 if (UI.getFrameRegister() == 0)
244 OS << " reg=" << getUnwindRegisterName(UI.getFrameRegister())
245 << format(", offset=0x%X", UI.getFrameOffset() * 16);
277 off_t Offset, const UnwindInfo &UI) {
279 SW.printNumber("Version", UI.getVersion());
280 SW.printFlags("Flags", UI
276 printUnwindInfo(const Context &Ctx, const coff_section *Section, off_t Offset, const UnwindInfo &UI) argument
350 const auto UI = reinterpret_cast<const UnwindInfo*>(Contents.data() + Offset); local
[all...]
H A DWin64EHDumper.h47 void printUnwindCode(const UnwindInfo& UI, ArrayRef<UnwindCode> UC);
49 off_t Offset, const UnwindInfo &UI);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DSpeculateAroundPHIs.cpp58 auto *UI = cast<Instruction>(U.getUser()); local
65 if (UI->getParent() != PhiBB) {
66 LLVM_DEBUG(dbgs() << " Unsafe: use in a different BB: " << *UI << "\n");
70 if (auto CS = ImmutableCallSite(UI)) {
73 "callsite cannot de duplicated: " << *UI << '\n');
84 if (mayBeMemoryDependent(*UI)) {
85 LLVM_DEBUG(dbgs() << " Unsafe: can't speculate use: " << *UI << "\n");
92 Visited.insert(UI);
93 DFSStack.push_back({UI, UI
349 auto *UI = cast<Instruction>(U.getUser()); local
[all...]
H A DReg2Mem.cpp53 const Instruction *UI = cast<Instruction>(U); local
54 if (UI->getParent() != BB || isa<PHINode>(UI))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXLowerAlloca.cpp81 for (Value::use_iterator UI = allocaInst->use_begin(),
83 UI != UE;) {
89 const auto &AllocaUse = *UI++;
H A DNVPTXImageOptimizer.cpp151 for (CallInst::use_iterator UI = From->use_begin(), UE = From->use_end();
152 UI != UE; ++UI) {
153 if (BranchInst *BI = dyn_cast<BranchInst>(*UI)) {
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp488 static void printWin64EHUnwindInfo(const Win64EH::UnwindInfo *UI) { argument
492 outs() << " Version: " << static_cast<int>(UI->getVersion()) << "\n";
493 outs() << " Flags: " << static_cast<int>(UI->getFlags());
494 if (UI->getFlags()) {
495 if (UI->getFlags() & UNW_ExceptionHandler)
497 if (UI->getFlags() & UNW_TerminateHandler)
499 if (UI->getFlags() & UNW_ChainInfo)
503 outs() << " Size of prolog: " << static_cast<int>(UI->PrologSize) << "\n";
504 outs() << " Number of Codes: " << static_cast<int>(UI->NumCodes) << "\n";
506 if (UI
[all...]
/freebsd-11-stable/gnu/usr.bin/groff/font/devlj4/
H A DMakefile11 UB UBI UI UR \
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp234 auto *UI = Builder.CreateUnreachable();
236 Instruction *ThenTI = UI, *ElseTI = nullptr;
238 SplitBlockAndInsertIfThenElse(IfCondition, UI, &ThenTI, &ElseTI);
262 Builder.SetInsertPoint(UI->getParent());
263 UI->eraseFromParent();
358 auto *UI = new UnreachableInst(Builder.getContext(), InsertBB); local
360 Instruction *ThenTI = UI, *ElseTI = nullptr;
362 SplitBlockAndInsertIfThenElse(IfCondition, UI, &ThenTI, &ElseTI);
418 LLVM_DEBUG(dbgs() << "Before body codegen: " << *UI->getFunction() << "\n");
425 LLVM_DEBUG(dbgs() << "After body codegen: " << *UI
[all...]
/freebsd-11-stable/sys/modules/netgraph/
H A DMakefile53 UI \
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DValueList.cpp169 auto UI = Placeholder->user_begin(); local
170 User *U = *UI;
175 UI.getUse().set(RealVal);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DValue.h167 use_iterator_impl<Use> UI; member in class:llvm::Value::user_iterator_impl
168 explicit user_iterator_impl(Use *U) : UI(U) {}
174 bool operator==(const user_iterator_impl &x) const { return UI == x.UI; }
181 ++UI;
193 return UI->getUser();
199 return user_iterator_impl<const UserTy>(*UI);
202 Use &getUse() const { return *UI; }
307 for (use_iterator UI = use_begin(), E = use_end(); UI !
[all...]
H A DCallSite.h150 bool isCallee(Value::const_user_iterator UI) const {
151 return isCallee(&UI.getUse());
158 bool isArgOperand(Value::const_user_iterator UI) const {
159 return isArgOperand(&UI.getUse());
169 bool isBundleOperand(Value::const_user_iterator UI) const {
170 return isBundleOperand(&UI.getUse());
184 bool isDataOperand(Value::const_user_iterator UI) const {
185 return isDataOperand(&UI.getUse());
230 unsigned getDataOperandNo(Value::const_user_iterator UI) const {
231 return getDataOperandNo(&UI
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64StackTaggingPreRA.cpp174 for (auto UI = MRI->use_instr_begin(TaggedReg), E = MRI->use_instr_end();
175 UI != E;) {
176 MachineInstr *UseI = &*(UI++);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DSafeStackColoring.cpp82 auto *UI = dyn_cast<Instruction>(U); local
83 if (!UI)
86 if (!readMarker(UI, &IsStart))
90 BBMarkerSet[UI->getParent()][UI] = {AllocaNo, IsStart};
91 Markers.push_back(UI);
H A DInterleavedAccessPass.cpp293 for (auto UI = LI->user_begin(), E = LI->user_end(); UI != E; UI++) {
294 auto *Extract = dyn_cast<ExtractElementInst>(*UI);
299 ShuffleVectorInst *SVI = dyn_cast<ShuffleVectorInst>(*UI);
/freebsd-11-stable/contrib/groff/font/devlj4/
H A DMakefile.sub14 UB UBI UI UR \
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DLocalizer.cpp67 auto UI = MRI->use_instr_nodbg_begin(Reg), UE = MRI->use_instr_nodbg_end();
68 for (; UI != UE && NumUses < MaxUses; ++UI) {
72 return UI == UE;

Completed in 598 milliseconds

123456