Lines Matching refs:current
214 PetscFunctionListDLAll current = dlallhead, prev = NULL; in PetscFunctionListDLAllPop_Private() local
217 while (current) { in PetscFunctionListDLAllPop_Private()
218 const PetscFunctionListDLAll next = current->next; in PetscFunctionListDLAllPop_Private()
220 if (current->data == fl) { in PetscFunctionListDLAllPop_Private()
228 PetscCall(PetscFree(current)); in PetscFunctionListDLAllPop_Private()
231 prev = current; in PetscFunctionListDLAllPop_Private()
232 current = next; in PetscFunctionListDLAllPop_Private()
387 PetscFunctionListDLAll current = dlallhead; in PetscFunctionListPrintAll() local
390 …if (current) PetscCall(PetscPrintf(PETSC_COMM_SELF, "[%d] Registered PetscFunctionLists\n", PetscG… in PetscFunctionListPrintAll()
391 while (current) { in PetscFunctionListPrintAll()
392 PetscCall(PetscFunctionListPrintNonEmpty(current->data)); in PetscFunctionListPrintAll()
393 current = current->next; in PetscFunctionListPrintAll()