Lines Matching refs:nsize
164 size_t nsize; in PetscTrMallocDefault() local
174 nsize = (a + (PETSC_MEMALIGN - 1)) & ~(PETSC_MEMALIGN - 1); in PetscTrMallocDefault()
175 …PetscCall(PetscMallocAlign(nsize + sizeof(TrSPACE) + sizeof(PetscInt), clear, lineno, function, fi… in PetscTrMallocDefault()
184 head->size = nsize; in PetscTrMallocDefault()
192 *(PetscInt *)(inew + nsize) = COOKIE_VALUE; in PetscTrMallocDefault()
238 PetscLogMallocLength[PetscLogMalloc] = nsize; in PetscTrMallocDefault()
326 size_t nsize; in PetscTrReallocDefault() local
382 nsize = (len + (PETSC_MEMALIGN - 1)) & ~(PETSC_MEMALIGN - 1); in PetscTrReallocDefault()
383 …PetscCall(PetscReallocAlign(nsize + sizeof(TrSPACE) + sizeof(PetscInt), lineno, function, filename… in PetscTrReallocDefault()
392 head->size = nsize; in PetscTrReallocDefault()
400 *(PetscInt *)(inew + nsize) = COOKIE_VALUE; in PetscTrReallocDefault()
432 PetscLogMallocLength[PetscLogMalloc] = nsize; in PetscTrReallocDefault()