Home
last modified time | relevance | path

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

12345678910>>...18

/dports/games/fs2open/fs2open.github.com-release_21_4_1/code/scripting/api/objs/
H A Dcockpit_display.cpp55 if (!cdh->isValid())
73 if (!cdh->isValid())
91 if (!cdh->isValid())
112 if (!cdh->isValid())
138 if (!cdh->isValid())
161 if (!cdh->isValid())
248 if (!cdh->isValid())
269 if (!cdh->isValid())
285 if (!cdh->isValid())
304 if (!cdh->isValid())
[all …]
/dports/emulators/hugo/hugo-2.12/
H A Dosd_win_cd.c429 GETCDHAND cdh;
484 ZeroMemory( &cdh, sizeof(cdh) );
485 cdh.size = sizeof(GETCDHAND);
486 cdh.ver = 1;
493 Log("Trying to test cd (%d:%d:%d)\n", cdh.ha, cdh.tgt, cdh.lun);
496 hCD = GetCDHandle( &cdh);
546 ZeroMemory( &cdh, sizeof(cdh) );
547 cdh.size = sizeof(GETCDHAND);
548 cdh.ver = 1;
555 Log("Prefered CD drive #%d (%d:%d:%d)\n", prefered_cd_index, cdh.ha, cdh.tgt, cdh.lun);
[all …]
/dports/security/libfido2/libfido2-1.9.0/tools/
H A Dcred_make.c22 struct blob cdh; in prepare_cred() local
28 memset(&cdh, 0, sizeof(cdh)); in prepare_cred()
31 r = base64_read(in_f, &cdh); in prepare_cred()
40 xxd(cdh.ptr, cdh.len); in prepare_cred()
51 (r = fido_cred_set_clientdata_hash(cred, cdh.ptr, in prepare_cred()
52 cdh.len)) != FIDO_OK || in prepare_cred()
77 free(cdh.ptr); in prepare_cred()
88 char *cdh = NULL; in print_attcred() local
97 fido_cred_clientdata_hash_len(cred), &cdh); in print_attcred()
113 fprintf(out_f, "%s\n", cdh); in print_attcred()
[all …]
H A Dassert_get.c81 struct blob cdh; in prepare_assert() local
87 memset(&cdh, 0, sizeof(cdh)); in prepare_assert()
91 r = base64_read(in_f, &cdh); in prepare_assert()
102 xxd(cdh.ptr, cdh.len); in prepare_assert()
116 if ((r = fido_assert_set_clientdata_hash(assert, cdh.ptr, in prepare_assert()
117 cdh.len)) != FIDO_OK || in prepare_assert()
147 free(cdh.ptr); in prepare_assert()
157 char *cdh = NULL; in print_assert() local
166 fido_assert_clientdata_hash_len(assert), &cdh); in print_assert()
183 fprintf(out_f, "%s\n", cdh); in print_assert()
[all …]
H A Dcred_verify.c22 struct blob cdh; in prepare_cred() local
31 memset(&cdh, 0, sizeof(cdh)); in prepare_cred()
37 r = base64_read(in_f, &cdh); in prepare_cred()
50 xxd(cdh.ptr, cdh.len); in prepare_cred()
67 (r = fido_cred_set_clientdata_hash(cred, cdh.ptr, in prepare_cred()
68 cdh.len)) != FIDO_OK || in prepare_cred()
91 free(cdh.ptr); in prepare_cred()
H A Dassert_verify.c26 struct blob cdh; in prepare_assert() local
32 memset(&cdh, 0, sizeof(cdh)); in prepare_assert()
36 r = base64_read(in_f, &cdh); in prepare_assert()
45 xxd(cdh.ptr, cdh.len); in prepare_assert()
58 if ((r = fido_assert_set_clientdata_hash(assert, cdh.ptr, in prepare_assert()
59 cdh.len)) != FIDO_OK || in prepare_assert()
81 free(cdh.ptr); in prepare_assert()
/dports/security/libfido2/libfido2-1.9.0/regress/
H A Dcred.c990 assert(fido_cred_set_clientdata_hash(c, cdh, sizeof(cdh)) == FIDO_OK); in valid_cred()
1040 assert(fido_cred_set_clientdata_hash(c, cdh, sizeof(cdh)) == FIDO_OK); in no_rp_id()
1065 assert(fido_cred_set_clientdata_hash(c, cdh, sizeof(cdh)) == FIDO_OK); in no_rp_name()
1093 assert(fido_cred_set_clientdata_hash(c, cdh, sizeof(cdh)) == FIDO_OK); in no_authdata()
1118 assert(fido_cred_set_clientdata_hash(c, cdh, sizeof(cdh)) == FIDO_OK); in no_x509()
1142 assert(fido_cred_set_clientdata_hash(c, cdh, sizeof(cdh)) == FIDO_OK); in no_sig()
1166 assert(fido_cred_set_clientdata_hash(c, cdh, sizeof(cdh)) == FIDO_OK); in no_fmt()
1190 assert(fido_cred_set_clientdata_hash(c, cdh, sizeof(cdh)) == FIDO_OK); in wrong_options()
1216 memcpy(junk, cdh, sizeof(cdh)); in junk_cdh()
1247 assert(fido_cred_set_clientdata_hash(c, cdh, sizeof(cdh)) == FIDO_OK); in junk_fmt()
[all …]
H A Dassert.c65 static const unsigned char cdh[32] = { variable
324 assert(fido_assert_set_clientdata_hash(a, cdh, sizeof(cdh)) == FIDO_OK); in valid_assert()
372 assert(fido_assert_set_clientdata_hash(a, cdh, sizeof(cdh)) == FIDO_OK); in no_rp()
394 assert(fido_assert_set_clientdata_hash(a, cdh, sizeof(cdh)) == FIDO_OK); in no_authdata()
415 assert(fido_assert_set_clientdata_hash(a, cdh, sizeof(cdh)) == FIDO_OK); in no_sig()
435 junk = malloc(sizeof(cdh)); in junk_cdh()
437 memcpy(junk, cdh, sizeof(cdh)); in junk_cdh()
443 assert(fido_assert_set_clientdata_hash(a, junk, sizeof(cdh)) == FIDO_OK); in junk_cdh()
466 assert(fido_assert_set_clientdata_hash(a, cdh, sizeof(cdh)) == FIDO_OK); in junk_rp()
514 assert(fido_assert_set_clientdata_hash(a, cdh, sizeof(cdh)) == FIDO_OK); in junk_sig()
[all …]
/dports/devel/llvm90/llvm-9.0.1.src/tools/clang/test/SemaCUDA/
H A Dfunction-overload.cu64 extern "C" __device__ DeviceReturnTy cdh() { return DeviceReturnTy(); } in cdh() function
65 extern "C" __host__ HostReturnTy cdh() { return HostReturnTy(); } in cdh() function
118 HostFnPtr fp_cdh = cdh; in hostf()
119 HostReturnTy ret_cdh = cdh(); in hostf()
139 DeviceFnPtr fp_cdh = cdh; in devicef()
140 DeviceReturnTy ret_cdh = cdh(); in devicef()
160 DeviceFnPtr fp_cdh = cdh; in globalf()
161 DeviceReturnTy ret_cdh = cdh(); in globalf()
193 CurrentFnPtr fp_cdh = cdh; in hostdevicef()
194 CurrentReturnTy ret_cdh = cdh(); in hostdevicef()
[all …]
/dports/devel/llvm80/llvm-8.0.1.src/tools/clang/test/SemaCUDA/
H A Dfunction-overload.cu64 extern "C" __device__ DeviceReturnTy cdh() { return DeviceReturnTy(); } in cdh() function
65 extern "C" __host__ HostReturnTy cdh() { return HostReturnTy(); } in cdh() function
118 HostFnPtr fp_cdh = cdh; in hostf()
119 HostReturnTy ret_cdh = cdh(); in hostf()
139 DeviceFnPtr fp_cdh = cdh; in devicef()
140 DeviceReturnTy ret_cdh = cdh(); in devicef()
160 DeviceFnPtr fp_cdh = cdh; in globalf()
161 DeviceReturnTy ret_cdh = cdh(); in globalf()
193 CurrentFnPtr fp_cdh = cdh; in hostdevicef()
194 CurrentReturnTy ret_cdh = cdh(); in hostdevicef()
[all …]
/dports/devel/llvm70/llvm-7.0.1.src/tools/clang/test/SemaCUDA/
H A Dfunction-overload.cu64 extern "C" __device__ DeviceReturnTy cdh() { return DeviceReturnTy(); } in cdh() function
65 extern "C" __host__ HostReturnTy cdh() { return HostReturnTy(); } in cdh() function
118 HostFnPtr fp_cdh = cdh; in hostf()
119 HostReturnTy ret_cdh = cdh(); in hostf()
139 DeviceFnPtr fp_cdh = cdh; in devicef()
140 DeviceReturnTy ret_cdh = cdh(); in devicef()
160 DeviceFnPtr fp_cdh = cdh; in globalf()
161 DeviceReturnTy ret_cdh = cdh(); in globalf()
193 CurrentFnPtr fp_cdh = cdh; in hostdevicef()
194 CurrentReturnTy ret_cdh = cdh(); in hostdevicef()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/clang/test/SemaCUDA/
H A Dfunction-overload.cu64 extern "C" __device__ DeviceReturnTy cdh() { return DeviceReturnTy(); } in cdh() function
65 extern "C" __host__ HostReturnTy cdh() { return HostReturnTy(); } in cdh() function
118 HostFnPtr fp_cdh = cdh; in hostf()
119 HostReturnTy ret_cdh = cdh(); in hostf()
139 DeviceFnPtr fp_cdh = cdh; in devicef()
140 DeviceReturnTy ret_cdh = cdh(); in devicef()
160 DeviceFnPtr fp_cdh = cdh; in globalf()
161 DeviceReturnTy ret_cdh = cdh(); in globalf()
193 CurrentFnPtr fp_cdh = cdh; in hostdevicef()
194 CurrentReturnTy ret_cdh = cdh(); in hostdevicef()
[all …]
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/clang/test/SemaCUDA/
H A Dfunction-overload.cu64 extern "C" __device__ DeviceReturnTy cdh() { return DeviceReturnTy(); } in cdh() function
65 extern "C" __host__ HostReturnTy cdh() { return HostReturnTy(); } in cdh() function
118 HostFnPtr fp_cdh = cdh; in hostf()
119 HostReturnTy ret_cdh = cdh(); in hostf()
139 DeviceFnPtr fp_cdh = cdh; in devicef()
140 DeviceReturnTy ret_cdh = cdh(); in devicef()
160 DeviceFnPtr fp_cdh = cdh; in globalf()
161 DeviceReturnTy ret_cdh = cdh(); in globalf()
193 CurrentFnPtr fp_cdh = cdh; in hostdevicef()
194 CurrentReturnTy ret_cdh = cdh(); in hostdevicef()
[all …]
/dports/devel/llvm11/llvm-11.0.1.src/tools/clang/test/SemaCUDA/
H A Dfunction-overload.cu64 extern "C" __device__ DeviceReturnTy cdh() { return DeviceReturnTy(); } in cdh() function
65 extern "C" __host__ HostReturnTy cdh() { return HostReturnTy(); } in cdh() function
118 HostFnPtr fp_cdh = cdh; in hostf()
119 HostReturnTy ret_cdh = cdh(); in hostf()
139 DeviceFnPtr fp_cdh = cdh; in devicef()
140 DeviceReturnTy ret_cdh = cdh(); in devicef()
160 DeviceFnPtr fp_cdh = cdh; in globalf()
161 DeviceReturnTy ret_cdh = cdh(); in globalf()
193 CurrentFnPtr fp_cdh = cdh; in hostdevicef()
194 CurrentReturnTy ret_cdh = cdh(); in hostdevicef()
[all …]
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/clang/test/SemaCUDA/
H A Dfunction-overload.cu64 extern "C" __device__ DeviceReturnTy cdh() { return DeviceReturnTy(); } in cdh() function
65 extern "C" __host__ HostReturnTy cdh() { return HostReturnTy(); } in cdh() function
118 HostFnPtr fp_cdh = cdh; in hostf()
119 HostReturnTy ret_cdh = cdh(); in hostf()
139 DeviceFnPtr fp_cdh = cdh; in devicef()
140 DeviceReturnTy ret_cdh = cdh(); in devicef()
160 DeviceFnPtr fp_cdh = cdh; in globalf()
161 DeviceReturnTy ret_cdh = cdh(); in globalf()
193 CurrentFnPtr fp_cdh = cdh; in hostdevicef()
194 CurrentReturnTy ret_cdh = cdh(); in hostdevicef()
[all …]
/dports/devel/llvm10/llvm-10.0.1.src/tools/clang/test/SemaCUDA/
H A Dfunction-overload.cu64 extern "C" __device__ DeviceReturnTy cdh() { return DeviceReturnTy(); } in cdh() function
65 extern "C" __host__ HostReturnTy cdh() { return HostReturnTy(); } in cdh() function
118 HostFnPtr fp_cdh = cdh; in hostf()
119 HostReturnTy ret_cdh = cdh(); in hostf()
139 DeviceFnPtr fp_cdh = cdh; in devicef()
140 DeviceReturnTy ret_cdh = cdh(); in devicef()
160 DeviceFnPtr fp_cdh = cdh; in globalf()
161 DeviceReturnTy ret_cdh = cdh(); in globalf()
193 CurrentFnPtr fp_cdh = cdh; in hostdevicef()
194 CurrentReturnTy ret_cdh = cdh(); in hostdevicef()
[all …]
/dports/net-im/gloox/gloox-1.0.24/src/
H A Dcompressiondefault.cpp32 CompressionDefault::CompressionDefault( CompressionDataHandler* cdh, Method method ) in CompressionDefault() argument
33 : CompressionBase( cdh ), m_impl( 0 ) in CompressionDefault()
39 m_impl = new CompressionZlib( cdh ); in CompressionDefault()
44 m_impl = new CompressionLZW( cdh ); in CompressionDefault()
H A Dconnectionbase.h42 ConnectionBase( ConnectionDataHandler* cdh ) in ConnectionBase() argument
43 : m_handler( cdh ), m_state( StateDisconnected ), m_port( -1 ) in ConnectionBase()
102 void registerConnectionDataHandler( ConnectionDataHandler* cdh ) { m_handler = cdh; } in registerConnectionDataHandler() argument
/dports/science/py-obspy/obspy-1.2.2/obspy/clients/fdsn/mass_downloader/
H A Dmass_downloader.py237 for cdh in client_download_helpers.values():
238 for station in cdh.stations.values():
243 new_stationxml_files[cdh.client_name].append(
250 new_miniseed_files[cdh.client_name].append(
266 for cdh in client_download_helpers.values():
267 mseed_files = new_miniseed_files[cdh.client_name]
268 stationxml_files = new_stationxml_files[cdh.client_name]
274 "[%.1f MB]." % (cdh.client_name, len(mseed_files),
278 cdh.client_name, len(stationxml_files),
/dports/comms/xnec2c/xnec2c-3.4/src/
H A Dcalculations.c803 cdh= cos( d); in sbf()
811 else omc=1.0- cdh* cdh+ sdh* sdh; in sbf()
868 cdh= cos( d); in sbf()
870 cd= cdh* cdh- sdh* sdh; in sbf()
911 *cc += (cdh + ap * qp * (sdh + xxi * cdh)) / d; in sbf()
935 *cc += ( cdh- aj* qm*( sdh+ xxi* cdh))/ d; in sbf()
1019 else omc=1.0- cdh* cdh+ sdh* sdh; in tbf()
1073 cdh= cos( d); in tbf()
1075 cd= cdh* cdh- sdh* sdh; in tbf()
1120 segj.cx[jsnop]=( cdh+ ap* qp*( sdh+ xxi* cdh))/ d; in tbf()
[all …]
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/clang/test/SemaCUDA/
H A Dfunction-overload.cu72 extern "C" __device__ DeviceReturnTy cdh() { return DeviceReturnTy(); } in cdh() function
73 extern "C" __host__ HostReturnTy cdh() { return HostReturnTy(); } in cdh() function
126 HostFnPtr fp_cdh = cdh; in hostf()
127 HostReturnTy ret_cdh = cdh(); in hostf()
147 DeviceFnPtr fp_cdh = cdh; in devicef()
148 DeviceReturnTy ret_cdh = cdh(); in devicef()
168 DeviceFnPtr fp_cdh = cdh; in globalf()
169 DeviceReturnTy ret_cdh = cdh(); in globalf()
201 CurrentFnPtr fp_cdh = cdh; in hostdevicef()
202 CurrentReturnTy ret_cdh = cdh(); in hostdevicef()
[all …]
/dports/devel/llvm12/llvm-project-12.0.1.src/clang/test/SemaCUDA/
H A Dfunction-overload.cu72 extern "C" __device__ DeviceReturnTy cdh() { return DeviceReturnTy(); } in cdh() function
73 extern "C" __host__ HostReturnTy cdh() { return HostReturnTy(); } in cdh() function
126 HostFnPtr fp_cdh = cdh; in hostf()
127 HostReturnTy ret_cdh = cdh(); in hostf()
147 DeviceFnPtr fp_cdh = cdh; in devicef()
148 DeviceReturnTy ret_cdh = cdh(); in devicef()
168 DeviceFnPtr fp_cdh = cdh; in globalf()
169 DeviceReturnTy ret_cdh = cdh(); in globalf()
201 CurrentFnPtr fp_cdh = cdh; in hostdevicef()
202 CurrentReturnTy ret_cdh = cdh(); in hostdevicef()
[all …]
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/clang/test/SemaCUDA/
H A Dfunction-overload.cu72 extern "C" __device__ DeviceReturnTy cdh() { return DeviceReturnTy(); } in cdh() function
73 extern "C" __host__ HostReturnTy cdh() { return HostReturnTy(); } in cdh() function
126 HostFnPtr fp_cdh = cdh; in hostf()
127 HostReturnTy ret_cdh = cdh(); in hostf()
147 DeviceFnPtr fp_cdh = cdh; in devicef()
148 DeviceReturnTy ret_cdh = cdh(); in devicef()
168 DeviceFnPtr fp_cdh = cdh; in globalf()
169 DeviceReturnTy ret_cdh = cdh(); in globalf()
201 CurrentFnPtr fp_cdh = cdh; in hostdevicef()
202 CurrentReturnTy ret_cdh = cdh(); in hostdevicef()
[all …]
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/clang/test/SemaCUDA/
H A Dfunction-overload.cu72 extern "C" __device__ DeviceReturnTy cdh() { return DeviceReturnTy(); } in cdh() function
73 extern "C" __host__ HostReturnTy cdh() { return HostReturnTy(); } in cdh() function
126 HostFnPtr fp_cdh = cdh; in hostf()
127 HostReturnTy ret_cdh = cdh(); in hostf()
147 DeviceFnPtr fp_cdh = cdh; in devicef()
148 DeviceReturnTy ret_cdh = cdh(); in devicef()
168 DeviceFnPtr fp_cdh = cdh; in globalf()
169 DeviceReturnTy ret_cdh = cdh(); in globalf()
201 CurrentFnPtr fp_cdh = cdh; in hostdevicef()
202 CurrentReturnTy ret_cdh = cdh(); in hostdevicef()
[all …]
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/clang/test/SemaCUDA/
H A Dfunction-overload.cu72 extern "C" __device__ DeviceReturnTy cdh() { return DeviceReturnTy(); } in cdh() function
73 extern "C" __host__ HostReturnTy cdh() { return HostReturnTy(); } in cdh() function
126 HostFnPtr fp_cdh = cdh; in hostf()
127 HostReturnTy ret_cdh = cdh(); in hostf()
147 DeviceFnPtr fp_cdh = cdh; in devicef()
148 DeviceReturnTy ret_cdh = cdh(); in devicef()
168 DeviceFnPtr fp_cdh = cdh; in globalf()
169 DeviceReturnTy ret_cdh = cdh(); in globalf()
201 CurrentFnPtr fp_cdh = cdh; in hostdevicef()
202 CurrentReturnTy ret_cdh = cdh(); in hostdevicef()
[all …]

12345678910>>...18