Home
last modified time | relevance | path

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

1234567

/freebsd-12-stable/crypto/openssl/include/openssl/
Dui.h42 UI *UI_new(void);
43 UI *UI_new_method(const UI_METHOD *method);
44 void UI_free(UI *ui);
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 *ui, const char *prompt, const char *action_desc,
105 int UI_add_info_string(UI *ui, const char *text);
[all …]
/freebsd-12-stable/crypto/openssl/doc/man3/
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 …]
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 …]
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-12-stable/crypto/openssl/crypto/ui/
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()
198 int UI_add_input_string(UI *ui, const char *prompt, int flags, in UI_add_input_string()
207 int UI_dup_input_string(UI *ui, const char *prompt, int flags, in UI_dup_input_string()
[all …]
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,
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) in write_string()
224 static int read_string(UI *ui, UI_STRING *uis) in read_string()
280 static int read_string_inner(UI *ui, UI_STRING *uis, int echo, int strip_nl) in read_string_inner()
[all …]
Dui_util.c36 UI *ui; in UI_UTIL_read_pw()
97 static int ui_open(UI *ui) in ui_open()
101 static int ui_read(UI *ui, UI_STRING *uis) in ui_read()
131 static int ui_write(UI *ui, UI_STRING *uis) in ui_write()
135 static int ui_close(UI *ui) in ui_close()
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
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()
218 void Dumper::printUnwindCode(const UnwindInfo& UI, ArrayRef<UnwindCode> UC) { in printUnwindCode() argument
240 if (UI.getFrameRegister() == 0) in printUnwindCode()
243 OS << " reg=" << getUnwindRegisterName(UI.getFrameRegister()) in printUnwindCode()
244 << format(", offset=0x%X", UI.getFrameOffset() * 16); in printUnwindCode()
276 off_t Offset, const UnwindInfo &UI) { in printUnwindInfo() argument
278 SW.printNumber("Version", UI.getVersion()); in printUnwindInfo()
279 SW.printFlags("Flags", UI.getFlags(), makeArrayRef(UnwindFlags)); in printUnwindInfo()
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
DHexagonOptimizeSZextends.cpp77 for (auto UI = Arg.use_begin(); UI != Arg.use_end();) { in runOnFunction() local
78 if (isa<SExtInst>(*UI)) { in runOnFunction()
79 Instruction* Use = cast<Instruction>(*UI); in runOnFunction()
83 ++UI; in runOnFunction()
89 ++UI; in runOnFunction()
131 for (auto UI = Ashr->user_begin(), UE = Ashr->user_end(); in runOnFunction() local
132 UI != UE; ++UI) { in runOnFunction()
133 const Use &TheUse = UI.getUse(); in runOnFunction()
DHexagonVectorLoopCarriedReuse.cpp389 for (auto UI = PN->use_begin(), E = PN->use_end(); UI != E; ++UI) { in findValueToReuse() local
390 Use &U = *UI; in findValueToReuse()
418 for (auto UI = BEInst->use_begin(), E = BEInst->use_end(); UI != E; in findValueToReuse() local
419 ++UI) { in findValueToReuse()
420 Use &U = *UI; in findValueToReuse()
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
DCOFFDump.cpp488 static void printWin64EHUnwindInfo(const Win64EH::UnwindInfo *UI) { in printWin64EHUnwindInfo() argument
492 outs() << " Version: " << static_cast<int>(UI->getVersion()) << "\n"; in printWin64EHUnwindInfo()
493 outs() << " Flags: " << static_cast<int>(UI->getFlags()); in printWin64EHUnwindInfo()
494 if (UI->getFlags()) { in printWin64EHUnwindInfo()
495 if (UI->getFlags() & UNW_ExceptionHandler) in printWin64EHUnwindInfo()
497 if (UI->getFlags() & UNW_TerminateHandler) in printWin64EHUnwindInfo()
499 if (UI->getFlags() & UNW_ChainInfo) in printWin64EHUnwindInfo()
503 outs() << " Size of prolog: " << static_cast<int>(UI->PrologSize) << "\n"; in printWin64EHUnwindInfo()
504 outs() << " Number of Codes: " << static_cast<int>(UI->NumCodes) << "\n"; in printWin64EHUnwindInfo()
506 if (UI->getFrameRegister()) { in printWin64EHUnwindInfo()
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/tools/opt/
DAnalysisWrappers.cpp39 Instruction *UI = dyn_cast<Instruction>(U); in runOnModule() local
40 if (!UI) continue; in runOnModule()
42 CallBase *CB = dyn_cast<CallBase>(UI); in runOnModule()
53 errs() << *UI; in runOnModule()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/
DNVPTXImageOptimizer.cpp151 for (CallInst::use_iterator UI = From->use_begin(), UE = From->use_end(); in replaceWith() local
152 UI != UE; ++UI) { in replaceWith()
153 if (BranchInst *BI = dyn_cast<BranchInst>(*UI)) { in replaceWith()
DNVPTXLowerAlloca.cpp81 for (Value::use_iterator UI = allocaInst->use_begin(), in runOnFunction() local
83 UI != UE;) { in runOnFunction()
89 const auto &AllocaUse = *UI++; in runOnFunction()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
DSIOptimizeExecMaskingPreRA.cpp99 for (MCRegUnitIterator UI(Reg.asMCReg(), &TRI); UI.isValid(); ++UI) { in isDefBetween() local
100 if (isDefBetween(LIS->getRegUnit(*UI), AndIdx, SelIdx)) in isDefBetween()
284 for (MCRegUnitIterator UI(ExecReg, TRI); UI.isValid(); ++UI) { in optimizeElseBranch() local
285 LiveRange &RegUnit = LIS->getRegUnit(*UI); in optimizeElseBranch()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
DVPlanTransforms.cpp140 auto *UI = dyn_cast<VPRecipeBase>(U); in sinkScalarOperands() local
141 return !UI || UI->getParent() != SinkTo; in sinkScalarOperands()
241 auto *UI = dyn_cast<VPRecipeBase>(U); in mergeReplicateRegions() local
242 if (!UI || UI->getParent() != Then2) in mergeReplicateRegions()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
DRegAllocFast.cpp308 for (MCRegUnitIterator UI(PhysReg, TRI); UI.isValid(); ++UI) in setPhysRegState() local
309 RegUnitStates[*UI] = NewState; in setPhysRegState()
313 for (MCRegUnitIterator UI(PhysReg, TRI); UI.isValid(); ++UI) { in isPhysRegFree() local
314 if (RegUnitStates[*UI] != regFree) in isPhysRegFree()
580 for (MCRegUnitIterator UI(PhysReg, TRI); UI.isValid(); ++UI) { in displacePhysReg() local
581 unsigned Unit = *UI; in displacePhysReg()
635 for (MCRegUnitIterator UI(PhysReg, TRI); UI.isValid(); ++UI) { in calcSpillCost() local
636 switch (unsigned VirtReg = RegUnitStates[*UI]) { in calcSpillCost()
1064 for (MCRegUnitIterator UI(PhysReg, TRI); UI.isValid(); ++UI) { in dumpState() local
1065 assert(RegUnitStates[*UI] == VirtReg && "inverse map valid"); in dumpState()
DGlobalMerge.cpp313 Use *UI, *UE; in doMerge() local
317 UI = &*CE->use_begin(); in doMerge()
320 UI = &U; in doMerge()
321 UE = UI->getNext(); in doMerge()
328 for (; UI != UE; UI = UI->getNext()) { in doMerge()
329 Instruction *I = dyn_cast<Instruction>(UI->getUser()); in doMerge()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
DReg2Mem.cpp47 const Instruction *UI = cast<Instruction>(U); in valueEscapes() local
48 if (UI->getParent() != BB || isa<PHINode>(UI)) in valueEscapes()
DLICM.cpp1426 const Instruction *UI = cast<Instruction>(U); in isFreeInLoop() local
1427 if (CurLoop->contains(UI) && in isFreeInLoop()
1428 (BB != UI->getParent() || in isFreeInLoop()
1429 (!isa<StoreInst>(UI) && !isa<LoadInst>(UI)))) in isFreeInLoop()
1450 const Instruction *UI = cast<Instruction>(U); in isNotUsedOrFreeInLoop() local
1451 if (const PHINode *PN = dyn_cast<PHINode>(UI)) { in isNotUsedOrFreeInLoop()
1465 if (CurLoop->contains(UI)) { in isNotUsedOrFreeInLoop()
1693 for (Value::user_iterator UI = I.user_begin(), UE = I.user_end(); UI != UE;) { in sink() local
1694 auto *User = cast<Instruction>(*UI); in sink()
1695 Use &U = UI.getUse(); in sink()
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/IR/
DValue.h171 use_iterator_impl<Use> UI; variable
172 explicit user_iterator_impl(Use *U) : UI(U) {} in user_iterator_impl()
184 bool operator==(const user_iterator_impl &x) const { return UI == x.UI; }
191 ++UI;
203 return UI->getUser();
209 return user_iterator_impl<const UserTy>(*UI);
212 Use &getUse() const { return *UI; } in getUse()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
DWebAssemblyLowerEmscriptenEHSjLj.cpp642 for (auto UI = I.use_begin(), UE = I.use_end(); UI != UE;) { in rebuildSSA() local
643 Use &U = *UI; in rebuildSSA()
644 ++UI; in rebuildSSA()
766 auto *UI = cast<Instruction>(U); in runOnModule() local
767 SetjmpUsers.insert(UI->getFunction()); in runOnModule()
1268 for (auto UI = SetjmpTable->use_begin(), UE = SetjmpTable->use_end(); in runSjLjOnFunction() local
1269 UI != UE;) { in runSjLjOnFunction()
1271 Use &U = *UI; in runSjLjOnFunction()
1273 ++UI; in runSjLjOnFunction()
1278 for (auto UI = SetjmpTableSize->use_begin(), UE = SetjmpTableSize->use_end(); in runSjLjOnFunction() local
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
DStackSafetyAnalysis.cpp342 for (const Use &UI : V->uses()) { in analyzeAllUses() local
343 const auto *I = cast<Instruction>(UI.getUser()); in analyzeAllUses()
347 assert(V == UI.get()); in analyzeAllUses()
356 getAccessRange(UI, Ptr, DL.getTypeStoreSize(I->getType()))); in analyzeAllUses()
374 UI, Ptr, DL.getTypeStoreSize(I->getOperand(0)->getType()))); in analyzeAllUses()
396 US.updateRange(getMemIntrinsicAccessRange(MI, UI, Ptr)); in analyzeAllUses()
401 if (!CB.isArgOperand(&UI)) { in analyzeAllUses()
406 unsigned ArgNo = CB.getArgOperandNo(&UI); in analyzeAllUses()
409 UI, Ptr, DL.getTypeStoreSize(CB.getParamByValType(ArgNo)))); in analyzeAllUses()
424 ConstantRange Offsets = offsetFrom(UI, Ptr); in analyzeAllUses()
[all …]
/freebsd-12-stable/contrib/binutils/bfd/
Dpe-mips.c721 #define UI(x) (*_bfd_error_handler) (_("%B: unimplemented %s\n"), \ in coff_pe_mips_relocate_section() macro
732 UI ("refhalf"); in coff_pe_mips_relocate_section()
794 UI ("gprel"); in coff_pe_mips_relocate_section()
798 UI ("section"); in coff_pe_mips_relocate_section()
802 UI ("secrel"); in coff_pe_mips_relocate_section()
806 UI ("secrello"); in coff_pe_mips_relocate_section()
810 UI ("secrelhi"); in coff_pe_mips_relocate_section()

1234567