Home
last modified time | relevance | path

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

1234567

/freebsd-13.1/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);
152 char *UI_construct_prompt(UI *ui_method,
174 void *UI_get0_user_data(UI *ui);
177 const char *UI_get0_result(UI *ui, int i);
178 int UI_get_result_length(UI *ui, int i);
181 int UI_process(UI *ui);
211 void *UI_get_ex_data(UI *r, int idx);
216 const UI_METHOD *UI_get_method(UI *ui);
[all …]
/freebsd-13.1/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()
427 void *UI_get0_user_data(UI *ui) in UI_get0_user_data()
445 int UI_get_result_length(UI *ui, int i) in UI_get_result_length()
472 int UI_process(UI *ui) in UI_process()
581 void *UI_get_ex_data(UI *r, int idx) in UI_get_ex_data()
586 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.c195 static int read_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()
377 static int open_console(UI *ui) in open_console()
494 static int noecho_console(UI *ui) in noecho_console()
536 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-13.1/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
197 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-13.1/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()
240 if (UI.getFrameRegister() == 0) in printUnwindCode()
278 SW.printNumber("Version", UI.getVersion()); in printUnwindInfo()
280 SW.printNumber("PrologSize", UI.PrologSize); in printUnwindInfo()
281 if (UI.getFrameRegister()) { in printUnwindInfo()
290 SW.printNumber("UnwindCodeCount", UI.NumCodes); in printUnwindInfo()
293 ArrayRef<UnwindCode> UC(&UI.UnwindCodes[0], UI.NumCodes); in printUnwindInfo()
301 printUnwindCode(UI, makeArrayRef(UCI, UCE)); in printUnwindInfo()
311 } 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-13.1/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A 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()
H A 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-13.1/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp488 static void printWin64EHUnwindInfo(const Win64EH::UnwindInfo *UI) { in printWin64EHUnwindInfo() argument
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()
506 if (UI->getFrameRegister()) { in printWin64EHUnwindInfo()
515 } else if (UI->getFlags() & UNW_ChainInfo) { in printWin64EHUnwindInfo()
519 if (UI->NumCodes) in printWin64EHUnwindInfo()
522 printAllUnwindCodes(makeArrayRef(&UI->UnwindCodes[0], UI->NumCodes)); in printWin64EHUnwindInfo()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/tools/opt/
H A 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-13.1/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A 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()
H A 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-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A 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-13.1/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A 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-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DReg2Mem.cpp47 const Instruction *UI = cast<Instruction>(U); in valueEscapes() local
48 if (UI->getParent() != BB || isa<PHINode>(UI)) in valueEscapes()
H A DLICM.cpp1427 if (CurLoop->contains(UI) && in isFreeInLoop()
1429 (!isa<StoreInst>(UI) && !isa<LoadInst>(UI)))) in isFreeInLoop()
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
1695 Use &U = UI.getUse(); in sink()
1696 ++UI; in sink()
1733 UI = I.user_begin(); in sink()
1767 for (auto *UI : Users) { in sink() local
2116 if (!UI || !CurLoop->contains(UI)) in promoteLoopAccessesToScalars()
2192 UI->getAAMetadata(AATags); in promoteLoopAccessesToScalars()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A 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()
H A 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-13.1/contrib/llvm-project/llvm/include/llvm/IR/
H A 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-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A 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()
396 US.updateRange(getMemIntrinsicAccessRange(MI, UI, Ptr)); in analyzeAllUses()
401 if (!CB.isArgOperand(&UI)) { in analyzeAllUses()
406 unsigned ArgNo = CB.getArgOperandNo(&UI); in analyzeAllUses()
424 ConstantRange Offsets = offsetFrom(UI, Ptr); in analyzeAllUses()
457 auto &UI = Info.Allocas.emplace(AI, PointerSize).first->second; in run() local
458 analyzeAllUses(AI, UI, SL); in run()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A 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()
1269 UI != UE;) { in runSjLjOnFunction()
1271 Use &U = *UI; in runSjLjOnFunction()
1273 ++UI; in runSjLjOnFunction()
1279 UI != UE;) { in runSjLjOnFunction()
1280 Use &U = *UI; in runSjLjOnFunction()
[all …]

1234567