Lines Matching refs:ivtx
65 PetscInt i, f, nloc, vpere, bs, n_nnz, n_onz, ivtx = 0; in DMMoab_Compute_NNZ_From_Connectivity() local
82 …ge::const_iterator iter = dmmoab->vowned->begin(); iter != dmmoab->vowned->end(); iter++, ivtx++) { in DMMoab_Compute_NNZ_From_Connectivity()
120 …nnz[ivtx] = n_nnz; /* leave out self to avoid repeats -> node shared by multiple elements… in DMMoab_Compute_NNZ_From_Connectivity()
121 if (onz) onz[ivtx] = n_onz; /* add ghost non-owned nodes */ in DMMoab_Compute_NNZ_From_Connectivity()
125 …nnz[f * nloc + ivtx] = n_nnz; /* leave out self to avoid repeats -> node shared by multip… in DMMoab_Compute_NNZ_From_Connectivity()
126 if (onz) onz[f * nloc + ivtx] = n_onz; /* add ghost non-owned nodes */ in DMMoab_Compute_NNZ_From_Connectivity()
130 …nnz[nfields * ivtx + f] = n_nnz; /* leave out self to avoid repeats -> node shared by mul… in DMMoab_Compute_NNZ_From_Connectivity()
131 if (onz) onz[nfields * ivtx + f] = n_onz; /* add ghost non-owned nodes */ in DMMoab_Compute_NNZ_From_Connectivity()
139 for (ivtx = 0; ivtx < nloc; ivtx++) { in DMMoab_Compute_NNZ_From_Connectivity()
146 if (isinterlaced) nnz[ivtx * nfields + ibs] *= inbsize; in DMMoab_Compute_NNZ_From_Connectivity()
147 else nnz[ibs * nloc + ivtx] *= inbsize; in DMMoab_Compute_NNZ_From_Connectivity()
154 if (isinterlaced) onz[ivtx * nfields + ibs] *= iobsize; in DMMoab_Compute_NNZ_From_Connectivity()
155 else onz[ibs * nloc + ivtx] *= iobsize; in DMMoab_Compute_NNZ_From_Connectivity()
160 nnz[ivtx] = (nnz[ivtx] > dmmoab->nloc ? dmmoab->nloc : nnz[ivtx]); in DMMoab_Compute_NNZ_From_Connectivity()
161 if (onz) onz[ivtx] = (onz[ivtx] > dmmoab->nloc ? dmmoab->nloc : onz[ivtx]); in DMMoab_Compute_NNZ_From_Connectivity()