Lines Matching refs:n2
140 PetscCDIntNd *n, *n2; in PetscCDAppendID() local
145 if (!(n2 = ail->array[a_idx])) ail->array[a_idx] = n; in PetscCDAppendID()
148 if (!n2->next) { in PetscCDAppendID()
149 n2->next = n; in PetscCDAppendID()
153 n2 = n2->next; in PetscCDAppendID()
154 } while (n2); in PetscCDAppendID()
155 PetscCheck(n2, PETSC_COMM_SELF, PETSC_ERR_PLIB, "n2 should be non-null"); in PetscCDAppendID()
164 PetscCDIntNd *n2; in PetscCDAppendNode() local
168 if (!(n2 = ail->array[a_idx])) ail->array[a_idx] = a_n; in PetscCDAppendNode()
171 if (!n2->next) { in PetscCDAppendNode()
172 n2->next = a_n; in PetscCDAppendNode()
176 n2 = n2->next; in PetscCDAppendNode()
177 } while (n2); in PetscCDAppendNode()
178 PetscCheck(n2, PETSC_COMM_SELF, PETSC_ERR_PLIB, "n2 should be non-null"); in PetscCDAppendNode()
203 PetscCDIntNd *n, *n2; in PetscCDPrint() local
208 n2 = n = ail->array[ii]; in PetscCDPrint()
214 if (n2) PetscCall(PetscSynchronizedPrintf(comm, "\n")); in PetscCDPrint()