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

/external/valgrind/main/coregrind/
H A Dm_mallocfree.c96 Total size in bytes (bszB) and payload size in bytes (pszB)
99 bszB == pszB + 2*sizeof(SizeT) + 2*a->rz_szB
103 bszB == pszB + 2*sizeof(SizeT) + 2*a->rz_szB + VG_MIN_MALLOC_SZB
262 // Mark a bszB as in-use, and not in-use, and remove the in-use attribute.
264 SizeT mk_inuse_bszB ( SizeT bszB )
266 vg_assert2(bszB != 0, probably_your_fault);
267 return bszB & (~SIZE_T_0x1);
270 SizeT mk_free_bszB ( SizeT bszB )
272 vg_assert2(bszB != 0, probably_your_fault);
273 return bszB | SIZE_T_0x
330 SizeT bszB = get_bszB_as_is(b); local
458 SizeT bszB = mk_plain_bszB( (*(SizeT*)&b2[-sizeof(SizeT)]) ); local
1489 mkFreeBlock( Arena* a, Block* b, SizeT bszB, UInt b_lno ) argument
[all...]

Completed in 104 milliseconds