Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/detail/
Dtype_half.hpp11 typedef short hdata; typedef
13 GLM_FUNC_DECL float toFloat32(hdata value);
14 GLM_FUNC_DECL hdata toFloat16(float const & value);
Dtype_half.inl34 GLM_FUNC_QUALIFIER float toFloat32(hdata value)
108 GLM_FUNC_QUALIFIER hdata toFloat16(float const & f)
144 return hdata(s);
172 return hdata(s | (m >> 13));
183 return hdata(s | 0x7c00);
198 return hdata(s | 0x7c00 | m | (m == 0));
231 return hdata(s | 0x7c00);
239 return hdata(s | (e << 10) | (m >> 13));
/third_party/ffmpeg/libavfilter/
Dvf_convolve.c162 FFTComplex *hdata, *vdata; member
170 FFTComplex *hdata = td->hdata; in fft_horizontal() local
178 av_fft_permute(s->fft[plane][jobnr], hdata + y * n); in fft_horizontal()
179 av_fft_calc(s->fft[plane][jobnr], hdata + y * n); in fft_horizontal()
264 FFTComplex *hdata = td->hdata; in fft_vertical() local
274 vdata[y * n + x].re = hdata[x * n + y].re; in fft_vertical()
275 vdata[y * n + x].im = hdata[x * n + y].im; in fft_vertical()
289 FFTComplex *hdata = td->hdata; in ifft_vertical() local
302 hdata[x * n + y].re = vdata[y * n + x].re; in ifft_vertical()
303 hdata[x * n + y].im = vdata[y * n + x].im; in ifft_vertical()
[all …]
Dvf_fftdnoiz.c44 FFTComplex *hdata, *vdata; member
241 p->hdata = av_calloc(p->b, p->data_linesize); in config_input()
243 if (!p->hdata || !p->vdata) in config_input()
264 FFTComplex *hdata = p->hdata; in import_plane() local
275 FFTComplex *ssrc, *dst = hdata; in import_plane()
290 dst = hdata; in import_plane()
298 ssrc = hdata; in import_plane()
331 FFTComplex *hdata = p->hdata; in export_plane() local
346 hdst = hdata; in export_plane()
359 hdst = hdata + hoff * data_linesize; in export_plane()
[all …]
/third_party/flutter/skia/third_party/externals/sdl/src/joystick/bsd/
DSDL_sysjoystick.c288 struct hid_data *hdata; local
381 hdata = hid_start_parse(hw->repdesc, 1 << hid_input, rep->rid);
383 hdata = hid_start_parse(hw->repdesc, 1 << hid_input);
385 if (hdata == NULL) {
396 while (hid_get_item(hdata, &hitem) > 0) {
439 hid_end_parse(hdata);
478 struct hid_data *hdata; local
538 hdata = hid_start_parse(joy->hwdata->repdesc, 1 << hid_input, rep->rid);
540 hdata = hid_start_parse(joy->hwdata->repdesc, 1 << hid_input);
542 if (hdata == NULL) {
[all …]
/third_party/curl/CMake/
DCurlTests.c97 struct hostent_data hdata; in main() local
109 rc = gethostbyname_r(address, &h, &hdata); in main()
/third_party/openssl/ssl/statem/
Dstatem_lib.c169 void **hdata, size_t *hdatalen) in get_cert_verify_tbs_data() argument
212 *hdata = tls13tbs; in get_cert_verify_tbs_data()
218 retlen = retlen_l = BIO_get_mem_data(s->s3->handshake_buffer, hdata); in get_cert_verify_tbs_data()
237 void *hdata; in tls_construct_cert_verify() local
263 if (!get_cert_verify_tbs_data(s, tls13tbs, &hdata, &hdatalen)) { in tls_construct_cert_verify()
297 if (EVP_DigestSignUpdate(mctx, hdata, hdatalen) <= 0 in tls_construct_cert_verify()
307 } else if (EVP_DigestSign(mctx, sig, &siglen, hdata, hdatalen) <= 0) { in tls_construct_cert_verify()
358 void *hdata; in tls_process_cert_verify() local
447 if (!get_cert_verify_tbs_data(s, tls13tbs, &hdata, &hdatalen)) { in tls_process_cert_verify()
488 if (EVP_DigestVerifyUpdate(mctx, hdata, hdatalen) <= 0 in tls_process_cert_verify()
[all …]
Dextensions.c1573 void *hdata; in tls_psk_do_binder() local
1576 BIO_get_mem_data(s->s3->handshake_buffer, &hdata); in tls_psk_do_binder()
1591 if (!PACKET_buf_init(&hashprefix, hdata, hdatalen) in tls_psk_do_binder()
1603 if (EVP_DigestUpdate(mctx, hdata, hdatalen) <= 0) { in tls_psk_do_binder()
/third_party/openssl/ssl/
Ds3_enc.c380 void *hdata; in ssl3_digest_cached_records() local
383 hdatalen = BIO_get_mem_data(s->s3->handshake_buffer, &hdata); in ssl3_digest_cached_records()
399 || !EVP_DigestUpdate(s->s3->handshake_dgst, hdata, hdatalen)) { in ssl3_digest_cached_records()
Dtls13_enc.c511 void *hdata; in tls13_change_cipher_state() local
520 handlen = BIO_get_mem_data(s->s3->handshake_buffer, &hdata); in tls13_change_cipher_state()
566 || !EVP_DigestUpdate(mdctx, hdata, handlen) in tls13_change_cipher_state()
/third_party/cef/tests/cefclient/browser/
Dosr_dragdrop_win.cc78 HANDLE hdata = GlobalAlloc(GPTR, sizeof(FILEGROUPDESCRIPTOR)); in GetStorageForFileDescriptor() local
81 reinterpret_cast<FILEGROUPDESCRIPTOR*>(hdata); in GetStorageForFileDescriptor()
88 storage->hGlobal = hdata; in GetStorageForFileDescriptor()