Home
last modified time | relevance | path

Searched refs:in_data (Results 1 – 25 of 178) sorted by relevance

12345678

/third_party/boost/libs/algorithm/test/
Dfind_backward_test.cpp37 int in_data[] = {1, 2, 3, 4, 5}; in check_constexpr_backward() local
40 const int* from = in_data; in check_constexpr_backward()
41 const int* to = in_data + 5; in check_constexpr_backward()
46 start = ba::find_backward(in_data, 1); // stops on first in check_constexpr_backward()
52 end = ba::find_backward(in_data, 6); // stops on the end in check_constexpr_backward()
56 res = (res && three == in_data + 2); in check_constexpr_backward()
58 three = ba::find_backward(in_data, 3); // stops on third element in check_constexpr_backward()
59 res = (res && three == in_data + 2); in check_constexpr_backward()
126 int in_data[] = {1, 2, 3, 4, 5}; in check_constexpr_if_backward() local
129 const int* from = in_data; in check_constexpr_if_backward()
[all …]
Dfind_not_test.cpp37 int in_data[] = {2, 2, 3, 4, 5}; in check_constexpr() local
40 const int* from = in_data; in check_constexpr()
41 const int* to = in_data + 5; in check_constexpr()
46 start = ba::find_not(in_data, 1); // stops on first in check_constexpr()
57 res = (res && three == in_data + 2); in check_constexpr()
59 three = ba::find_not(in_data, 2); // stops on third element in check_constexpr()
60 res = (res && three == in_data + 2); in check_constexpr()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/
Dtls_internal.c474 const struct wpabuf *in_data, in tls_connection_handshake() argument
477 return tls_connection_handshake2(tls_ctx, conn, in_data, appl_data, in tls_connection_handshake()
484 const struct wpabuf *in_data, in tls_connection_handshake2() argument
498 in_data ? wpabuf_head(in_data) : NULL, in tls_connection_handshake2()
499 in_data ? wpabuf_len(in_data) : 0, in tls_connection_handshake2()
528 const struct wpabuf *in_data, in tls_connection_server_handshake() argument
542 res = tlsv1_server_handshake(conn->server, wpabuf_head(in_data), in tls_connection_server_handshake()
543 wpabuf_len(in_data), &res_len); in tls_connection_server_handshake()
563 const struct wpabuf *in_data) in tls_connection_encrypt() argument
569 buf = wpabuf_alloc(wpabuf_len(in_data) + 300); in tls_connection_encrypt()
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/
Dtls_internal.c474 const struct wpabuf *in_data, in tls_connection_handshake() argument
477 return tls_connection_handshake2(tls_ctx, conn, in_data, appl_data, in tls_connection_handshake()
484 const struct wpabuf *in_data, in tls_connection_handshake2() argument
498 in_data ? wpabuf_head(in_data) : NULL, in tls_connection_handshake2()
499 in_data ? wpabuf_len(in_data) : 0, in tls_connection_handshake2()
528 const struct wpabuf *in_data, in tls_connection_server_handshake() argument
542 res = tlsv1_server_handshake(conn->server, wpabuf_head(in_data), in tls_connection_server_handshake()
543 wpabuf_len(in_data), &res_len); in tls_connection_server_handshake()
563 const struct wpabuf *in_data) in tls_connection_encrypt() argument
569 buf = wpabuf_alloc(wpabuf_len(in_data) + 300); in tls_connection_encrypt()
[all …]
/third_party/boost/libs/numeric/odeint/test_external/mpi/
Dsplit_test.cpp31 std::vector<size_t> in_data, out_data; in BOOST_AUTO_TEST_CASE() local
36 for(size_t i = 0 ; i < total_size ; i++) in_data.push_back(i); in BOOST_AUTO_TEST_CASE()
39 split( in_data, state ); in BOOST_AUTO_TEST_CASE()
53 if(world.rank() == 0) out_data.resize(in_data.size()); in BOOST_AUTO_TEST_CASE()
57 … BOOST_REQUIRE_EQUAL_COLLECTIONS(in_data.begin(), in_data.end(), out_data.begin(), out_data.end()); in BOOST_AUTO_TEST_CASE()
Dnorm_test.cpp31 std::vector<int> in_data; in BOOST_AUTO_TEST_CASE() local
37 in_data.push_back( rand() % 10000 ); in BOOST_AUTO_TEST_CASE()
38 ref_value = *std::max_element(in_data.begin(), in_data.end()); in BOOST_AUTO_TEST_CASE()
43 split( in_data, state ); in BOOST_AUTO_TEST_CASE()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/tls/
Dtlsv1_record.c279 const u8 *in_data, size_t in_len, in tlsv1_record_receive() argument
294 in_data, in_len); in tlsv1_record_receive()
298 ct = in_data[0]; in tlsv1_record_receive()
299 rlen = WPA_GET_BE16(in_data + 3); in tlsv1_record_receive()
301 "length %d", ct, in_data[1], in_data[2], (int) rlen); in tlsv1_record_receive()
308 if (in_data[1] != 0x03) { in tlsv1_record_receive()
310 "%u.%u", in_data[1], in_data[2]); in tlsv1_record_receive()
323 in_data += TLS_RECORD_HEADER_LEN; in tlsv1_record_receive()
334 in_data, rlen); in tlsv1_record_receive()
357 if (crypto_cipher_decrypt(rl->read_cbc, in_data, in tlsv1_record_receive()
[all …]
Dtlsv1_client_read.c23 const u8 *in_data, size_t *in_len);
25 const u8 *in_data, size_t *in_len);
27 const u8 *in_data, size_t *in_len);
79 const u8 *in_data, size_t *in_len) in tls_process_server_hello() argument
94 pos = in_data; in tls_process_server_hello()
265 *in_len = end - in_data; in tls_process_server_hello()
347 const u8 *in_data, size_t *in_len) in tls_process_certificate() argument
363 pos = in_data; in tls_process_certificate()
387 return tls_process_server_key_exchange(conn, ct, in_data, in tls_process_certificate()
390 return tls_process_certificate_request(conn, ct, in_data, in tls_process_certificate()
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/tls/
Dtlsv1_record.c279 const u8 *in_data, size_t in_len, in tlsv1_record_receive() argument
294 in_data, in_len); in tlsv1_record_receive()
298 ct = in_data[0]; in tlsv1_record_receive()
299 rlen = WPA_GET_BE16(in_data + 3); in tlsv1_record_receive()
301 "length %d", ct, in_data[1], in_data[2], (int) rlen); in tlsv1_record_receive()
308 if (in_data[1] != 0x03) { in tlsv1_record_receive()
310 "%u.%u", in_data[1], in_data[2]); in tlsv1_record_receive()
323 in_data += TLS_RECORD_HEADER_LEN; in tlsv1_record_receive()
334 in_data, rlen); in tlsv1_record_receive()
357 if (crypto_cipher_decrypt(rl->read_cbc, in_data, in tlsv1_record_receive()
[all …]
Dtlsv1_client_read.c23 const u8 *in_data, size_t *in_len);
25 const u8 *in_data, size_t *in_len);
27 const u8 *in_data, size_t *in_len);
79 const u8 *in_data, size_t *in_len) in tls_process_server_hello() argument
94 pos = in_data; in tls_process_server_hello()
265 *in_len = end - in_data; in tls_process_server_hello()
347 const u8 *in_data, size_t *in_len) in tls_process_certificate() argument
363 pos = in_data; in tls_process_certificate()
387 return tls_process_server_key_exchange(conn, ct, in_data, in tls_process_certificate()
390 return tls_process_certificate_request(conn, ct, in_data, in tls_process_certificate()
[all …]
/third_party/gstreamer/gstplugins_bad/ext/colormanagement/
Dgstlcms.c745 guint8 *in_data, *out_data; in gst_lcms_process_rgb() local
750 in_data = (guint8 *) GST_VIDEO_FRAME_PLANE_DATA (inframe, 0); in gst_lcms_process_rgb()
785 out_data = in_data; in gst_lcms_process_rgb()
802 cmsDoTransformStride (lcms->cms_transform, in_data, out_data, in gst_lcms_process_rgb()
810 alpha = in_data[in_offsets[3]]; in gst_lcms_process_rgb()
811 if (lcms->preserve_black && (in_data[in_offsets[0]] == 0x00) in gst_lcms_process_rgb()
812 && (in_data[in_offsets[1]] == 0x00) in gst_lcms_process_rgb()
813 && (in_data[in_offsets[2]] == 0x0)) in gst_lcms_process_rgb()
817 cmsDoTransformStride (lcms->cms_transform, in_data, out_data, 1, in gst_lcms_process_rgb()
821 in_data += in_pixel_stride; in gst_lcms_process_rgb()
[all …]
/third_party/skia/third_party/externals/spirv-cross/shaders/comp/
Dmod.comp6 vec4 in_data[];
17 vec4 v = mod(in_data[ident], out_data[ident]);
20 uvec4 vu = floatBitsToUint(in_data[ident]) % floatBitsToUint(out_data[ident]);
23 ivec4 vi = floatBitsToInt(in_data[ident]) % floatBitsToInt(out_data[ident]);
Dstruct-layout.comp11 Foo in_data[];
22 out_data[ident].m = in_data[ident].m * in_data[ident].m;
/third_party/skia/third_party/externals/spirv-cross/shaders-msl/comp/
Dmod.comp6 vec4 in_data[];
17 vec4 v = mod(in_data[ident], out_data[ident]);
20 uvec4 vu = floatBitsToUint(in_data[ident]) % floatBitsToUint(out_data[ident]);
23 ivec4 vi = floatBitsToInt(in_data[ident]) % floatBitsToInt(out_data[ident]);
Dstruct-layout.comp11 Foo in_data[];
22 out_data[ident].m = in_data[ident].m * in_data[ident].m;
/third_party/skia/third_party/externals/spirv-cross/reference/opt/shaders/comp/
Dmod.comp6 vec4 in_data[];
16 …_33.out_data[gl_GlobalInvocationID.x] = mod(_23.in_data[gl_GlobalInvocationID.x], _33.out_data[gl_…
17 …_33.out_data[gl_GlobalInvocationID.x] = uintBitsToFloat(floatBitsToUint(_23.in_data[gl_GlobalInvoc…
18 …_33.out_data[gl_GlobalInvocationID.x] = intBitsToFloat(floatBitsToInt(_23.in_data[gl_GlobalInvocat…
Dstruct-layout.comp16 Foo in_data[];
21 …_23.out_data[gl_GlobalInvocationID.x].m = _30.in_data[gl_GlobalInvocationID.x].m * _30.in_data[gl_…
/third_party/skia/third_party/externals/spirv-cross/reference/shaders/comp/
Dmod.comp6 vec4 in_data[];
17 vec4 v = mod(_23.in_data[ident], _33.out_data[ident]);
19 uvec4 vu = floatBitsToUint(_23.in_data[ident]) % floatBitsToUint(_33.out_data[ident]);
21 ivec4 vi = floatBitsToInt(_23.in_data[ident]) % floatBitsToInt(_33.out_data[ident]);
Dstruct-layout.comp16 Foo in_data[];
22 _23.out_data[ident].m = _30.in_data[ident].m * _30.in_data[ident].m;
/third_party/uboot/u-boot-2020.01/product/cipher/v2/api/
Dree_mpi_rsa.c61 hi_u8 *in_data; member
441 crypto_memcpy(&ptr_db[db_len - pad->in_len], pad->in_len, pad->in_data, pad->in_len); in rsa_padding_add_pkcs1_oaep()
482 crypto_memcpy(&pad->out_data[index], pad->klen - index, pad->in_data, pad->in_len); in rsa_padding_add_pkcs1_v15()
527 crypto_memcpy(key_eb, pad->klen - (hi_u32)(key_eb - pad->out_data), pad->in_data, pad->in_len); in rsa_padding_add_pkcs1_type()
557 crypto_memcpy(p, buf_len, pad->in_data, pad->in_len); in rsa_padding_add_emsa_pkcs1_v15_sha1()
573 crypto_memcpy(p, buf_len, pad->in_data, pad->in_len); in rsa_padding_add_emsa_pkcs1_v15_sha224()
589 crypto_memcpy(p, buf_len, pad->in_data, pad->in_len); in rsa_padding_add_emsa_pkcs1_v15_sha256()
605 crypto_memcpy(p, buf_len, pad->in_data, pad->in_len); in rsa_padding_add_emsa_pkcs1_v15_sha384()
622 crypto_memcpy(p, buf_len, pad->in_data, pad->in_len); in rsa_padding_add_emsa_pkcs1_v15_sha512()
699 crypto_memcpy(&ptr_m[index], mlen - index, pad->in_data, pad->in_len); in rsa_padding_add_pkcs1_pss_hash()
[all …]
/third_party/ltp/testcases/kernel/device-drivers/dev_sim_framework/user_space/
Dtmod_ki.c54 tif.in_data = 0; in ki_generic()
76 An example of using in_data to pass in a structure:ki_write_t wif;
85 tif.in_data = (caddr_t) & wif;
104 tif.in_data = (caddr_t) & rif;
/third_party/ltp/testcases/kernel/device-drivers/agp/user_space/
Dtagp_ki.c54 tif.in_data = 0; in ki_generic()
76 An example of using in_data to pass in a structure:ki_write_t wif;
85 tif.in_data = (caddr_t) & wif;
104 tif.in_data = (caddr_t) & rif;
/third_party/skia/third_party/externals/spirv-cross/reference/opt/shaders-msl/comp/
Dmod.comp10 float4 in_data[1];
29 …_33.out_data[gl_GlobalInvocationID.x] = mod(_23.in_data[gl_GlobalInvocationID.x], _33.out_data[gl_…
30 …_33.out_data[gl_GlobalInvocationID.x] = as_type<float4>(as_type<uint4>(_23.in_data[gl_GlobalInvoca…
31 …_33.out_data[gl_GlobalInvocationID.x] = as_type<float4>(as_type<int4>(_23.in_data[gl_GlobalInvocat…
/third_party/skia/third_party/externals/spirv-cross/shaders-reflection/comp/
Dstruct-layout.comp11 Foo in_data[];
22 out_data[ident].m = in_data[ident].m * in_data[ident].m;
/third_party/skia/third_party/externals/spirv-cross/reference/shaders-msl/comp/
Dmod.comp10 float4 in_data[1];
30 float4 v = mod(_23.in_data[ident], _33.out_data[ident]);
32 uint4 vu = as_type<uint4>(_23.in_data[ident]) % as_type<uint4>(_33.out_data[ident]);
34 int4 vi = as_type<int4>(_23.in_data[ident]) % as_type<int4>(_33.out_data[ident]);

12345678