Lines Matching full:__host__
37 __host__ int dh(void) { return 2; }
41 __host__ __device__ int hd(void) { return 3; }
49 __host__ int h(void) { return 9; }
56 // mangled names of extern "C" __host__ __device__ functions clash
57 // with those of their __host__/__device__ counterparts, so
58 // overloading of extern "C" functions can only happen for __host__
65 extern "C" __host__ int cdh(void) {return 11;}
73 extern "C" __host__ int ch(void) {return 13;}
77 extern "C" __host__ __device__ int chd(void) {return 14;}
81 __host__ void hostf(void) {
129 __host__ __device__ void hostdevicef(void) {
167 __host__ s_cd_dh() { x = 11; }
169 __host__ ~s_cd_dh() { x = 21; }
174 __host__ __device__ s_cd_hd() { x = 31; }
175 __host__ __device__ ~s_cd_hd() { x = 32; }
182 __host__