Searched defs:UI (Results 1 - 18 of 18) sorted by relevance

/external/tcpdump/
H A Dnetbios.h15 #define UI 0x03 /* 802.2 flags */ macro
/external/clang/lib/CodeGen/
H A DABIInfo.h78 ABIArgInfo(Kind K, llvm::Type *TD=0, unsigned UI=0, argument
80 : TheKind(K), TypeData(TD), PaddingType(P), UIntData(UI), BoolData0(B0),
/external/llvm/lib/CodeGen/
H A DMachineRegisterInfo.cpp169 use_iterator UI = use_begin(RegNo); local
170 if (UI == use_end())
172 return ++UI == use_end();
176 use_nodbg_iterator UI = use_nodbg_begin(RegNo); local
177 if (UI == use_nodbg_end())
179 return ++UI == use_nodbg_end();
187 for (use_iterator UI = use_begin(Reg), UE = use_end(); UI != UE; ++UI)
188 UI
[all...]
H A DTailDuplication.cpp244 MachineRegisterInfo::use_iterator UI = MRI->use_begin(VReg); local
245 while (UI != MRI->use_end()) {
246 MachineOperand &UseMO = UI.getOperand();
247 MachineInstr *UseMI = &*UI;
248 ++UI;
275 MachineRegisterInfo::use_iterator UI = MRI->use_begin(Src); local
276 if (++UI == MRI->use_end()) {
322 for (MachineRegisterInfo::use_iterator UI = MRI->use_begin(Reg),
323 UE = MRI->use_end(); UI != UE; ++UI) {
[all...]
/external/llvm/lib/VMCore/
H A DValue.cpp89 const_use_iterator UI = use_begin(), E = use_end(); local
91 for (; N; --N, ++UI)
92 if (UI == E) return false; // Too few.
93 return UI == E;
100 const_use_iterator UI = use_begin(), E = use_end(); local
102 for (; N; --N, ++UI)
103 if (UI == E) return false; // Too few.
/external/llvm/lib/Transforms/Utils/
H A DLocal.cpp314 Value::use_iterator UI = I->use_begin(); local
316 if (UI == UE)
319 User *TheUse = *UI;
320 for (++UI; UI != UE; ++UI) {
321 if (*UI != TheUse)
572 for (Value::use_iterator UI = BBI->use_begin(), E = BBI->use_end();
573 UI != E; ++UI) {
[all...]
H A DSimplifyCFG.cpp72 bool SimplifyUnreachable(UnreachableInst *UI);
1117 for (Value::use_iterator UI = BBI->use_begin(), E = BBI->use_end();
1118 UI != E; ++UI) {
1119 Instruction *U = cast<Instruction>(*UI);
2353 bool SimplifyCFGOpt::SimplifyUnreachable(UnreachableInst *UI) { argument
2354 BasicBlock *BB = UI->getParent();
2360 while (UI != BB->begin()) {
2361 BasicBlock::iterator BBI = UI;
2400 if (&BB->front() != UI) retur
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp635 User *UI = srcUseList.pop_back_val(); local
637 if (isa<BitCastInst>(UI)) {
638 for (User::use_iterator I = UI->use_begin(), E = UI->use_end();
641 } else if (GetElementPtrInst *G = dyn_cast<GetElementPtrInst>(UI)) {
643 for (User::use_iterator I = UI->use_begin(), E = UI->use_end();
648 } else if (UI != C && UI != cpy) {
/external/openssl/crypto/
H A Dossl_typ.h166 typedef struct ui_st UI; typedef in typeref:struct:ui_st
/external/openssl/include/openssl/
H A Dossl_typ.h166 typedef struct ui_st UI; typedef in typeref:struct:ui_st
/external/bluetooth/hcidump/parser/
H A Drfcomm.h85 #define UI 0x03 /* unnumbered information (with all data check) */ macro
/external/llvm/include/llvm/TableGen/
H A DRecord.h87 virtual Init *convertValue( UnsetInit *UI) { return 0; } argument
93 virtual Init *convertValue( UnOpInit *UI) { argument
94 return convertValue((TypedInit*)UI);
96 virtual Init *convertValue( BinOpInit *UI) { argument
97 return convertValue((TypedInit*)UI);
99 virtual Init *convertValue( TernOpInit *UI) { argument
100 return convertValue((TypedInit*)UI);
139 virtual Init *convertValue( UnsetInit *UI) { return (Init*)UI; } argument
148 virtual Init *convertValue( UnOpInit *UI) { retur argument
149 convertValue( BinOpInit *UI) argument
150 convertValue( TernOpInit *UI) argument
191 convertValue( UnOpInit *UI) argument
192 convertValue( BinOpInit *UI) argument
193 convertValue( TernOpInit *UI) argument
224 convertValue( UnsetInit *UI) argument
233 convertValue( UnOpInit *UI) argument
234 convertValue( BinOpInit *UI) argument
235 convertValue( TernOpInit *UI) argument
264 convertValue( UnsetInit *UI) argument
309 convertValue( UnsetInit *UI) argument
318 convertValue( UnOpInit *UI) argument
319 convertValue( BinOpInit *UI) argument
320 convertValue( TernOpInit *UI) argument
350 convertValue( UnsetInit *UI) argument
394 convertValue( UnsetInit *UI) argument
401 convertValue( UnOpInit *UI) argument
402 convertValue( BinOpInit *UI) argument
403 convertValue( TernOpInit *UI) argument
[all...]
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp303 Value::use_iterator UI = Placeholder->use_begin(); local
304 User *U = *UI;
309 UI.getUse().set(RealVal);
2750 for (Value::use_iterator UI = I->first->use_begin(),
2751 UE = I->first->use_end(); UI != UE; ) {
2752 if (CallInst* CI = dyn_cast<CallInst>(*UI++))
2805 for (Value::use_iterator UI = I->first->use_begin(),
2806 UE = I->first->use_end(); UI != UE; ) {
2807 if (CallInst* CI = dyn_cast<CallInst>(*UI++))
/external/llvm/lib/TableGen/
H A DRecord.cpp134 Init *BitsRecTy::convertValue(UnsetInit *UI) { argument
143 Init *BitsRecTy::convertValue(BitInit *UI) { argument
145 return BitsInit::get(UI);
/external/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp182 for (Value::const_use_iterator UI = C->use_begin(), E = C->use_end(); UI != E;
183 ++UI)
184 if (const Constant *CU = dyn_cast<Constant>(*UI)) {
198 for (Value::const_use_iterator UI = V->use_begin(), E = V->use_end(); UI != E;
199 ++UI) {
200 const User *U = *UI;
304 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI !
1662 Instruction *UI = cast<Instruction>(GV->use_back()); local
[all...]
/external/clang/lib/Sema/
H A DSemaLookup.cpp753 UnqualUsingDirectiveSet::const_iterator UI, UEnd; local
754 llvm::tie(UI, UEnd) = UDirs.getNamespacesFor(NS);
756 for (; UI != UEnd; ++UI)
757 if (LookupDirect(S, R, UI->getNominatedNamespace()))
3078 UnqualUsingDirectiveSet::const_iterator UI, UEnd; local
3079 llvm::tie(UI, UEnd) = UDirs.getNamespacesFor(Entity);
3080 for (; UI != UEnd; ++UI)
3081 LookupVisibleDecls(const_cast<DeclContext *>(UI
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp5245 SDNode::use_iterator &UI; member in class:__anon7411::RAUWUpdateListener
5250 while (UI != UE && N == *UI)
5251 ++UI;
5266 : DownLink(dl), UI(ui), UE(ue) {}
5290 SDNode::use_iterator UI = From->use_begin(), UE = From->use_end(); local
5291 RAUWUpdateListener Listener(UpdateListener, UI, UE);
5292 while (UI != UE) {
5293 SDNode *User = *UI;
5303 SDUse &Use = UI
5425 SDNode::use_iterator UI = From.getNode()->use_begin(), local
[all...]
/external/qemu/
H A Dppc-dis.c816 /* The UI field in a D form instruction. */
817 #define UI TO + 1
821 #define VA UI + 1
2601 { "cmplwi", OPL(10,0), OPL_MASK, PPCCOM, { OBF, RA, UI } },
2602 { "cmpldi", OPL(10,1), OPL_MASK, PPC64, { OBF, RA, UI } },
2603 { "cmpli", OP(10), OP_MASK, PPC, { BF, L, RA, UI } },
2604 { "cmpli", OP(10), OP_MASK, PWRCOM, { BF, RA, UI } },
3357 { "ori", OP(24), OP_MASK, PPCCOM, { RA, RS, UI } },
3358 { "oril", OP(24), OP_MASK, PWRCOM, { RA, RS, UI } },
3360 { "oris", OP(25), OP_MASK, PPCCOM, { RA, RS, UI } },
813 #define UI macro
[all...]

Completed in 388 milliseconds