Searched defs:UI (Results 1 - 25 of 54) sorted by last modified time

123

/external/tcpdump/
H A Dnetbios.h15 #define UI 0x03 /* 802.2 flags */ macro
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/qemu/disas/
H A Dppc.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...]
/external/openssl/crypto/
H A Dossl_typ.h170 typedef struct ui_st UI; typedef in typeref:struct:ui_st
/external/openssl/include/openssl/
H A Dossl_typ.h170 typedef struct ui_st UI; typedef in typeref:struct:ui_st
/external/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp410 static void printWin64EHUnwindInfo(const Win64EH::UnwindInfo *UI) { argument
414 outs() << " Version: " << static_cast<int>(UI->getVersion()) << "\n";
415 outs() << " Flags: " << static_cast<int>(UI->getFlags());
416 if (UI->getFlags()) {
417 if (UI->getFlags() & UNW_ExceptionHandler)
419 if (UI->getFlags() & UNW_TerminateHandler)
421 if (UI->getFlags() & UNW_ChainInfo)
425 outs() << " Size of prolog: " << static_cast<int>(UI->PrologSize) << "\n";
426 outs() << " Number of Codes: " << static_cast<int>(UI->NumCodes) << "\n";
428 if (UI
[all...]
/external/llvm/tools/llvm-readobj/
H A DWin64EHDumper.cpp45 static uint64_t getOffsetOfLSDA(const UnwindInfo& UI) { argument
46 return static_cast<const char*>(UI.getLanguageSpecificData())
47 - reinterpret_cast<const char*>(&UI);
175 void Dumper::printUnwindCode(const UnwindInfo& UI, ArrayRef<UnwindCode> UC) { argument
197 if (UI.getFrameRegister() == 0)
200 OS << " reg=" << getUnwindRegisterName(UI.getFrameRegister())
201 << format(", offset=0x%X", UI.getFrameOffset() * 16);
233 off_t Offset, const UnwindInfo &UI) {
235 SW.printNumber("Version", UI.getVersion());
236 SW.printFlags("Flags", UI
232 printUnwindInfo(const Context &Ctx, const coff_section *Section, off_t Offset, const UnwindInfo &UI) argument
296 const auto UI = reinterpret_cast<const UnwindInfo*>(Contents.data() + Offset); local
[all...]
/external/llvm/tools/opt/
H A DAnalysisWrappers.cpp41 Instruction *UI = dyn_cast<Instruction>(U); variable
42 if (!UI) continue;
44 CallSite CS(cast<Value>(UI));
55 errs() << *UI;
/external/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp3469 Instruction *UI = cast<Instruction>(U); local
3471 if (!TheLoop->contains(UI)) {
3472 DEBUG(dbgs() << "LV: Found an outside user for : " << *UI << '\n');
4083 for (ValueVector::iterator UI = TempObjects.begin(), UE = TempObjects.end();
4084 UI != UE; ++UI) {
4085 Value *UnderlyingObj = *UI;
4900 Instruction *UI = cast<Instruction>(U);
4903 BasicBlock *Parent = UI->getParent();
4926 if (VisitedInsts.insert(UI)) {
[all...]
H A DSLPVectorizer.cpp733 Instruction *UI = dyn_cast<Instruction>(U); local
734 if (!UI) {
741 BasicBlock *UserBlock = UI->getParent();
744 << *UI << ". \n");
750 if (isa<PHINode>(*UI)) {
751 DEBUG(dbgs() << "SLP: \tWe can schedule PHIs:" << *UI << ". \n");
756 if (ScalarToTreeEntry.count(UI)) {
757 int Idx = ScalarToTreeEntry[UI];
764 DEBUG(dbgs() << "SLP: In-tree user (" << *UI << ") at #" <<
771 if (std::find(UserIgnoreList.begin(), UserIgnoreList.end(), UI) !
[all...]
/external/llvm/include/llvm/CodeGen/
H A DMachineRegisterInfo.h438 use_iterator UI = use_begin(RegNo); local
439 if (UI == use_end())
441 return ++UI == use_end();
/external/llvm/include/llvm/IR/
H A DValue.h138 use_iterator_impl<Use> UI; member in class:llvm::Value::user_iterator_impl
139 explicit user_iterator_impl(Use *U) : UI(U) {}
148 bool operator==(const user_iterator_impl &x) const { return UI == x.UI; }
155 ++UI;
166 return UI->getUser();
172 return user_iterator_impl<const UserTy>(*UI);
175 Use &getUse() const { return *UI; }
179 unsigned getOperandNo() const { return UI->getOperandNo(); }
/external/llvm/include/llvm/TableGen/
H A DRecord.h105 virtual Init *convertValue( UnsetInit *UI) { return nullptr; } argument
111 virtual Init *convertValue( UnOpInit *UI) { argument
112 return convertValue((TypedInit*)UI);
114 virtual Init *convertValue( BinOpInit *UI) { argument
115 return convertValue((TypedInit*)UI);
117 virtual Init *convertValue( TernOpInit *UI) { argument
118 return convertValue((TypedInit*)UI);
153 Init *convertValue( UnsetInit *UI) override { return (Init*)UI; }
162 Init *convertValue( UnOpInit *UI) overrid
[all...]
/external/llvm/lib/Analysis/
H A DLoopInfo.cpp183 Instruction *UI = cast<Instruction>(U.getUser()); local
184 BasicBlock *UserBB = UI->getParent();
185 if (PHINode *P = dyn_cast<PHINode>(UI))
H A DSparsePropagation.cpp308 Instruction *UI = cast<Instruction>(U); local
309 if (BBExecutable.count(UI->getParent())) // Inst is executable?
310 visitInst(*UI);
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp352 auto UI = Placeholder->user_begin(); local
353 User *U = *UI;
358 UI.getUse().set(RealVal);
3231 for (auto UI = I->first->user_begin(), UE = I->first->user_end();
3232 UI != UE;) {
3233 if (CallInst* CI = dyn_cast<CallInst>(*UI++))
3286 for (auto UI = I->first->user_begin(), UE = I->first->user_end();
3287 UI != UE;) {
3288 if (CallInst* CI = dyn_cast<CallInst>(*UI++))
/external/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp350 const Instruction *UI = cast<Instruction>(U); local
351 if (UI->getParent() != DestBB || !isa<PHINode>(UI))
356 if (UI->getParent() == DestBB) {
357 if (const PHINode *UPN = dyn_cast<PHINode>(UI))
486 for (Value::user_iterator UI = CI->user_begin(), E = CI->user_end();
487 UI != E; ) {
488 Use &TheUse = UI.getUse();
489 Instruction *User = cast<Instruction>(*UI);
499 ++UI;
2903 Instruction *UI = cast<Instruction>(U); local
2916 Instruction *UI = cast<Instruction>(U); local
3075 Instruction *UI = cast<Instruction>(U); local
[all...]
H A DMachineRegisterInfo.cpp321 use_nodbg_iterator UI = use_nodbg_begin(RegNo); local
322 if (UI == use_nodbg_end())
324 return ++UI == use_nodbg_end();
H A DScheduleDAGInstrs.cpp419 VReg2UseMap::iterator UI = VRegUses.find(Reg); local
420 for (; UI != VRegUses.end(); ++UI) {
421 if (UI->SU == SU)
424 if (UI == VRegUses.end())
H A DSjLjEHPrepare.cpp311 Instruction *UI = cast<Instruction>(U); local
312 if (UI->getParent() != BB || isa<PHINode>(UI))
313 Users.push_back(UI);
H A DTailDuplication.cpp267 MachineRegisterInfo::use_iterator UI = MRI->use_begin(VReg); local
268 while (UI != MRI->use_end()) {
269 MachineOperand &UseMO = *UI;
271 ++UI;
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp5783 SDNode::use_iterator &UI; member in class:__anon25812::RAUWUpdateListener
5788 while (UI != UE && N == *UI)
5789 ++UI;
5796 : SelectionDAG::DAGUpdateListener(d), UI(ui), UE(ue) {}
5819 SDNode::use_iterator UI = From->use_begin(), UE = From->use_end(); local
5820 RAUWUpdateListener Listener(*this, UI, UE);
5821 while (UI != UE) {
5822 SDNode *User = *UI;
5832 SDUse &Use = UI
5950 SDNode::use_iterator UI = From.getNode()->use_begin(), local
[all...]
/external/llvm/lib/IR/
H A DValue.cpp93 const_use_iterator UI = use_begin(), E = use_end(); local
95 for (; N; --N, ++UI)
96 if (UI == E) return false; // Too few.
97 return UI == E;
104 const_use_iterator UI = use_begin(), E = use_end(); local
106 for (; N; --N, ++UI)
107 if (UI == E) return false; // Too few.
122 const_user_iterator UI = user_begin(), UE = user_end(); local
123 for (; BI != BE && UI != UE; ++BI, ++UI) {
[all...]
/external/llvm/lib/TableGen/
H A DRecord.cpp144 Init *BitsRecTy::convertValue(UnsetInit *UI) { argument
153 Init *BitsRecTy::convertValue(BitInit *UI) { argument
155 return BitsInit::get(UI);
/external/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp7365 for (SDNode::use_iterator UI = LoadRoot->use_begin(),
7366 UE = LoadRoot->use_end(); UI != UE; ++UI)
7367 if (((isa<LoadSDNode>(*UI) &&
7368 cast<LoadSDNode>(*UI)->getChain().getNode() == LoadRoot) ||
7369 UI->getOpcode() == ISD::TokenFactor) && !Visited.count(*UI))
7370 Queue.push_back(*UI);
7531 for (SDNode::use_iterator UI = Inputs[i].getNode()->use_begin(),
7533 UI !
8219 SDNode::use_iterator UI = N->use_begin(), UE = N->use_end(); local
[all...]

Completed in 9108 milliseconds

123