Home
last modified time | relevance | path

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

1234567

/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);
100 int UI_add_input_string(UI *ui, const char *prompt, int flags,
102 int UI_dup_input_string(UI *ui, const char *prompt, int flags,
104 int UI_add_verify_string(UI *ui, const char *prompt, int flags,
107 int UI_dup_verify_string(UI *ui, const char *prompt, int flags,
110 int UI_add_input_boolean(UI *ui, const char *prompt, const char *action_desc,
113 int UI_dup_input_boolean(UI *ui, const char *prompt, const char *action_desc,
116 int UI_add_info_string(UI *ui, const char *text);
[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);
82 All of the functions in this group take a UI and a prompt string.
101 int UI_add_input_string(UI *ui, const char *prompt, int flags,
103 int UI_dup_input_string(UI *ui, const char *prompt, int flags,
105 int UI_add_verify_string(UI *ui, const char *prompt, int flags,
108 int UI_dup_verify_string(UI *ui, const char *prompt, int flags,
111 int UI_add_input_boolean(UI *ui, const char *prompt, const char *action_desc,
114 int UI_dup_input_boolean(UI *ui, const char *prompt, const char *action_desc,
[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()
97 static UI_STRING *general_allocate_prompt(UI *ui, const char *prompt, in general_allocate_prompt()
119 static int general_allocate_string(UI *ui, const char *prompt, in general_allocate_string()
146 static int general_allocate_boolean(UI *ui, in general_allocate_boolean()
197 int UI_add_input_string(UI *ui, const char *prompt, int flags, in UI_add_input_string()
206 int UI_dup_input_string(UI *ui, const char *prompt, int flags, in UI_dup_input_string()
[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.c189 static int read_string_inner(UI *ui, UI_STRING *uis, int echo, int strip_nl);
191 static int read_string(UI *ui, UI_STRING *uis);
192 static int write_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()
276 static int read_string_inner(UI *ui, UI_STRING *uis, int echo, int strip_nl) in read_string_inner()
[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);
22 UI *UI_new_method(const UI_METHOD *method);
23 void UI_free(UI *ui);
25 int UI_add_input_string(UI *ui, const char *prompt, int flags,
27 int UI_dup_input_string(UI *ui, const char *prompt, int flags,
29 int UI_add_verify_string(UI *ui, const char *prompt, int flags,
32 int UI_dup_verify_string(UI *ui, const char *prompt, int flags,
35 int UI_add_input_boolean(UI *ui, const char *prompt, const char *action_desc,
[all …]
H A DUI_create_method.pod24 int UI_method_set_opener(UI_METHOD *method, int (*opener) (UI *ui));
26 int (*writer) (UI *ui, UI_STRING *uis));
27 int UI_method_set_flusher(UI_METHOD *method, int (*flusher) (UI *ui));
29 int (*reader) (UI *ui, UI_STRING *uis));
30 int UI_method_set_closer(UI_METHOD *method, int (*closer) (UI *ui));
32 void *(*duplicator) (UI *ui, void *ui_data),
33 void (*destructor)(UI *ui, void *ui_data));
35 char *(*prompt_constructor) (UI *ui,
41 int (*UI_method_get_opener(const UI_METHOD *method)) (UI *);
42 int (*UI_method_get_writer(const UI_METHOD *method)) (UI *, UI_STRING *);
[all …]
H A DUI_STRING.pod36 int UI_set_result(UI *ui, UI_STRING *uis, const char *result);
37 int UI_set_result_ex(UI *ui, UI_STRING *uis, const char *result, int len);
41 The B<UI_STRING> gets created internally and added to a B<UI> whenever
82 For B<UIT_PROMPT> and B<UIT_VERIFY> type UI strings, this sets the
86 For B<UIT_BOOLEAN> type UI strings, this sets the first character of
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
109 string for B<UIT_BOOLEAN> type UI strings, NULL for any other type.
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DWin64EHDumper.cpp44 static uint64_t getOffsetOfLSDA(const UnwindInfo& UI) { in getOffsetOfLSDA() argument
45 return static_cast<const char*>(UI.getLanguageSpecificData()) in getOffsetOfLSDA()
46 - reinterpret_cast<const char*>(&UI); in getOffsetOfLSDA()
257 void Dumper::printUnwindCode(const UnwindInfo& UI, ArrayRef<UnwindCode> UC) { in printUnwindCode() argument
279 if (UI.getFrameRegister() == 0) in printUnwindCode()
282 OS << " reg=" << getUnwindRegisterName(UI.getFrameRegister()) in printUnwindCode()
283 << format(", offset=0x%X", UI.getFrameOffset() * 16); in printUnwindCode()
315 off_t Offset, const UnwindInfo &UI) { in printUnwindInfo() argument
317 SW.printNumber("Version", UI.getVersion()); in printUnwindInfo()
318 SW.printFlags("Flags", UI in printUnwindInfo()
388 const auto UI = reinterpret_cast<const UnwindInfo*>(Contents.data() + Offset); printRuntimeFunction() local
[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()
207 UI = computeMachineUniformityInfo(MF, CI, DomTree, true); in runOnMachineFunction()
213 OS << "MachineUniformityInfo for function: " << UI.getFunction().getName() in print()
215 UI.print(OS); in print()
243 auto &UI = getAnalysis<MachineUniformityAnalysisPass>(); in runOnMachineFunction() local
244 UI.print(errs()); in runOnMachineFunction()
H A DGlobalMerge.cpp344 Use *UI, *UE; in doMerge() local
348 UI = &*CE->use_begin(); in doMerge()
351 UI = &U; in doMerge()
352 UE = UI->getNext(); in doMerge()
359 for (; UI != UE; UI = UI->getNext()) { in doMerge()
360 Instruction *I = dyn_cast<Instruction>(UI->getUser()); in doMerge()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp634 static void printWin64EHUnwindInfo(const Win64EH::UnwindInfo *UI) { in printWin64EHUnwindInfo() argument
638 outs() << " Version: " << static_cast<int>(UI->getVersion()) << "\n"; in printWin64EHUnwindInfo()
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()
649 outs() << " Size of prolog: " << static_cast<int>(UI->PrologSize) << "\n"; in printWin64EHUnwindInfo()
650 outs() << " Number of Codes: " << static_cast<int>(UI->NumCodes) << "\n"; in printWin64EHUnwindInfo()
652 if (UI in printWin64EHUnwindInfo()
740 auto *UI = reinterpret_cast<const Win64EH::UnwindInfo *>(XContents.data() + printRuntimeFunctionRels() local
[all...]
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DRegisterClassInfo.h120 for (MCRegUnitIterator UI(PhysReg, TRI); UI.isValid(); ++UI) { in getLastCalleeSavedAlias()
121 CSR = CalleeSavedAliases[*UI]; in getLastCalleeSavedAlias()
H A DMachineUniformityAnalysis.h37 MachineUniformityInfo UI; variable
44 MachineUniformityInfo &getUniformityInfo() { return UI; } in getUniformityInfo()
45 const MachineUniformityInfo &getUniformityInfo() const { return UI; } in getUniformityInfo()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanVerifier.cpp131 auto *UI = dyn_cast<VPRecipeBase>(U); in verifyVPBasicBlock() local
133 if (!UI || in verifyVPBasicBlock()
134 isa<VPHeaderPHIRecipe, VPWidenPHIRecipe, VPPredInstPHIRecipe>(UI)) in verifyVPBasicBlock()
139 if (UI->getParent() == VPBB) { in verifyVPBasicBlock()
140 if (RecipeNumbering[UI] < RecipeNumbering[&R]) { in verifyVPBasicBlock()
147 if (!VPDT.dominates(VPBB, UI->getParent())) { in verifyVPBasicBlock()
/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.cpp435 Instruction *UI = cast<Instruction>(U); in AddReductionVar() local
439 if (isFMulAddIntrinsic(UI)) in AddReductionVar()
440 if (Cur == UI->getOperand(0) || Cur == UI->getOperand(1)) in AddReductionVar()
444 BasicBlock *Parent = UI->getParent(); in AddReductionVar()
472 if (VisitedInsts.insert(UI).second) { in AddReductionVar()
473 if (isa<PHINode>(UI)) { in AddReductionVar()
474 PHIs.push_back(UI); in AddReductionVar()
476 StoreInst *SI = dyn_cast<StoreInst>(UI); in AddReductionVar()
482 NonPHIs.push_back(UI); in AddReductionVar()
484 } else if (!isa<PHINode>(UI) && in AddReductionVar()
[all …]
H A DStackSafetyAnalysis.cpp426 for (const Use &UI : V->uses()) { in analyzeAllUses() local
427 const auto *I = cast<Instruction>(UI.getUser()); in analyzeAllUses()
431 assert(V == UI.get()); in analyzeAllUses()
444 auto AccessRange = getAccessRange(UI, Ptr, TypeSize); in analyzeAllUses()
445 bool Safe = isSafeAccess(UI, AI, TypeSize); in analyzeAllUses()
457 auto AccessRange = getAccessRange(UI, Ptr, TypeSize); in analyzeAllUses()
458 bool Safe = isSafeAccess(UI, AI, TypeSize); in analyzeAllUses()
493 auto AccessRange = getMemIntrinsicAccessRange(MI, UI, Ptr); in analyzeAllUses()
496 if (MTI->getRawSource() != UI && MTI->getRawDest() != UI) in analyzeAllUses()
568 auto &UI = Info.Allocas.emplace(AI, PointerSize).first->second; run() local
576 auto &UI = Info.Params.emplace(A.getArgNo(), PointerSize).first->second; run() local
[all...]
/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.cpp1366 const Instruction *UI = cast<Instruction>(U); in isFoldableInLoop() local
1367 if (CurLoop->contains(UI) && in isFoldableInLoop()
1368 (BB != UI->getParent() || in isFoldableInLoop()
1369 (!isa<StoreInst>(UI) && !isa<LoadInst>(UI)))) in isFoldableInLoop()
1391 const Instruction *UI = cast<Instruction>(U); in isNotUsedOrFoldableInLoop() local
1392 if (const PHINode *PN = dyn_cast<PHINode>(UI)) { in isNotUsedOrFoldableInLoop()
1406 while (isa<PHINode>(UI) && UI->hasOneUser() && in isNotUsedOrFoldableInLoop()
1407 UI->getNumOperands() == 1) { in isNotUsedOrFoldableInLoop()
1408 if (!CurLoop->contains(UI)) in isNotUsedOrFoldableInLoop()
1410 UI = cast<Instruction>(UI->user_back()); in isNotUsedOrFoldableInLoop()
[all …]
H A DMemCpyOptimizer.cpp1559 auto *UI = cast<Instruction>(U.getUser()); in performStackMoveOptzn() local
1562 if (!DT->dominates(SrcAlloca, UI)) in performStackMoveOptzn()
1578 Worklist.push_back(UI); in performStackMoveOptzn()
1581 if (UI->isLifetimeStartOrEnd()) { in performStackMoveOptzn()
1587 int64_t Size = cast<ConstantInt>(UI->getOperand(0))->getSExtValue(); in performStackMoveOptzn()
1589 LifetimeMarkers.push_back(UI); in performStackMoveOptzn()
1593 if (UI->hasMetadata(LLVMContext::MD_noalias)) in performStackMoveOptzn()
1594 NoAliasInstrs.insert(UI); in performStackMoveOptzn()
1595 if (!ModRefCallback(UI)) in performStackMoveOptzn()
1610 auto DestModRefCallback = [&](Instruction *UI) -> bool { in performStackMoveOptzn() argument
[all …]
H A DLoopSink.cpp177 Instruction *UI = cast<Instruction>(U.getUser()); in sinkInstruction()
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()
179 Instruction *UI = cast<Instruction>(U.getUser()); sinkInstruction() local

1234567