Home
last modified time | relevance | path

Searched refs:tmp_connect (Results 1 – 7 of 7) sorted by relevance

/dports/science/code_saturne/code_saturne-7.1.0/src/fvm/
H A Dfvm_nodal_order.c142 cs_lnum_t *tmp_connect = NULL; in _fvm_nodal_order_strided_connect() local
144 BFT_MALLOC(tmp_connect, nb_ent * stride, cs_lnum_t); in _fvm_nodal_order_strided_connect()
149 p1 = tmp_connect + i*stride; in _fvm_nodal_order_strided_connect()
157 memcpy(connect, tmp_connect, stride * nb_ent * sizeof(cs_lnum_t)); in _fvm_nodal_order_strided_connect()
159 BFT_FREE(tmp_connect); in _fvm_nodal_order_strided_connect()
181 cs_lnum_t *tmp_connect = NULL; in _fvm_nodal_order_indexed_connect() local
187 BFT_MALLOC(tmp_connect, nb_ent_max, cs_lnum_t); in _fvm_nodal_order_indexed_connect()
191 p1 = tmp_connect; in _fvm_nodal_order_indexed_connect()
201 memcpy(connect_num, tmp_connect, in _fvm_nodal_order_indexed_connect()
211 p1 = tmp_connect; in _fvm_nodal_order_indexed_connect()
[all …]
/dports/science/py-pymol/pymol-open-source-2.4.0/modules/pymol/
H A Deditor.py18 tmp_connect = _prefix + "_con" variable
125 elif _self.select(tmp_connect,"(%s) & elem N,C"%selection) != 1:
154 if _self.count_atoms("elem N",domain=tmp_connect):
156 _self.iterate(tmp_connect,"tmp[0]=resv", space={ 'tmp' : tmp })
159 _self.set_geometry(tmp_connect, 3, 3) # make nitrogen planar
160 _self.fuse("(%s and name C)"%(tmp_editor),tmp_connect,2)
201 sele = ("(name N & (byres nbr. %s) &! (byres %s))"% (tmp_connect,tmp_connect))
206 elif _self.count_atoms("elem C",domain=tmp_connect): # forward
208 _self.iterate(tmp_connect,"tmp[0]=resv", space={ 'tmp' : tmp })
212 _self.fuse("(%s and name N)"%tmp_editor,tmp_connect,2)
[all …]
/dports/science/frontistr/FrontISTR-c66bdc397de319ca59a0565b3f3b1a3b33f0c50c/hecmw1/src/visualizer/
H A Dhecmw_vis_connectivity_build.c265 struct hecmwST_local_mesh *mesh, int tmp_connect[2], in find_to_hash()
283 tmp_connect[0] = elemID2; in find_to_hash()
284 tmp_connect[1] = faceID2; in find_to_hash()
328 int i, j, k, n_elem, node[MAX_N_NODE], nodesum, tmp_connect[2]; in build_connectivity() local
343 flag = find_to_hash(i, j, nodesum, h_table, mesh, tmp_connect, in build_connectivity()
347 connect[(index_connect[i] + j) * 3] = tmp_connect[0]; in build_connectivity()
348 connect[(index_connect[i] + j) * 3 + 1] = tmp_connect[1]; in build_connectivity()
364 connect[(index_connect[i] + j) * 3] = tmp_connect[0]; in build_connectivity()
365 connect[(index_connect[i] + j) * 3 + 1] = tmp_connect[1]; in build_connectivity()
382 connect[(index_connect[i] + j) * 3] = tmp_connect[0]; in build_connectivity()
[all …]
H A Dhecmw_vis_connectivity_build.h32 struct hecmwST_local_mesh *mesh, int tmp_connect[2],
/dports/math/moab/fathomteam-moab-7bde9dfb84a8/src/
H A DReadUtil.cpp274 std::vector<EntityHandle> tmp_connect; in get_ordered_vertices() local
289 false, &tmp_connect); in get_ordered_vertices()
H A DCore.cpp1175 std::vector<EntityHandle> tmp_connect; in serial_load_file() local
1176 ErrorCode result = get_connectivity(entity_handles, num_handles, tmp_connect, in serial_load_file()
1179 std::sort( tmp_connect.begin(), tmp_connect.end() ); in serial_load_file()
1180 std::copy(tmp_connect.rbegin(), tmp_connect.rend(), range_inserter(connectivity)); in serial_load_file()
3032 static std::vector<EntityHandle> tmp_connect(CN::MAX_NODES_PER_ELEMENT); in serial_load_file() local
3033 result = get_connectivity(parent, parent_conn, num_parent_vertices, true, &tmp_connect); in serial_load_file()
/dports/math/moab/fathomteam-moab-7bde9dfb84a8/src/io/
H A DWriteCCMIO.cpp953 EntityHandle tmp_connect[CN::MAX_NODES_PER_ELEMENT]; // tmp connect vector in write_cells_and_faces() local
993 CN::SubEntityConn(connectc, etype, mDimension - 1, f, tmp_connect, num_connectf); in write_cells_and_faces()
994 connectf = tmp_connect; in write_cells_and_faces()