Lines Matching refs:U
31 static Use *op_begin(SubClass* U) {
35 return reinterpret_cast<Use*>(U) - ARITY;
37 static Use *op_end(SubClass* U) {
38 return reinterpret_cast<Use*>(U);
54 static unsigned operands(const User *U) {
55 return U->getNumOperands();
69 static Use *op_begin(SubClass* U) {
73 return reinterpret_cast<Use*>(U) - static_cast<User*>(U)->getNumOperands();
75 static Use *op_end(SubClass* U) {
76 return reinterpret_cast<Use*>(U);
78 static unsigned operands(const User *U) {
79 return U->getNumOperands();
96 static Use *op_begin(User* U) {
97 return U->getHungOffOperands();
99 static Use *op_end(User* U) {
100 return U->getHungOffOperands() + U->getNumOperands();
102 static unsigned operands(const User *U) {
103 return U->getNumOperands();