Home
last modified time | relevance | path

Searched refs:overload_hd (Results 1 – 1 of 1) sorted by relevance

/external/llvm-project/clang/test/SemaCUDA/
Dfunction-template-overload.cu36 template <typename T> __host__ __device__ HDType overload_hd(T a) { return HDType(); } in overload_hd() function
39 template <typename T> __device__ HDType overload_hd(T a);
41 __device__ HDType overload_hd(int a); // OK.
45 template <> __host__ HType overload_hd(int a);
47 template __host__ HType overload_hd(long a);
49 __host__ HType overload_hd(int a); // OK
85 overload_hd(13); in hf()
100 overload_hd(23); in df()