Home
last modified time | relevance | path

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

1234567

/freebsd-12.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-12.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-12.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_locl.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()
484 static int noecho_console(UI *ui) in noecho_console()
526 static int echo_console(UI *ui) in echo_console()
[all …]
H A Dui_util.c35 UI *ui; in UI_UTIL_read_pw()
98 static int ui_open(UI *ui) in ui_open()
102 static int ui_read(UI *ui, UI_STRING *uis) in ui_read()
132 static int ui_write(UI *ui, UI_STRING *uis) in ui_write()
136 static int ui_close(UI *ui) in ui_close()
/freebsd-12.1/contrib/llvm/tools/llvm-readobj/
H A DWin64EHDumper.cpp45 static uint64_t getOffsetOfLSDA(const UnwindInfo& UI) { in getOffsetOfLSDA() argument
47 - reinterpret_cast<const char*>(&UI); in getOffsetOfLSDA()
202 if (UI.getFrameRegister() == 0) in printUnwindCode()
240 SW.printNumber("Version", UI.getVersion()); in printUnwindInfo()
242 SW.printNumber("PrologSize", UI.PrologSize); in printUnwindInfo()
243 if (UI.getFrameRegister()) { in printUnwindInfo()
252 SW.printNumber("UnwindCodeCount", UI.NumCodes); in printUnwindInfo()
255 ArrayRef<UnwindCode> UC(&UI.UnwindCodes[0], UI.NumCodes); in printUnwindInfo()
263 printUnwindCode(UI, makeArrayRef(UCI, UCE)); in printUnwindInfo()
273 } else if (UI.getFlags() & UNW_ChainInfo) { in printUnwindInfo()
[all …]
/freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/
H A DSpeculateAroundPHIs.cpp66 if (UI->getParent() != PhiBB) { in isSafeToSpeculatePHIUsers()
77 if (mayBeMemoryDependent(*UI)) { in isSafeToSpeculatePHIUsers()
85 Visited.insert(UI); in isSafeToSpeculatePHIUsers()
86 DFSStack.push_back({UI, UI->value_op_begin()}); in isSafeToSpeculatePHIUsers()
148 UI = OpI; in isSafeToSpeculatePHIUsers()
154 PotentialSpecSet.insert(UI); in isSafeToSpeculatePHIUsers()
343 if (IsVisited(UI)) in visitPHIUsersAndDepsInPostOrder()
349 DFSStack.push_back({UI, UI->value_op_begin()}); in visitPHIUsersAndDepsInPostOrder()
367 UI = OpI; in visitPHIUsersAndDepsInPostOrder()
373 Visit(UI); in visitPHIUsersAndDepsInPostOrder()
[all …]
H A DLoopSink.cpp183 Instruction *UI = cast<Instruction>(U.getUser()); in sinkInstruction() local
185 if (dyn_cast<PHINode>(UI)) in sinkInstruction()
188 if (!L.contains(LI.getLoopFor(UI->getParent()))) in sinkInstruction()
190 BBs.insert(UI->getParent()); in sinkInstruction()
234 for (Value::use_iterator UI = I.use_begin(), UE = I.use_end(); UI != UE;) { in sinkInstruction() local
235 Use &U = *UI++; in sinkInstruction()
H A DLICM.cpp1179 if (CurLoop->contains(UI) && in isFreeInLoop()
1181 (!isa<StoreInst>(UI) && !isa<LoadInst>(UI)))) in isFreeInLoop()
1216 if (CurLoop->contains(UI)) { in isNotUsedOrFreeInLoop()
1446 for (Value::user_iterator UI = I.user_begin(), UE = I.user_end(); UI != UE;) { in sink() local
1448 Use &U = UI.getUse(); in sink()
1449 ++UI; in sink()
1486 UI = I.user_begin(); in sink()
1507 for (auto *UI : Users) { in sink() local
1818 if (!UI || !CurLoop->contains(UI)) in promoteLoopAccessesToScalars()
1887 UI->getAAMetadata(AATags); in promoteLoopAccessesToScalars()
[all …]
H A DReg2Mem.cpp53 const Instruction *UI = cast<Instruction>(U); in valueEscapes() local
54 if (UI->getParent() != BB || isa<PHINode>(UI)) in valueEscapes()
/freebsd-12.1/contrib/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.cpp390 for (auto UI = PN->use_begin(), E = PN->use_end(); UI != E; ++UI) { in findValueToReuse() local
391 Use &U = *UI; in findValueToReuse()
419 for (auto UI = BEInst->use_begin(), E = BEInst->use_end(); UI != E; in findValueToReuse() local
420 ++UI) { in findValueToReuse()
421 Use &U = *UI; in findValueToReuse()
/freebsd-12.1/contrib/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp472 static void printWin64EHUnwindInfo(const Win64EH::UnwindInfo *UI) { in printWin64EHUnwindInfo() argument
477 outs() << " Flags: " << static_cast<int>(UI->getFlags()); in printWin64EHUnwindInfo()
478 if (UI->getFlags()) { in printWin64EHUnwindInfo()
479 if (UI->getFlags() & UNW_ExceptionHandler) in printWin64EHUnwindInfo()
481 if (UI->getFlags() & UNW_TerminateHandler) in printWin64EHUnwindInfo()
483 if (UI->getFlags() & UNW_ChainInfo) in printWin64EHUnwindInfo()
490 if (UI->getFrameRegister()) { in printWin64EHUnwindInfo()
499 } else if (UI->getFlags() & UNW_ChainInfo) { in printWin64EHUnwindInfo()
503 if (UI->NumCodes) in printWin64EHUnwindInfo()
506 printAllUnwindCodes(makeArrayRef(&UI->UnwindCodes[0], UI->NumCodes)); in printWin64EHUnwindInfo()
[all …]
/freebsd-12.1/contrib/llvm/tools/opt/
H A DAnalysisWrappers.cpp41 Instruction *UI = dyn_cast<Instruction>(U); in runOnModule() local
42 if (!UI) continue; in runOnModule()
44 CallSite CS(cast<Value>(UI)); in runOnModule()
55 errs() << *UI; in runOnModule()
/freebsd-12.1/contrib/llvm/include/llvm/IR/
H A DCallSite.h143 bool isCallee(Value::const_user_iterator UI) const { in isCallee() argument
144 return isCallee(&UI.getUse()); in isCallee()
151 bool isArgOperand(Value::const_user_iterator UI) const { in isArgOperand() argument
152 return isArgOperand(&UI.getUse()); in isArgOperand()
162 bool isBundleOperand(Value::const_user_iterator UI) const { in isBundleOperand() argument
163 return isBundleOperand(&UI.getUse()); in isBundleOperand()
177 bool isDataOperand(Value::const_user_iterator UI) const { in isDataOperand() argument
178 return isDataOperand(&UI.getUse()); in isDataOperand()
223 unsigned getDataOperandNo(Value::const_user_iterator UI) const { in getDataOperandNo() argument
224 return getDataOperandNo(&UI.getUse()); in getDataOperandNo()
/freebsd-12.1/contrib/llvm/lib/Target/WebAssembly/
H A DWebAssemblyOptimizeReturned.cpp68 for (auto UI = Arg->use_begin(), UE = Arg->use_end(); UI != UE;) { in visitCallSite() local
69 Use &U = *UI++; in visitCallSite()
H A DWebAssemblyLowerEmscriptenEHSjLj.cpp604 for (auto UI = I.use_begin(), UE = I.use_end(); UI != UE;) { in rebuildSSA() local
605 Use &U = *UI; in rebuildSSA()
606 ++UI; in rebuildSSA()
714 auto *UI = cast<Instruction>(U); in runOnModule() local
715 SetjmpUsers.insert(UI->getFunction()); in runOnModule()
1075 UI != UE;) { in runSjLjOnFunction()
1077 Use &U = *UI; in runSjLjOnFunction()
1079 ++UI; in runSjLjOnFunction()
1085 UI != UE;) { in runSjLjOnFunction()
1086 Use &U = *UI; in runSjLjOnFunction()
[all …]
/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DSafeStackColoring.cpp83 auto *UI = dyn_cast<Instruction>(U); in collectMarkers() local
84 if (!UI) in collectMarkers()
87 if (!readMarker(UI, &IsStart)) in collectMarkers()
91 BBMarkerSet[UI->getParent()][UI] = {AllocaNo, IsStart}; in collectMarkers()
92 Markers.push_back(UI); in collectMarkers()
H A DGlobalMerge.cpp311 Use *UI, *UE; in doMerge() local
315 UI = &*CE->use_begin(); in doMerge()
318 UI = &U; in doMerge()
319 UE = UI->getNext(); in doMerge()
326 for (; UI != UE; UI = UI->getNext()) { in doMerge()
327 Instruction *I = dyn_cast<Instruction>(UI->getUser()); in doMerge()
/freebsd-12.1/contrib/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 runOnBasicBlock() local
83 UI != UE; ) { in runOnBasicBlock()
89 const auto &AllocaUse = *UI++; in runOnBasicBlock()
/freebsd-12.1/contrib/llvm/lib/Transforms/Utils/
H A DPromoteMemoryToRegister.cpp138 for (auto UI = AI->user_begin(), E = AI->user_end(); UI != E;) { in AnalyzeAlloca() local
139 Instruction *User = cast<Instruction>(*UI++); in AnalyzeAlloca()
329 for (auto UI = AI->user_begin(), UE = AI->user_end(); UI != UE;) { in removeLifetimeIntrinsicUsers() local
330 Instruction *I = cast<Instruction>(*UI); in removeLifetimeIntrinsicUsers()
331 ++UI; in removeLifetimeIntrinsicUsers()
368 for (auto UI = AI->user_begin(), E = AI->user_end(); UI != E;) { in rewriteSingleStoreAlloca() local
369 Instruction *UserInst = cast<Instruction>(*UI++); in rewriteSingleStoreAlloca()
483 for (auto UI = AI->user_begin(), E = AI->user_end(); UI != E;) { in promoteSingleBlockAlloca() local
484 LoadInst *LI = dyn_cast<LoadInst>(*UI++); in promoteSingleBlockAlloca()

1234567