Exemplo n.º 1
0
 __host__ __device__
 int_type operator^=(int_type val) volatile
 {
   return fetch_xor(val) + val;
 }
Exemplo n.º 2
0
 T operator ^= (T value)
 {
     return fetch_xor(value) ^ value;
 }