Searched refs:bszB (Results 1 - 1 of 1) sorted by relevance

/external/valgrind/main/coregrind/
H A Dm_mallocfree.c95 Total size in bytes (bszB) and payload size in bytes (pszB)
98 bszB == pszB + 2*sizeof(SizeT) + 2*a->rz_szB
102 bszB == pszB + 2*sizeof(SizeT) + 2*a->rz_szB + VG_MIN_MALLOC_SZB
252 // Mark a bszB as in-use, and not in-use, and remove the in-use attribute.
254 SizeT mk_inuse_bszB ( SizeT bszB )
256 vg_assert2(bszB != 0, probably_your_fault);
257 return bszB & (~SIZE_T_0x1);
260 SizeT mk_free_bszB ( SizeT bszB )
262 vg_assert2(bszB != 0, probably_your_fault);
263 return bszB | SIZE_T_0x
320 SizeT bszB = get_bszB_as_is(b); local
448 SizeT bszB = mk_plain_bszB( (*(SizeT*)&b2[-sizeof(SizeT)]) ); local
1389 mkFreeBlock( Arena* a, Block* b, SizeT bszB, UInt b_lno ) argument
[all...]

Completed in 47 milliseconds