Home
last modified time | relevance | path

Searched refs:sd (Results 1 – 9 of 9) sorted by relevance

/libCEED/examples/rust/mesh/src/
H A Dlib.rs28 let mut sd = s / dim; localVariable
30 sd += 1;
33 1 << sd
/libCEED/julia/LibCEED.jl/examples/
H A Dcommon.jl13 sd = div(s, dim)
15 sd += 1
18 dims[d] = 2^sd
H A Dex1-volume-c.jl74 sd = div(s, dim)
76 sd += 1
79 dims[d] = 2^sd
/libCEED/examples/ceed/
H A Dex1-volume-f.f9050 integer s, r, d, sd local
65 sd = s/fe_dim
67 sd = sd + 1
70 num_xyz(d) = ISHFT(1, sd)
H A Dex2-surface.c327 CeedInt sd = s / dim; in GetCartesianMeshSize() local
330 sd++; in GetCartesianMeshSize()
333 num_xyz[d] = 1 << sd; in GetCartesianMeshSize()
H A Dex3-volume.c296 CeedInt sd = s / dim; in GetCartesianMeshSize() local
299 sd++; in GetCartesianMeshSize()
302 num_xyz[d] = 1 << sd; in GetCartesianMeshSize()
H A Dex1-volume.c307 CeedInt sd = s / dim; in GetCartesianMeshSize() local
310 sd++; in GetCartesianMeshSize()
313 num_xyz[d] = 1 << sd; in GetCartesianMeshSize()
/libCEED/examples/python/
H A Dex_common.py83 sd = s // dim
85 sd += 1
87 num_xyz.append(1 << sd)
/libCEED/examples/rust-qfunctions/
H A Dex1-volume.c317 CeedInt sd = s / dim; in GetCartesianMeshSize() local
320 sd++; in GetCartesianMeshSize()
323 num_xyz[d] = 1 << sd; in GetCartesianMeshSize()