Lines Matching defs:UI
97 const_use_iterator UI = use_begin(), E = use_end();
99 for (; N; --N, ++UI)
100 if (UI == E) return false; // Too few.
101 return UI == E;
105 const_use_iterator UI = use_begin(), E = use_end();
107 for (; N; --N, ++UI)
108 if (UI == E) return false; // Too few.
121 const_user_iterator UI = user_begin(), UE = user_end();
122 for (; BI != BE && UI != UE; ++BI, ++UI) {
126 // Scan use list: Check if the use at UI is in BB.
127 const Instruction *User = dyn_cast<Instruction>(*UI);
361 use_iterator UI = use_begin(), E = use_end();
362 for (; UI != E;) {
363 Use &U = *UI;
364 ++UI;