Home
last modified time | relevance | path

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

/external/clang/test/CodeGenCUDA/
Dfunction-overload.cu63 extern "C" __device__ int cdh(void) {return 10;} in cdh() function
65 extern "C" __host__ int cdh(void) {return 11;} in cdh() function
89 fp_t cdhp = cdh; // CHECK-HOST: store {{.*}} @cdh, {{.*}} %cdhp, in hostf()
101 cdh(); // CHECK-HOST: call i32 @cdh() in hostf()
114 fp_t cdhp = cdh; // CHECK-DEVICE: store {{.*}} @cdh, {{.*}} %cdhp, in devicef()
125 cdh(); // CHECK-DEVICE: call i32 @cdh() in devicef()
137 fp_t cdhp = cdh; // CHECK-BOTH: store {{.*}} @cdh, {{.*}} %cdhp, in hostdevicef()
151 cdh(); // CHECK-BOTH: call i32 @cdh() in hostdevicef()
161 fp_t cdhp = cdh;
/external/clang/test/SemaCUDA/
Dfunction-overload.cu52 extern "C" __device__ int cdh(void) {return 10;} in cdh() function
53 extern "C" __host__ int cdh(void) {return 11;} in cdh() function
83 fp_t cdhp = cdh; in hostf()
97 cdh(); in hostf()
115 fp_t cdhp = cdh; in devicef()
130 cdh(); in devicef()
149 fp_t cdhp = cdh; in globalf()
164 cdh(); in globalf()
190 fp_t cdhp = cdh; in hostdevicef()
216 cdh(); in hostdevicef()
[all …]
/external/icu/icu4c/source/test/cintltst/
Dcustrtst.c495 cdh[] = { 0x63, 0x64, 0x68, 0 }, in TestStringSearching() local
511 if (u_strpbrk(testString, cdh) != &testString[2]) { in TestStringSearching()
538 if (u_strpbrk(testSurrogateString, cdh) != &testSurrogateString[5]) { in TestStringSearching()
577 if (u_strcspn(testString, cdh) != 2) { in TestStringSearching()
601 if (u_strcspn(testSurrogateString, cdh) != 5) { in TestStringSearching()