| 75 | } |
| 76 | |
| 77 | unsigned ArrayInfo::getDevId() const { |
| 78 | // The actual device ID is only stored in the first 8 bits of devId |
| 79 | // See ArrayInfo.hpp for more |
| 80 | return devId & 0xffU; |
| 81 | } |
| 82 | |
| 83 | void ArrayInfo::setId(int id) const { |
| 84 | const_cast<ArrayInfo *>(this)->setId(id); |
no outgoing calls
no test coverage detected