Home
last modified time | relevance | path

Searched refs:UI (Results 1 – 25 of 146) sorted by relevance

123456

/freebsd/crypto/openssl/include/openssl/
H A Dui.h53 UI *UI_new(void);
54 UI *UI_new_method(const UI_METHOD *method);
55 void UI_free(UI *ui);
164 char *UI_construct_prompt(UI *ui_method,
186 void *UI_get0_user_data(UI *ui);
189 const char *UI_get0_result(UI *ui, int i);
190 int UI_get_result_length(UI *ui, int i);
193 int UI_process(UI *ui);
223 void *UI_get_ex_data(const UI *r, int idx);
228 const UI_METHOD *UI_get_method(UI *ui);
[all …]
H A Dui.h.in54 UI *UI_new(void);
55 UI *UI_new_method(const UI_METHOD *method);
56 void UI_free(UI *ui);
165 char *UI_construct_prompt(UI *ui_method,
187 void *UI_get0_user_data(UI *ui);
191 int UI_get_result_length(UI *ui, int i);
194 int UI_process(UI *ui);
199 * used to get information from a UI.
229 const UI_METHOD *UI_get_method(UI *ui);
282 them back into the UI strings.
[all …]
/freebsd/crypto/openssl/crypto/ui/
H A Dui_lib.c18 UI *UI_new(void) in UI_new()
23 UI *UI_new_method(const UI_METHOD *method) in UI_new_method()
25 UI *ret = OPENSSL_zalloc(sizeof(*ret)); in UI_new_method()
73 void UI_free(UI *ui) in UI_free()
86 static int allocate_string_stack(UI *ui) in allocate_string_stack()
146 static int general_allocate_boolean(UI *ui, in general_allocate_boolean()
426 void *UI_get0_user_data(UI *ui) in UI_get0_user_data()
444 int UI_get_result_length(UI *ui, int i) in UI_get_result_length()
471 int UI_process(UI *ui) in UI_process()
587 const UI_METHOD *UI_get_method(UI *ui) in UI_get_method()
[all …]
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);
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,
H A Dui_openssl.c191 static int read_string(UI *ui, UI_STRING *uis);
194 static int open_console(UI *ui);
195 static int echo_console(UI *ui);
196 static int noecho_console(UI *ui);
197 static int close_console(UI *ui);
203 static int write_string(UI *ui, UI_STRING *uis) in write_string()
220 static int read_string(UI *ui, UI_STRING *uis) in read_string()
373 static int open_console(UI *ui) in open_console()
485 static int noecho_console(UI *ui) in noecho_console()
521 static int echo_console(UI *ui) in echo_console()
[all …]
H A Dui_util.c36 UI *ui; in UI_UTIL_read_pw()
99 static int ui_open(UI *ui) in ui_open()
103 static int ui_read(UI *ui, UI_STRING *uis) in ui_read()
133 static int ui_write(UI *ui, UI_STRING *uis) in ui_write()
137 static int ui_close(UI *ui) in ui_close()
/freebsd/crypto/openssl/doc/man3/
H A DUI_new.pod5 UI,
19 typedef struct ui_st UI;
21 UI *UI_new(void);
23 void UI_free(UI *ui);
51 void *UI_get0_user_data(UI *ui);
56 int UI_process(UI *ui);
62 const UI_METHOD *UI_get_method(UI *ui);
99 UI_new() creates a new UI using the default UI method. When done with
102 UI_new_method() creates a new UI using the given UI method. When done with
199 UI_get_method() returns the UI method associated with a given UI.
[all …]
H A DUI_create_method.pod26 int (*writer) (UI *ui, UI_STRING *uis));
29 int (*reader) (UI *ui, UI_STRING *uis));
41 int (*UI_method_get_opener(const UI_METHOD *method)) (UI *);
43 int (*UI_method_get_flusher(const UI_METHOD *method)) (UI *);
45 int (*UI_method_get_closer(const UI_METHOD *method)) (UI *);
47 (UI *, const char *, const char *);
67 This function takes a reference to a UI and a UI String, and writes
82 This function takes a reference to a UI and a UI string and reads off
128 For every UI String associated with the UI, call the writer function
139 For every UI String associated with the UI, call the reader function
[all …]
H A DUI_STRING.pod36 int UI_set_result(UI *ui, UI_STRING *uis, const char *result);
82 For B<UIT_PROMPT> and B<UIT_VERIFY> type UI strings, this sets the
102 UI_get_string_type() returns the UI string type.
104 UI_get_input_flags() returns the UI string flags.
106 UI_get0_output_string() returns the UI string output string.
108 UI_get0_action_string() returns the UI string action description
111 UI_get0_result_string() returns the UI string result buffer for
119 UI_get0_test_string() returns the UI string action description
123 the UI string for B<UIT_PROMPT> and B<UIT_VERIFY> type strings,
127 the UI string for B<UIT_PROMPT> and B<UIT_VERIFY> type strings,
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DWin64EHDumper.cpp44 static uint64_t getOffsetOfLSDA(const UnwindInfo& UI) { in getOffsetOfLSDA() argument
46 - reinterpret_cast<const char*>(&UI); in getOffsetOfLSDA()
279 if (UI.getFrameRegister() == 0) in printUnwindCode()
317 SW.printNumber("Version", UI.getVersion()); in printUnwindInfo()
319 SW.printNumber("PrologSize", UI.PrologSize); in printUnwindInfo()
320 if (UI.getFrameRegister()) { in printUnwindInfo()
329 SW.printNumber("UnwindCodeCount", UI.NumCodes); in printUnwindInfo()
332 ArrayRef<UnwindCode> UC(&UI.UnwindCodes[0], UI.NumCodes); in printUnwindInfo()
340 printUnwindCode(UI, ArrayRef(UCI, UCE)); in printUnwindInfo()
350 } else if (UI.getFlags() & UNW_ChainInfo) { in printUnwindInfo()
[all …]
H A DWin64EHDumper.h47 void printUnwindCode(const UnwindInfo& UI, ArrayRef<UnwindCode> UC);
49 off_t Offset, const UnwindInfo &UI);
/freebsd/crypto/openssl/apps/lib/
H A Dapps_ui.c18 static int ui_open(UI *ui) in ui_open()
20 int (*opener)(UI *ui) = UI_method_get_opener(ui_base_method); in ui_open()
27 static int ui_read(UI *ui, UI_STRING *uis) in ui_read()
29 int (*reader)(UI *ui, UI_STRING *uis) = NULL; in ui_read()
62 static int ui_write(UI *ui, UI_STRING *uis) in ui_write()
64 int (*writer)(UI *ui, UI_STRING *uis) = NULL; in ui_write()
93 static int ui_close(UI *ui) in ui_close()
95 int (*closer)(UI *ui) = UI_method_get_closer(ui_base_method); in ui_close()
103 static char *ui_prompt_construct(UI *ui, const char *phrase_desc, in ui_prompt_construct()
167 UI *ui; in password_callback()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineUniformityAnalysis.cpp160 MachineUniformityInfo UI(domTree, cycleInfo); in computeMachineUniformityInfo() local
162 UI.compute(); in computeMachineUniformityInfo()
163 return UI; in computeMachineUniformityInfo()
170 MachineUniformityInfo UI; member in __anon701d446b0111::MachineUniformityAnalysisPass
177 MachineUniformityInfo &getUniformityInfo() { return UI; } in getUniformityInfo()
178 const MachineUniformityInfo &getUniformityInfo() const { return UI; } in getUniformityInfo()
225 UI = computeMachineUniformityInfo(MF, CI, DomTree, true); in runOnMachineFunction()
231 OS << "MachineUniformityInfo for function: " << UI.getFunction().getName() in print()
233 UI.print(OS); in print()
261 auto &UI = getAnalysis<MachineUniformityAnalysisPass>(); in runOnMachineFunction() local
[all …]
H A DGlobalMerge.cpp325 Use *UI, *UE; in doMerge() local
329 UI = &*CE->use_begin(); in doMerge()
332 UI = &U; in doMerge()
333 UE = UI->getNext(); in doMerge()
340 for (; UI != UE; UI = UI->getNext()) { in doMerge()
341 Instruction *I = dyn_cast<Instruction>(UI->getUser()); in doMerge()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanVerifier.cpp208 auto *UI = dyn_cast<VPRecipeBase>(U); in verifyVPBasicBlock() local
210 if (!UI || isa<VPHeaderPHIRecipe>(UI) || isa<VPPredInstPHIRecipe>(UI)) in verifyVPBasicBlock()
215 if (UI->getParent() == VPBB) { in verifyVPBasicBlock()
216 if (RecipeNumbering[UI] < RecipeNumbering[&R]) { in verifyVPBasicBlock()
223 if (!VPDT.dominates(VPBB, UI->getParent())) { in verifyVPBasicBlock()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp634 static void printWin64EHUnwindInfo(const Win64EH::UnwindInfo *UI) { in printWin64EHUnwindInfo() argument
639 outs() << " Flags: " << static_cast<int>(UI->getFlags()); in printWin64EHUnwindInfo()
640 if (UI->getFlags()) { in printWin64EHUnwindInfo()
641 if (UI->getFlags() & UNW_ExceptionHandler) in printWin64EHUnwindInfo()
643 if (UI->getFlags() & UNW_TerminateHandler) in printWin64EHUnwindInfo()
645 if (UI->getFlags() & UNW_ChainInfo) in printWin64EHUnwindInfo()
652 if (UI->getFrameRegister()) { in printWin64EHUnwindInfo()
661 } else if (UI->getFlags() & UNW_ChainInfo) { in printWin64EHUnwindInfo()
665 if (UI->NumCodes) in printWin64EHUnwindInfo()
668 printAllUnwindCodes(ArrayRef(&UI->UnwindCodes[0], UI->NumCodes)); in printWin64EHUnwindInfo()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonOptimizeSZextends.cpp128 for (auto UI = Ashr->user_begin(), UE = Ashr->user_end(); in runOnFunction() local
129 UI != UE; ++UI) { in runOnFunction()
130 const Use &TheUse = UI.getUse(); in runOnFunction()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DIVDescriptors.cpp439 if (isFMulAddIntrinsic(UI)) in AddReductionVar()
440 if (Cur == UI->getOperand(0) || Cur == UI->getOperand(1)) in AddReductionVar()
473 if (isa<PHINode>(UI)) { in AddReductionVar()
474 PHIs.push_back(UI); in AddReductionVar()
482 NonPHIs.push_back(UI); in AddReductionVar()
485 ((!isa<FCmpInst>(UI) && !isa<ICmpInst>(UI) && in AddReductionVar()
494 if (UI == Phi) in AddReductionVar()
1158 if (isa<PHINode>(UI)) in getReductionOpChain()
1163 if (isa<SelectInst>(UI)) in getReductionOpChain()
1164 return UI; in getReductionOpChain()
[all …]
H A DStackSafetyAnalysis.cpp404 for (const Use &UI : V->uses()) { in analyzeAllUses() local
409 assert(V == UI.get()); in analyzeAllUses()
423 bool Safe = isSafeAccess(UI, AI, TypeSize); in analyzeAllUses()
436 bool Safe = isSafeAccess(UI, AI, TypeSize); in analyzeAllUses()
474 if (MTI->getRawSource() != UI && MTI->getRawDest() != UI) in analyzeAllUses()
476 } else if (MI->getRawDest() != UI) { in analyzeAllUses()
490 if (!CB.isArgOperand(&UI)) { in analyzeAllUses()
495 unsigned ArgNo = CB.getArgOperandNo(&UI); in analyzeAllUses()
515 ConstantRange Offsets = offsetFrom(UI, Ptr); in analyzeAllUses()
547 analyzeAllUses(AI, UI, SL); in run()
[all …]
H A DUniformityAnalysis.cpp121 UniformityInfo UI{DT, CI, &TTI}; in run() local
124 UI.compute(); in run()
126 return UI; in run()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DReg2Mem.cpp46 const Instruction *UI = cast<Instruction>(U); in valueEscapes() local
47 if (UI->getParent() != BB || isa<PHINode>(UI)) in valueEscapes()
H A DLICM.cpp1358 (!isa<StoreInst>(UI) && !isa<LoadInst>(UI)))) in isFoldableInLoop()
1395 while (isa<PHINode>(UI) && UI->hasOneUser() && in isNotUsedOrFoldableInLoop()
1399 UI = cast<Instruction>(UI->user_back()); in isNotUsedOrFoldableInLoop()
1404 if (CurLoop->contains(UI)) { in isNotUsedOrFoldableInLoop()
1626 for (Value::user_iterator UI = I.user_begin(), UE = I.user_end(); UI != UE;) { in sink() local
1628 Use &U = UI.getUse(); in sink()
1629 ++UI; in sink()
1666 UI = I.user_begin(); in sink()
1699 for (auto *UI : Users) { in sink() local
2060 if (!UI || !CurLoop->contains(UI)) in promoteLoopAccessesToScalars()
[all …]
H A DLoopSink.cpp177 Instruction *UI = cast<Instruction>(U.getUser()); in sinkInstruction() local
180 if (!L.contains(LI.getLoopFor(UI->getParent()))) in sinkInstruction()
183 if (!isa<PHINode>(UI)) { in sinkInstruction()
184 BBs.insert(UI->getParent()); in sinkInstruction()
190 PHINode *PN = dyn_cast<PHINode>(UI); in sinkInstruction()
H A DMemCpyOptimizer.cpp1490 auto *UI = cast<Instruction>(U.getUser()); in performStackMoveOptzn() local
1493 if (!DT->dominates(SrcAlloca, UI)) in performStackMoveOptzn()
1509 Worklist.push_back(UI); in performStackMoveOptzn()
1512 if (UI->isLifetimeStartOrEnd()) { in performStackMoveOptzn()
1520 LifetimeMarkers.push_back(UI); in performStackMoveOptzn()
1525 NoAliasInstrs.insert(UI); in performStackMoveOptzn()
1526 if (!ModRefCallback(UI)) in performStackMoveOptzn()
1543 if (UI == Store) in performStackMoveOptzn()
1557 BasicBlock *BB = UI->getParent(); in performStackMoveOptzn()
1560 if (UI->comesBefore(Store)) in performStackMoveOptzn()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DValue.h170 use_iterator_impl<Use> UI; variable
171 explicit user_iterator_impl(Use *U) : UI(U) {} in user_iterator_impl()
183 bool operator==(const user_iterator_impl &x) const { return UI == x.UI; }
190 ++UI;
202 return UI->getUser();
208 return user_iterator_impl<const UserTy>(*UI);
211 Use &getUse() const { return *UI; } in getUse()

123456