Home
last modified time | relevance | path

Searched refs:Ke (Results 126 – 150 of 4505) sorted by relevance

12345678910>>...181

/dports/math/libmesh/libmesh-1.6.2/examples/systems_of_equations/systems_of_equations_ex2/
H A Dsystems_of_equations_ex2.C418 DenseMatrix<Number> Ke; in assemble_stokes() local
422 Kuu(Ke), Kuv(Ke), Kup(Ke), in assemble_stokes()
423 Kvu(Ke), Kvv(Ke), Kvp(Ke), in assemble_stokes()
424 Kpu(Ke), Kpv(Ke), Kpp(Ke); in assemble_stokes()
504 Ke.resize (n_dofs, n_dofs); in assemble_stokes()
645 dof_map.heterogenously_constrain_element_matrix_and_vector (Ke, Fe, dof_indices); in assemble_stokes()
651 navier_stokes_system.matrix->add_matrix (Ke, dof_indices); in assemble_stokes()
/dports/math/libmesh/libmesh-1.6.2/examples/systems_of_equations/systems_of_equations_ex6/
H A Dsystems_of_equations_ex6.C181 DenseMatrix<Number> Ke; in assemble() local
184 {DenseSubMatrix<Number>(Ke), DenseSubMatrix<Number>(Ke), DenseSubMatrix<Number>(Ke)}, in assemble()
185 {DenseSubMatrix<Number>(Ke), DenseSubMatrix<Number>(Ke), DenseSubMatrix<Number>(Ke)}, in assemble()
186 {DenseSubMatrix<Number>(Ke), DenseSubMatrix<Number>(Ke), DenseSubMatrix<Number>(Ke)} in assemble()
210 Ke.resize (n_dofs, n_dofs); in assemble()
264 dof_map.constrain_element_matrix_and_vector (Ke, Fe, dof_indices); in assemble()
266 system.matrix->add_matrix (Ke, dof_indices); in assemble()
/dports/math/libmesh/libmesh-1.6.2/examples/introduction/introduction_ex3/
H A Dintroduction_ex3.C257 DenseMatrix<Number> Ke; in assemble_poisson() local
312 Ke.resize (n_dofs, n_dofs); in assemble_poisson()
327 Ke(i,j) += JxW[qp]*(dphi[i][qp]*dphi[j][qp]); in assemble_poisson()
443 Ke(i,j) += JxW_face[qp]*penalty*phi_face[i][qp]*phi_face[j][qp]; in assemble_poisson()
458 dof_map.constrain_element_matrix_and_vector (Ke, Fe, dof_indices); in assemble_poisson()
464 system.matrix->add_matrix (Ke, dof_indices); in assemble_poisson()
/dports/math/libmesh/libmesh-1.6.2/examples/miscellaneous/miscellaneous_ex11/
H A Dmiscellaneous_ex11.C331 DenseMatrix<Number> Ke; in assemble_shell() local
335 Kuu(Ke), Kuv(Ke), Kuw(Ke), in assemble_shell()
336 Kvu(Ke), Kvv(Ke), Kvw(Ke), in assemble_shell()
337 Kwu(Ke), Kwv(Ke), Kww(Ke); in assemble_shell()
388 Ke.resize (n_dofs, n_dofs); in assemble_shell()
561 system.matrix->add_matrix (Ke, dof_indices); in assemble_shell()
/dports/math/libmesh/libmesh-1.6.2/examples/systems_of_equations/systems_of_equations_ex5/
H A Dsystems_of_equations_ex5.C203 DenseMatrix<Number> Ke; in assemble_elasticity() local
207 Kuu(Ke), Kuv(Ke), in assemble_elasticity()
208 Kvu(Ke), Kvv(Ke); in assemble_elasticity()
209 DenseSubMatrix<Number> Klambda_v(Ke), Kv_lambda(Ke); in assemble_elasticity()
234 Ke.resize (n_dofs, n_dofs); in assemble_elasticity()
372 dof_map.constrain_element_matrix_and_vector (Ke, Fe, dof_indices); in assemble_elasticity()
374 system.matrix->add_matrix (Ke, dof_indices); in assemble_elasticity()
/dports/science/chrono/chrono-7.0.1/data/vehicle/truck/
H A Dtruck_chassis.mtl9 Ke 0.000000 0.000000 0.000000
23 Ke 0.000000 0.000000 0.000000
38 Ke 0.000000 0.000000 0.000000
H A Dtruck_chassis_red.mtl9 Ke 0.000000 0.000000 0.000000
23 Ke 0.000000 0.000000 0.000000
38 Ke 0.000000 0.000000 0.000000
H A Dtruck_chassis_darkgrey.mtl9 Ke 0.000000 0.000000 0.000000
23 Ke 0.000000 0.000000 0.000000
38 Ke 0.000000 0.000000 0.000000
H A Dtruck_chassis_lightgrey.mtl9 Ke 0.000000 0.000000 0.000000
23 Ke 0.000000 0.000000 0.000000
38 Ke 0.000000 0.000000 0.000000
/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/crypto/ecies/
H A Decies.go166 func deriveKeys(hash hash.Hash, z, s1 []byte, keyLen int) (Ke, Km []byte) {
168 Ke = K[:keyLen]
173 return Ke, Km
249 Ke, Km := deriveKeys(hash, z, s1, params.KeyLen)
251 em, err := symEncrypt(rand, params, Ke, m)
309 Ke, Km := deriveKeys(hash, z, s1, params.KeyLen)
316 return symDecrypt(params, Ke, c[mStart:mEnd])
/dports/math/libmesh/libmesh-1.6.2/examples/optimization/optimization_ex1/
H A Doptimization_ex1.C152 DenseMatrix<Number> Ke; in assemble_A_and_F() local
163 Ke.resize (n_dofs, n_dofs); in assemble_A_and_F()
172 Ke(dof_i, dof_j) += JxW[qp] * (dphi[dof_j][qp]* dphi[dof_i][qp]); in assemble_A_and_F()
181 dof_map.constrain_element_matrix_and_vector (Ke, Fe, dof_indices); in assemble_A_and_F()
189 Ke(local_dof_index, local_dof_index) = 0.; in assemble_A_and_F()
194 A_matrix->add_matrix (Ke, dof_indices); in assemble_A_and_F()
/dports/math/libmesh/libmesh-1.6.2/examples/systems_of_equations/systems_of_equations_ex7/
H A Dsystems_of_equations_ex7.C158 DenseMatrix<Number> Ke; in jacobian() local
161 {DenseSubMatrix<Number>(Ke), DenseSubMatrix<Number>(Ke), DenseSubMatrix<Number>(Ke)}, in jacobian()
162 {DenseSubMatrix<Number>(Ke), DenseSubMatrix<Number>(Ke), DenseSubMatrix<Number>(Ke)}, in jacobian()
163 {DenseSubMatrix<Number>(Ke), DenseSubMatrix<Number>(Ke), DenseSubMatrix<Number>(Ke)} in jacobian()
182 Ke.resize (n_dofs, n_dofs); in jacobian()
258 dof_map.constrain_element_matrix (Ke, dof_indices); in jacobian()
259 jacobian.add_matrix (Ke, dof_indices); in jacobian()
/dports/math/libmesh/libmesh-1.6.2/examples/systems_of_equations/systems_of_equations_ex8/
H A Dlinear_elasticity_with_contact.C277 DenseMatrix<Number> Ke; in residual_and_jacobian() local
280 {DenseSubMatrix<Number>(Ke), DenseSubMatrix<Number>(Ke), DenseSubMatrix<Number>(Ke)}, in residual_and_jacobian()
281 {DenseSubMatrix<Number>(Ke), DenseSubMatrix<Number>(Ke), DenseSubMatrix<Number>(Ke)}, in residual_and_jacobian()
282 {DenseSubMatrix<Number>(Ke), DenseSubMatrix<Number>(Ke), DenseSubMatrix<Number>(Ke)} in residual_and_jacobian()
310 Ke.resize (n_dofs, n_dofs); in residual_and_jacobian()
344 dof_map.constrain_element_matrix_and_vector (Ke, Re, dof_indices); in residual_and_jacobian()
347 jacobian->add_matrix (Ke, dof_indices); in residual_and_jacobian()
/dports/science/nwchem-data/nwchem-7.0.2-release/src/NWints/api/
H A Dintp_1eke.F16 subroutine intp_1eke(i_basis,ish,j_basis,jsh,R,lscr,scr,lke,Ke) argument
48 double precision Ke(lke) !< [Output] kinetic energy integral array
126 & scr,Ke,scr,lke,.false.,.true.,.false.,.false.,
132 call spcart_2ctran(Ke,scr,lscr,
H A Dint_l1eke.F31 & ilab, jlab, lke, Ke, lscr, scr, numgen)
61 double precision Ke(lke) !< [Output] kinetic energy integrals
98 Ke(numgen) = scr(icount)
/dports/science/nwchem/nwchem-7b21660b82ebd85ef659f6fba7e1e73433b0bd0a/src/NWints/api/
H A Dintp_1eke.F16 subroutine intp_1eke(i_basis,ish,j_basis,jsh,R,lscr,scr,lke,Ke) argument
48 double precision Ke(lke) !< [Output] kinetic energy integral array local
126 & scr,Ke,scr,lke,.false.,.true.,.false.,.false.,
132 call spcart_2ctran(Ke,scr,lscr,
H A Dint_l1eke.F31 & ilab, jlab, lke, Ke, lscr, scr, numgen)
61 double precision Ke(lke) !< [Output] kinetic energy integrals
98 Ke(numgen) = scr(icount)
/dports/security/john/john-1.9.0-jumbo-1/src/opencl/
H A Dkrb5_kernel.cl94 uchar Ke[32];
103 dk(Ke, (uchar*)base_key, key_size, ke3input, 16);
104 krb_decrypt(edata2, salt->edata2len, plaintext, Ke, key_size);
132 uchar Ke[32];
141 dk(Ke, (uchar*)base_key, key_size, ke1input, 16);
142 krb_decrypt(salt->ct, TIMESTAMP_SIZE, plaintext, Ke, key_size);
/dports/math/libmesh/libmesh-1.6.2/examples/systems_of_equations/systems_of_equations_ex4/
H A Dsystems_of_equations_ex4.C192 DenseMatrix<Number> Ke; in assemble_elasticity() local
196 Kuu(Ke), Kuv(Ke), in assemble_elasticity()
197 Kvu(Ke), Kvv(Ke); in assemble_elasticity()
219 Ke.resize (n_dofs, n_dofs); in assemble_elasticity()
332 dof_map.constrain_element_matrix_and_vector (Ke, Fe, dof_indices); in assemble_elasticity()
334 system.matrix->add_matrix (Ke, dof_indices); in assemble_elasticity()
/dports/astro/stellarium/stellarium-0.21.3/scenery3d/Sterngarten/
H A DSterngarten_Wien_innerArea-optimized.mtl73 # This material (the information panel) can be made special: Note Ke values. Those describe emissiv…
79 # Brightness should include Ke*map_Ke*solarAltitudeTerm.
80 # If there is no map_Ke, of course only Ke*solarAltitudeTerm.
83 #Ke 0.25 0.1 0.05
H A DSterngarten_Wien_innerArea.mtl72 # This material (the information panel) can be made special: Note Ke values. Those describe emissiv…
78 # Brightness should include Ke*map_Ke*solarAltitudeTerm.
79 # If there is no map_Ke, of course only Ke*solarAltitudeTerm.
82 #Ke 0.25 0.1 0.05
/dports/lang/gcc6-aux/gcc-6-20180516/libjava/classpath/gnu/javax/crypto/cipher/
H A DRijndael.java331 int[][] Ke = (int[][]) sKey[0]; in rijndaelEncrypt() local
333 int ROUNDS = Ke.length - 1; in rijndaelEncrypt()
345 | (in[inOffset++] & 0xFF) ) ^ Ke[0][i]; in rijndaelEncrypt()
359 tt = Ke[ROUNDS][i]; in rijndaelEncrypt()
414 int ROUNDS = Ke.length - 1; in aesEncrypt()
415 int[] Ker = Ke[0]; in aesEncrypt()
436 Ker = Ke[r]; in aesEncrypt()
462 Ker = Ke[ROUNDS]; in aesEncrypt()
628 Ke[t / BC][t % BC] = tk[j]; in makeKey()
658 Ke[t / BC][t % BC] = tk[j]; in makeKey()
[all …]
/dports/lang/gcc48/gcc-4.8.5/libjava/classpath/gnu/javax/crypto/cipher/
H A DRijndael.java331 int[][] Ke = (int[][]) sKey[0]; in rijndaelEncrypt() local
333 int ROUNDS = Ke.length - 1; in rijndaelEncrypt()
345 | (in[inOffset++] & 0xFF) ) ^ Ke[0][i]; in rijndaelEncrypt()
359 tt = Ke[ROUNDS][i]; in rijndaelEncrypt()
414 int ROUNDS = Ke.length - 1; in aesEncrypt()
415 int[] Ker = Ke[0]; in aesEncrypt()
436 Ker = Ke[r]; in aesEncrypt()
462 Ker = Ke[ROUNDS]; in aesEncrypt()
628 Ke[t / BC][t % BC] = tk[j]; in makeKey()
658 Ke[t / BC][t % BC] = tk[j]; in makeKey()
[all …]
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/libjava/classpath/gnu/javax/crypto/cipher/
H A DRijndael.java331 int[][] Ke = (int[][]) sKey[0]; in rijndaelEncrypt() local
333 int ROUNDS = Ke.length - 1; in rijndaelEncrypt()
345 | (in[inOffset++] & 0xFF) ) ^ Ke[0][i]; in rijndaelEncrypt()
359 tt = Ke[ROUNDS][i]; in rijndaelEncrypt()
414 int ROUNDS = Ke.length - 1; in aesEncrypt()
415 int[] Ker = Ke[0]; in aesEncrypt()
436 Ker = Ke[r]; in aesEncrypt()
462 Ker = Ke[ROUNDS]; in aesEncrypt()
628 Ke[t / BC][t % BC] = tk[j]; in makeKey()
658 Ke[t / BC][t % BC] = tk[j]; in makeKey()
[all …]
/dports/lang/gnat_util/gcc-6-20180516/libjava/classpath/gnu/javax/crypto/cipher/
H A DRijndael.java331 int[][] Ke = (int[][]) sKey[0]; in rijndaelEncrypt() local
333 int ROUNDS = Ke.length - 1; in rijndaelEncrypt()
345 | (in[inOffset++] & 0xFF) ) ^ Ke[0][i]; in rijndaelEncrypt()
359 tt = Ke[ROUNDS][i]; in rijndaelEncrypt()
414 int ROUNDS = Ke.length - 1; in aesEncrypt()
415 int[] Ker = Ke[0]; in aesEncrypt()
436 Ker = Ke[r]; in aesEncrypt()
462 Ker = Ke[ROUNDS]; in aesEncrypt()
628 Ke[t / BC][t % BC] = tk[j]; in makeKey()
658 Ke[t / BC][t % BC] = tk[j]; in makeKey()
[all …]

12345678910>>...181