| 90 | } |
| 91 | |
| 92 | static inline __device__ uint temper(const uint *const temper_table, |
| 93 | const uint v, uint t) { |
| 94 | t ^= t >> 16; |
| 95 | t ^= t >> 8; |
| 96 | uint mat = temper_table[t & 0x0f]; |
| 97 | return v ^ mat; |
| 98 | } |
| 99 | |
| 100 | // Initialization |
| 101 |
no outgoing calls
no test coverage detected