| /src/crypto/external/apache2/openssl/dist/include/openssl/ |
| ui.h.in | 56 UI *UI_new(void); 57 UI *UI_new_method(const UI_METHOD *method); 58 void UI_free(UI *ui); 84 All of the functions in this group take a UI and a prompt string. 103 int UI_add_input_string(UI *ui, const char *prompt, int flags, 105 int UI_dup_input_string(UI *ui, const char *prompt, int flags, 107 int UI_add_verify_string(UI *ui, const char *prompt, int flags [all...] |
| /src/crypto/external/bsd/openssl/dist/include/openssl/ |
| ui.h.in | 54 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 [all...] |
| /src/crypto/external/bsd/openssl.old/dist/include/openssl/ |
| ui.h | 42 UI *UI_new(void); 43 UI *UI_new_method(const UI_METHOD *method); 44 void UI_free(UI *ui); 70 All of the functions in this group take a UI and a prompt string. 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 [all...] |
| /src/crypto/external/apache2/openssl/dist/crypto/ui/ |
| ui_local.h | 13 #include <openssl/ui.h> 31 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) [all...] |
| ui_lib.c | 14 #include <openssl/ui.h> 18 UI *UI_new(void) 23 UI *UI_new_method(const UI_METHOD *method) 25 UI *ret = OPENSSL_zalloc(sizeof(*ret)); 71 void UI_free(UI *ui) 73 if (ui == NULL) 75 if ((ui->flags & UI_FLAG_DUPL_DATA) != 0) { 76 ui->meth->ui_destroy_data(ui, ui->user_data) [all...] |
| ui_util.c | 35 UI *ui; local 40 ui = UI_new(); 41 if (ui != NULL) { 42 ok = UI_add_input_string(ui, prompt, 0, buf, 0, size - 1); 44 ok = UI_add_verify_string(ui, prompt, 0, buff, 0, size - 1, buf); 46 ok = UI_process(ui); 47 UI_free(ui); 98 static int ui_open(UI *ui) [all...] |
| /src/crypto/external/bsd/openssl/dist/crypto/ui/ |
| ui_local.h | 13 # include <openssl/ui.h> 31 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) [all...] |
| ui_lib.c | 14 #include <openssl/ui.h> 18 UI *UI_new(void) 23 UI *UI_new_method(const UI_METHOD *method) 25 UI *ret = OPENSSL_zalloc(sizeof(*ret)); 73 void UI_free(UI *ui) 75 if (ui == NULL) 77 if ((ui->flags & UI_FLAG_DUPL_DATA) != 0) { 78 ui->meth->ui_destroy_data(ui, ui->user_data) [all...] |
| ui_util.c | 36 UI *ui; local 41 ui = UI_new(); 42 if (ui != NULL) { 43 ok = UI_add_input_string(ui, prompt, 0, buf, 0, size - 1); 45 ok = UI_add_verify_string(ui, prompt, 0, buff, 0, size - 1, buf); 47 ok = UI_process(ui); 48 UI_free(ui); 99 static int ui_open(UI *ui) [all...] |
| /src/crypto/external/bsd/openssl.old/dist/crypto/ui/ |
| ui_local.h | 13 # include <openssl/ui.h> 31 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) [all...] |
| ui_lib.c | 14 #include <openssl/ui.h> 18 UI *UI_new(void) 23 UI *UI_new_method(const UI_METHOD *method) 25 UI *ret = OPENSSL_zalloc(sizeof(*ret)); 73 void UI_free(UI *ui) 75 if (ui == NULL) 77 if ((ui->flags & UI_FLAG_DUPL_DATA) != 0) { 78 ui->meth->ui_destroy_data(ui, ui->user_data) [all...] |
| ui_util.c | 36 UI *ui; local 41 ui = UI_new(); 42 if (ui != NULL) { 43 ok = UI_add_input_string(ui, prompt, 0, buf, 0, size - 1); 45 ok = UI_add_verify_string(ui, prompt, 0, buff, 0, size - 1, buf); 47 ok = UI_process(ui); 48 UI_free(ui); 99 static int ui_open(UI *ui) [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/opt/ |
| AnalysisWrappers.cpp | 39 Instruction *UI = dyn_cast<Instruction>(U); 40 if (!UI) continue; 42 CallBase *CB = dyn_cast<CallBase>(UI); 53 errs() << *UI;
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/ |
| HexagonOptimizeSZextends.cpp | 77 for (auto UI = Arg.use_begin(); UI != Arg.use_end();) { 78 if (isa<SExtInst>(*UI)) { 79 Instruction* Use = cast<Instruction>(*UI); 83 ++UI; 89 ++UI; 131 for (auto UI = Ashr->user_begin(), UE = Ashr->user_end(); 132 UI != UE; ++UI) { 133 const Use &TheUse = UI.getUse() [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/ |
| ref-types.cc | 63 unsigned int UI; 73 unsigned int &rUI = UI; 83 UI = 1002;
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/ |
| ref-types.cc | 63 unsigned int UI; 73 unsigned int &rUI = UI; 83 UI = 1002;
|
| /src/crypto/external/apache2/openssl/dist/apps/lib/ |
| apps_ui.c | 12 #include <openssl/ui.h> 18 static int ui_open(UI *ui) 20 int (*opener)(UI *ui) = UI_method_get_opener(ui_base_method); 23 return opener(ui); 27 static int ui_read(UI *ui, UI_STRING *uis) 29 int (*reader)(UI *ui, UI_STRING *uis) = NULL 160 UI *ui; local [all...] |
| /src/crypto/external/bsd/openssl/dist/apps/lib/ |
| apps_ui.c | 12 #include <openssl/ui.h> 18 static int ui_open(UI *ui) 20 int (*opener)(UI *ui) = UI_method_get_opener(ui_base_method); 23 return opener(ui); 27 static int ui_read(UI *ui, UI_STRING *uis) 29 int (*reader)(UI *ui, UI_STRING *uis) = NULL 167 UI *ui; local [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/ |
| Win64EHDumper.cpp | 44 static uint64_t getOffsetOfLSDA(const UnwindInfo& UI) { 45 return static_cast<const char*>(UI.getLanguageSpecificData()) 46 - reinterpret_cast<const char*>(&UI); 218 void Dumper::printUnwindCode(const UnwindInfo& UI, ArrayRef<UnwindCode> UC) { 240 if (UI.getFrameRegister() == 0) 243 OS << " reg=" << getUnwindRegisterName(UI.getFrameRegister()) 244 << format(", offset=0x%X", UI.getFrameOffset() * 16); 276 off_t Offset, const UnwindInfo &UI) { 278 SW.printNumber("Version", UI.getVersion()); 279 SW.printFlags("Flags", UI.getFlags(), makeArrayRef(UnwindFlags)) [all...] |
| Win64EHDumper.h | 47 void printUnwindCode(const UnwindInfo& UI, ArrayRef<UnwindCode> UC); 49 off_t Offset, const UnwindInfo &UI);
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
| SpeculateAroundPHIs.cpp | 58 auto *UI = cast<Instruction>(U.getUser()); 65 if (UI->getParent() != PhiBB) { 66 LLVM_DEBUG(dbgs() << " Unsafe: use in a different BB: " << *UI << "\n"); 70 if (const auto *CS = dyn_cast<CallBase>(UI)) { 73 "callsite cannot de duplicated: " << *UI << '\n'); 84 if (mayBeMemoryDependent(*UI)) { 85 LLVM_DEBUG(dbgs() << " Unsafe: can't speculate use: " << *UI << "\n"); 92 Visited.insert(UI); 93 DFSStack.push_back({UI, UI->value_op_begin()}) [all...] |
| Reg2Mem.cpp | 47 const Instruction *UI = cast<Instruction>(U); 48 if (UI->getParent() != BB || isa<PHINode>(UI))
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/ |
| NVPTXLowerAlloca.cpp | 81 for (Value::use_iterator UI = allocaInst->use_begin(), 83 UI != UE;) { 89 const auto &AllocaUse = *UI++;
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/ |
| COFFDump.cpp | 488 static void printWin64EHUnwindInfo(const Win64EH::UnwindInfo *UI) { 492 outs() << " Version: " << static_cast<int>(UI->getVersion()) << "\n"; 493 outs() << " Flags: " << static_cast<int>(UI->getFlags()); 494 if (UI->getFlags()) { 495 if (UI->getFlags() & UNW_ExceptionHandler) 497 if (UI->getFlags() & UNW_TerminateHandler) 499 if (UI->getFlags() & UNW_ChainInfo) 503 outs() << " Size of prolog: " << static_cast<int>(UI->PrologSize) << "\n"; 504 outs() << " Number of Codes: " << static_cast<int>(UI->NumCodes) << "\n"; 506 if (UI->getFrameRegister()) [all...] |
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/ |
| pointers.c | 187 unsigned int UI, *pUI; 198 UI = 1002; 213 pUI = &UI;
|