Home | History | Annotate | Download | only in SemaCUDA

Lines Matching full:void

5 __host__ void h1h(void);
6 __device__ void h1d(void); // expected-note {{candidate function not viable: call to __device__ function from __host__ function}}
7 __host__ __device__ void h1hd(void);
8 __global__ void h1g(void);
14 __host__ void h1(void) {
22 __host__ void d1h(void); // expected-note {{candidate function not viable: call to __host__ function from __device__ function}}
23 __device__ void d1d(void);
24 __host__ __device__ void d1hd(void);
25 __global__ void d1g(void); // expected-note {{'d1g' declared here}}
27 __device__ void d1(void) {
34 __host__ void hd1h(void); // expected-note {{candidate function not viable: call to __host__ function from __host__ __device__ function}}
35 __device__ void hd1d(void); // expected-note {{candidate function not viable: call to __device__ function from __host__ __device__ function}}
36 __host__ __device__ void hd1hd(void);
37 __global__ void hd1g(void); // expected-note {{'hd1g' declared here}}
39 __host__ __device__ void hd1(void) {