Home
last modified time | relevance | path

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

/external/valgrind/coregrind/m_aspacemgr/
Daspacemgr-segnames.c150 aspacem_assert(ix >= overhead && ix <= segnames_used); in is_freeslot()
157 aspacem_assert(ix >= overhead && ix <= segnames_used); in put_slotindex()
159 aspacem_assert(slotindex >= overhead && slotindex <= segnames_used); in put_slotindex()
171 aspacem_assert(ix >= overhead && ix <= segnames_used); in get_slotindex()
172 aspacem_assert(is_freeslot(ix)); in get_slotindex()
189 aspacem_assert(ix >= overhead && ix <= segnames_used); in put_slotsize()
190 aspacem_assert(size <= max_slotsize); in put_slotsize()
198 aspacem_assert(ix >= overhead && ix <= segnames_used); in get_slotsize()
211 aspacem_assert(ix >= overhead && ix <= segnames_used); in put_refcount()
212 aspacem_assert(rc <= max_refcount); in put_refcount()
[all …]
Daspacemgr-linux.c339 aspacem_assert(VG_(am_do_sync_check) \
547 aspacem_assert(seg); in VG_()
571 aspacem_assert(nStarts > 0); in VG_()
586 aspacem_assert(nSegs <= nStarts); in VG_()
594 aspacem_assert(j == nSegs); /* this should not fail */ in VG_()
722 aspacem_assert(nsegments_used > 0); in preen_nsegments()
723 aspacem_assert(nsegments[0].start == Addr_MIN); in preen_nsegments()
724 aspacem_assert(nsegments[nsegments_used-1].end == Addr_MAX); in preen_nsegments()
726 aspacem_assert(sane_NSegment(&nsegments[0])); in preen_nsegments()
728 aspacem_assert(sane_NSegment(&nsegments[i])); in preen_nsegments()
[all …]
Daspacemgr-common.c92 aspacem_assert(!sr_isError(sres)); in ML_()
147 aspacem_assert(VG_IS_PAGE_ALIGNED(offset)); in VG_()
155 aspacem_assert((offset % 4096) == 0); in VG_()
439 aspacem_assert(VG_IS_PAGE_ALIGNED(szB)); in VG_()
440 aspacem_assert(VG_IS_PAGE_ALIGNED(stack)); in VG_()
Dpriv_aspacemgr.h81 #define aspacem_assert(expr) \ macro