Home
last modified time | relevance | path

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

/petsc/include/petsc/private/
H A Dmempoison.h165 …tic inline PetscErrorCode PetscIsRegionPoisoned(const void *ptr, size_t size, PetscBool3 *poisoned) in PetscIsRegionPoisoned() argument
170 PetscAssertPointer(poisoned, 3); in PetscIsRegionPoisoned()
171 *poisoned = PETSC_BOOL3_FALSE; in PetscIsRegionPoisoned()
175 if (__asan_region_is_poisoned((void *)ptr, size)) *poisoned = PETSC_BOOL3_TRUE; in PetscIsRegionPoisoned()
178 if (PetscDefined(HAVE_VALGRIND_MEMPOISON)) *poisoned = PETSC_BOOL3_UNKNOWN; in PetscIsRegionPoisoned()