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

123456

/freebsd-13-stable/crypto/openssl/include/openssl/
H A Dui.h42 UI *UI_new(void);
43 UI *UI_new_method(const UI_METHOD *method);
44 void UI_free(UI *ui);
70 All of the functions in this group take a UI and a prompt string.
89 int UI_add_input_string(UI *ui, const char *prompt, int flags,
91 int UI_dup_input_string(UI *ui, const char *prompt, int flags,
93 int UI_add_verify_string(UI *ui, const char *prompt, int flags,
96 int UI_dup_verify_string(UI *ui, const char *prompt, int flags,
99 int UI_add_input_boolean(UI *ui, const char *prompt, const char *action_desc,
102 int UI_dup_input_boolean(UI *u
[all...]
/freebsd-13-stable/crypto/openssl/crypto/ui/
H A Dui_local.h31 int (*ui_open_session) (UI *ui);
32 int (*ui_write_string) (UI *ui, UI_STRING *uis);
37 int (*ui_flush) (UI *ui);
38 int (*ui_read_string) (UI *ui, UI_STRING *uis);
39 int (*ui_close_session) (UI *ui);
42 * allows some backends to save away UI information for later use.
44 void *(*ui_duplicate_data) (UI *ui, void *ui_data);
45 void (*ui_destroy_data) (UI *ui, void *ui_data);
53 char *(*ui_construct_prompt) (UI *ui, const char *object_desc,
71 * Otherwise, it may be allocated by the UI
[all...]
H A Dui_lib.c18 UI *UI_new(void)
23 UI *UI_new_method(const UI_METHOD *method)
25 UI *ret = OPENSSL_zalloc(sizeof(*ret));
73 void UI_free(UI *ui)
86 static int allocate_string_stack(UI *ui)
97 static UI_STRING *general_allocate_prompt(UI *ui, const char *prompt,
119 static int general_allocate_string(UI *ui, const char *prompt,
146 static int general_allocate_boolean(UI *ui,
198 int UI_add_input_string(UI *ui, const char *prompt, int flags,
207 int UI_dup_input_string(UI *u
[all...]
H A Dui_util.c36 UI *ui;
99 static int ui_open(UI *ui)
103 static int ui_read(UI *ui, UI_STRING *uis)
133 static int ui_write(UI *ui, UI_STRING *uis)
137 static int ui_close(UI *ui)
H A Dui_openssl.c193 static int read_string_inner(UI *ui, UI_STRING *uis, int echo, int strip_nl);
195 static int read_string(UI *ui, UI_STRING *uis);
196 static int write_string(UI *ui, UI_STRING *uis);
198 static int open_console(UI *ui);
199 static int echo_console(UI *ui);
200 static int noecho_console(UI *ui);
201 static int close_console(UI *ui);
207 static int write_string(UI *ui, UI_STRING *uis)
224 static int read_string(UI *ui, UI_STRING *uis)
280 static int read_string_inner(UI *u
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/tools/opt/
H A DAnalysisWrappers.cpp39 Instruction *UI = dyn_cast<Instruction>(U); variable
40 if (!UI) continue;
42 CallBase *CB = dyn_cast<CallBase>(UI);
53 errs() << *UI;
/freebsd-13-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-13-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-13-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 (const auto *CS = dyn_cast<CallBase>(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
353 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-13-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-13-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp489 static void printWin64EHUnwindInfo(const Win64EH::UnwindInfo *UI) { argument
493 outs() << " Version: " << static_cast<int>(UI->getVersion()) << "\n";
494 outs() << " Flags: " << static_cast<int>(UI->getFlags());
495 if (UI->getFlags()) {
496 if (UI->getFlags() & UNW_ExceptionHandler)
498 if (UI->getFlags() & UNW_TerminateHandler)
500 if (UI->getFlags() & UNW_ChainInfo)
504 outs() << " Size of prolog: " << static_cast<int>(UI->PrologSize) << "\n";
505 outs() << " Number of Codes: " << static_cast<int>(UI->NumCodes) << "\n";
507 if (UI
[all...]
/freebsd-13-stable/sys/modules/netgraph/
H A DMakefile55 UI \
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DValue.h165 use_iterator_impl<Use> UI; member in class:llvm::Value::user_iterator_impl
166 explicit user_iterator_impl(Use *U) : UI(U) {}
172 bool operator==(const user_iterator_impl &x) const { return UI == x.UI; }
179 ++UI;
191 return UI->getUser();
197 return user_iterator_impl<const UserTy>(*UI);
200 Use &getUse() const { return *UI; }
305 for (use_iterator UI = use_begin(), E = use_end(); UI !
[all...]
H A DAbstractCallSite.h131 /// Return true if @p UI is the use that defines the callee of this ACS.
132 bool isCallee(Value::const_user_iterator UI) const {
133 return isCallee(&UI.getUse());
/freebsd-13-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-13-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-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
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-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DStackSafetyAnalysis.cpp305 for (const Use &UI : V->uses()) {
306 const auto *I = cast<Instruction>(UI.getUser());
310 assert(V == UI.get());
319 getAccessRange(UI, Ptr, DL.getTypeStoreSize(I->getType())));
337 UI, Ptr, DL.getTypeStoreSize(I->getOperand(0)->getType())));
359 US.updateRange(getMemIntrinsicAccessRange(MI, UI, Ptr));
364 if (!CB.isArgOperand(&UI)) {
369 unsigned ArgNo = CB.getArgOperandNo(&UI);
372 UI, Ptr, DL.getTypeStoreSize(CB.getParamByValType(ArgNo))));
387 US.Calls.emplace_back(Callee, ArgNo, offsetFrom(UI, Pt
416 auto &UI = Info.Allocas.emplace(AI, PointerSize).first->second; local
424 auto &UI = Info.Params.emplace(A.getArgNo(), PointerSize).first->second; local
[all...]
H A DIVDescriptors.cpp340 Instruction *UI = cast<Instruction>(U); local
343 BasicBlock *Parent = UI->getParent();
371 if (VisitedInsts.insert(UI).second) {
372 if (isa<PHINode>(UI))
373 PHIs.push_back(UI);
375 NonPHIs.push_back(UI);
376 } else if (!isa<PHINode>(UI) &&
377 ((!isa<FCmpInst>(UI) && !isa<ICmpInst>(UI) &&
378 !isa<SelectInst>(UI)) ||
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyLowerEmscriptenEHSjLj.cpp617 for (auto UI = I.use_begin(), UE = I.use_end(); UI != UE;) {
618 Use &U = *UI;
619 ++UI;
715 auto *UI = cast<Instruction>(U); local
716 SetjmpUsers.insert(UI->getFunction());
1125 for (auto UI = SetjmpTable->use_begin(), UE = SetjmpTable->use_end();
1126 UI != UE;) {
1128 Use &U = *UI;
1130 ++UI;
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeTypes.cpp92 for (SDNode::use_iterator UI = Node.use_begin(), UE = Node.use_end();
93 UI != UE; ++UI)
94 if (UI.getUse().getResNo() == i)
95 assert(UI->getNodeId() == NewNode &&
185 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
186 UI != UE; ++UI)
187 assert(UI->getNodeId() == NewNode && "NewNode used by non-NewNode!");
399 for (SDNode::use_iterator UI
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DPromoteMemoryToRegister.cpp135 for (auto UI = AI->user_begin(), E = AI->user_end(); UI != E;) {
136 Instruction *User = cast<Instruction>(*UI++);
319 for (auto UI = AI->user_begin(), UE = AI->user_end(); UI != UE;) {
320 Instruction *I = cast<Instruction>(*UI);
321 ++UI;
358 for (auto UI = AI->user_begin(), E = AI->user_end(); UI != E;) {
359 Instruction *UserInst = cast<Instruction>(*UI
[all...]

Completed in 516 milliseconds

123456