Home
last modified time | relevance | path

Searched refs:Nx (Results 1 – 25 of 39) sorted by relevance

12

/third_party/boost/libs/math/example/
Dautodiff_multiprecision.cpp22 constexpr unsigned Nx = 2; // Max order of derivative to calculate for x in main() local
26 auto const variables = make_ftuple<float50, Nw, Nx, Ny, Nz>(11, 12, 13, 14); in main()
36 << "autodiff : " << v.derivative(Nw, Nx, Ny, Nz) << '\n' in main()
38 << "relative error: " << (v.derivative(Nw, Nx, Ny, Nz) / answer - 1) << '\n'; in main()
Dautodiff_mixed_partials.cpp269 constexpr std::size_t Nx = 2; // Max order of derivative to calculate for x in main() local
272 auto const variables = make_ftuple<float50, Nw, Nx, Ny, Nz>(11, 12, 13, 14); in main()
277 for (std::size_t ix = 0; ix <= Nx; ++ix) in main()
/third_party/openGLES/extensions/SGIX/
DSGIX_texture_supersample.txt92 Nx = round (2^LamdaX);
96 Instead of a single sample, Tau, at (u,v), Nx x Ny locations of the
99 i=Nx,j=Ny
101 Tau =1/(Nx*Ny) \ Tau( u_sub_ij, v_sub_ij);
107 u_sub_ij = u(x - 0.5 + i/(Nx+1), y - 0.5 + j/(Ny+1));
108 v_sub_ij = v(x - 0.5 + i/(Nx+1), y - 0.5 + j/(Ny+1));
111 It is acceptable to reduce the smaller of Nx and Ny as the pixel
/third_party/skia/third_party/externals/opengl-registry/extensions/SGIX/
DSGIX_texture_supersample.txt92 Nx = round (2^LamdaX);
96 Instead of a single sample, Tau, at (u,v), Nx x Ny locations of the
99 i=Nx,j=Ny
101 Tau =1/(Nx*Ny) \ Tau( u_sub_ij, v_sub_ij);
107 u_sub_ij = u(x - 0.5 + i/(Nx+1), y - 0.5 + j/(Ny+1));
108 v_sub_ij = v(x - 0.5 + i/(Nx+1), y - 0.5 + j/(Ny+1));
111 It is acceptable to reduce the smaller of Nx and Ny as the pixel
/third_party/boost/boost/safe_numerics/
Dsafe_integer_literal.hpp141 typename Tx, Tx Nx, typename = std::enable_if_t<! checked::minus(Nx).exception()>
160 typename Tx, Tx Nx, typename = std::enable_if_t<! checked::bitwise_not(Nx).exception()>
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/
Ddpp_i.h102 int dpp_derive_k2(const u8 *Nx, size_t Nx_len, u8 *k2, unsigned int hash_len);
108 int dpp_derive_pmk(const u8 *Nx, size_t Nx_len, u8 *pmk, unsigned int hash_len);
123 const u8 *Nx, size_t Nx_len,
Ddpp_auth.c48 os_memset(auth->Nx, 0, sizeof(auth->Nx)); in dpp_auth_success()
484 auth->Nx, &secret_len) < 0) in dpp_auth_build_resp_ok()
488 auth->Nx, auth->secret_len); in dpp_auth_build_resp_ok()
491 if (dpp_derive_k2(auth->Nx, auth->secret_len, auth->k2, in dpp_auth_build_resp_ok()
1564 if (dpp_ecdh(auth->own_protocol_key, pr, auth->Nx, &secret_len) < 0) { in dpp_auth_resp_rx()
1573 auth->Nx, auth->secret_len); in dpp_auth_resp_rx()
1576 if (dpp_derive_k2(auth->Nx, auth->secret_len, auth->k2, in dpp_auth_resp_rx()
Ddpp_pkex.c215 const u8 *Nx, const u8 *Ny) in dpp_pkex_build_exchange_resp() argument
293 wpabuf_put_data(msg, Nx, curve->prime_len); in dpp_pkex_build_exchange_resp()
295 os_memcpy(pkex->Nx, Nx, curve->prime_len); in dpp_pkex_build_exchange_resp()
551 pkex->Nx, curve->prime_len, pkex->code, in dpp_pkex_rx_exchange_req()
Ddpp_crypto.c395 int dpp_derive_k2(const u8 *Nx, size_t Nx_len, u8 *k2, unsigned int hash_len) in dpp_derive_k2() argument
405 res = dpp_hmac(hash_len, salt, hash_len, Nx, Nx_len, prk); in dpp_derive_k2()
446 addr[num_elem] = auth->Nx; in dpp_derive_bk_ke()
1118 int dpp_derive_pmk(const u8 *Nx, size_t Nx_len, u8 *pmk, unsigned int hash_len) in dpp_derive_pmk() argument
1128 if (dpp_hmac(hash_len, salt, hash_len, Nx, Nx_len, prk) < 0) in dpp_derive_pmk()
1589 const u8 *Nx, size_t Nx_len, in dpp_pkex_derive_z() argument
1631 os_memcpy(pos, Nx, Nx_len); in dpp_pkex_derive_z()
Ddpp.h188 u8 Nx[DPP_MAX_SHARED_SECRET_LEN]; member
289 u8 Nx[DPP_MAX_SHARED_SECRET_LEN]; member
Ddpp.c3653 u8 Nx[DPP_MAX_SHARED_SECRET_LEN]; in dpp_peer_intro() local
3737 if (dpp_ecdh(own_key, peer_key, Nx, &Nx_len) < 0) in dpp_peer_intro()
3741 Nx, Nx_len); in dpp_peer_intro()
3744 if (dpp_derive_pmk(Nx, Nx_len, intro->pmk, curve->hash_len) < 0) { in dpp_peer_intro()
3760 os_memset(Nx, 0, sizeof(Nx)); in dpp_peer_intro()
/third_party/boost/libs/math/test/
Dtest_autodiff_4.cpp65 constexpr std::size_t Nx = 2; in BOOST_AUTO_TEST_CASE_TEMPLATE() local
69 const auto x = make_fvar<T, 0, Nx>(12); in BOOST_AUTO_TEST_CASE_TEMPLATE()
81 static_cast<T>(fabs(v.derivative(Nw, Nx, Ny, Nz) / answer - 1)); in BOOST_AUTO_TEST_CASE_TEMPLATE()
/third_party/boost/libs/math/doc/differentiation/
Dautodiff.qbk170 In this example, `make_ftuple<float50, Nw, Nx, Ny, Nz>(11, 12, 13, 14)` returns a `std::tuple` of 4
173 order used when calling `v.derivative(Nw, Nx, Ny, Nz)` in the example below.
191 constexpr unsigned Nx = 2; // Max order of derivative to calculate for x
195 auto const variables = make_ftuple<float50, Nw, Nx, Ny, Nz>(11, 12, 13, 14);
197 auto const& x = std::get<1>(variables); // Up to Nx derivatives at x=12
205 << "autodiff : " << v.derivative(Nw, Nx, Ny, Nz) << '\n'
207 << "relative error: " << (v.derivative(Nw, Nx, Ny, Nz) / answer - 1) << '\n';
Dautodiff.tex164 In this example, {\tt make\_ftuple<float50, Nw, Nx, Ny, Nz>(11, 12, 13, 14)} returns a {\tt std::tu…
167 order used when calling {\tt v.derivative(Nw, Nx, Ny, Nz)} in the example below.
186 constexpr unsigned Nx = 2; // Max order of derivative to calculate for x
190 auto const variables = make_ftuple<float50, Nw, Nx, Ny, Nz>(11, 12, 13, 14);
192 auto const& x = std::get<1>(variables); // Up to Nx derivatives at x=12
200 << "autodiff : " << v.derivative(Nw, Nx, Ny, Nz) << '\n'
202 << "relative error: " << (v.derivative(Nw, Nx, Ny, Nz) / answer - 1) << '\n';
639 %only by the C++ compiler/memory/platform. The maximum derivative order of each variable is {\tt Nx
640 …tively. Then the type for {\tt w} is {\tt boost::math::differentiation::autodiff\_fvar<T,Nx,Ny,Nz>}
654 % using var = autodiff_fvar<double,Nx,Ny,Nz>; // Nx, Ny, Nz are constexpr size_t.
[all …]
/third_party/flutter/skia/third_party/externals/icu/source/common/
Dushape.cpp1203 int32_t lastPos,Nx, Nw; in shapeUnicode() local
1245 Nx = -2, Nw = 0; in shapeUnicode()
1251 while (Nx < 0) { /* we need to know about next char */ in shapeUnicode()
1254 Nx = 3000; in shapeUnicode()
1258 Nx = Nw; in shapeUnicode()
1344 if (i == Nx) { in shapeUnicode()
1346 Nx = -2; in shapeUnicode()
/third_party/icu/icu4c/source/common/
Dushape.cpp1203 int32_t lastPos,Nx, Nw; in shapeUnicode() local
1245 Nx = -2, Nw = 0; in shapeUnicode()
1251 while (Nx < 0) { /* we need to know about next char */ in shapeUnicode()
1254 Nx = 3000; in shapeUnicode()
1258 Nx = Nw; in shapeUnicode()
1344 if (i == Nx) { in shapeUnicode()
1346 Nx = -2; in shapeUnicode()
/third_party/skia/third_party/externals/icu/source/common/
Dushape.cpp1203 int32_t lastPos,Nx, Nw; in shapeUnicode() local
1245 Nx = -2, Nw = 0; in shapeUnicode()
1251 while (Nx < 0) { /* we need to know about next char */ in shapeUnicode()
1254 Nx = 3000; in shapeUnicode()
1258 Nx = Nw; in shapeUnicode()
1344 if (i == Nx) { in shapeUnicode()
1346 Nx = -2; in shapeUnicode()
/third_party/node/deps/icu-small/source/common/
Dushape.cpp1203 int32_t lastPos,Nx, Nw; in shapeUnicode() local
1245 Nx = -2, Nw = 0; in shapeUnicode()
1251 while (Nx < 0) { /* we need to know about next char */ in shapeUnicode()
1254 Nx = 3000; in shapeUnicode()
1258 Nx = Nw; in shapeUnicode()
1344 if (i == Nx) { in shapeUnicode()
1346 Nx = -2; in shapeUnicode()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonCommonGEP.cpp387 GepNode *Nx = new (*Mem) GepNode; in processGepInst() local
388 Nx->Parent = PN; // Link Nx to the previous node. in processGepInst()
389 Nx->Flags |= GepNode::Internal | InBounds; in processGepInst()
390 Nx->PTy = PtrTy; in processGepInst()
391 Nx->Idx = Op; in processGepInst()
392 Nodes.push_back(Nx); in processGepInst()
393 NodeOrder.insert(Nx); in processGepInst()
394 PN = Nx; in processGepInst()
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/gpu/cuda_impl/sponge/neighbor_list/
Dneighbor_list_impl.cu103 int Nx = static_cast<float>(crd[atom_i].x) * grid_length_inverse[0]; in Find_Atom_In_Grid_Serial() local
106 Nx = Nx & ((Nx - grid_N[0]) >> 31); in Find_Atom_In_Grid_Serial()
109 atom_in_grid_serial[atom_i] = Nz * gridxy + Ny * grid_N[0] + Nx; in Find_Atom_In_Grid_Serial()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/common/
Ddpp.c1547 static int dpp_derive_k2(const u8 *Nx, size_t Nx_len, u8 *k2, in dpp_derive_k2() argument
1558 res = dpp_hmac(hash_len, salt, hash_len, Nx, Nx_len, prk); in dpp_derive_k2()
1603 addr[num_elem] = auth->Nx; in dpp_derive_ke()
2521 os_memset(auth->Nx, 0, sizeof(auth->Nx)); in dpp_auth_success()
2888 auth->Nx, &secret_len) < 0) in dpp_auth_build_resp_ok()
2892 auth->Nx, auth->secret_len); in dpp_auth_build_resp_ok()
2895 if (dpp_derive_k2(auth->Nx, auth->secret_len, auth->k2, in dpp_auth_build_resp_ok()
3790 if (dpp_ecdh(auth->own_protocol_key, pr, auth->Nx, &secret_len) < 0) { in dpp_auth_resp_rx()
3799 auth->Nx, auth->secret_len); in dpp_auth_resp_rx()
3802 if (dpp_derive_k2(auth->Nx, auth->secret_len, auth->k2, in dpp_auth_resp_rx()
[all …]
Ddpp.h139 u8 Nx[DPP_MAX_SHARED_SECRET_LEN]; member
208 u8 Nx[DPP_MAX_SHARED_SECRET_LEN]; member
/third_party/skia/third_party/externals/opengl-registry/extensions/NV/
DNV_texgen_emboss.txt211 By = Nz*CTs - CTr*Nx
212 Bz = Nx*CTt - CTs*Ny
223 Ty = BNz*Nx - Nz*BNx
224 Tz = BNx*Ny - Nx*BNy
/third_party/openGLES/extensions/NV/
DNV_texgen_emboss.txt211 By = Nz*CTs - CTr*Nx
212 Bz = Nx*CTt - CTs*Ny
223 Ty = BNz*Nx - Nz*BNx
224 Tz = BNx*Ny - Nx*BNy
/third_party/flutter/flutter/packages/flutter/lib/src/painting/
Dimage_resolution.dart31 /// the application bundle under subdirectories named in the form "Nx", where

12