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

/external/valgrind/main/memcheck/tests/
H A Dmemalign_test.c11 unsigned long pszB = sysconf(_SC_PAGE_SIZE); local
13 assert(pszB == 4096 || pszB == 16384 || pszB == 65536);
18 assert( (((unsigned long)(a[i])) % pszB) == 0 );
/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
369 SizeT pszB_to_bszB ( Arena* a, SizeT pszB )
371 return pszB + overhead_szB(a);
847 "newSuperblock at %p (pszB %7ld) %s owner %s/%s\n",
865 "reclaimSuperblock at %p (pszB %7ld) %s owner %s/%s\n",
982 UInt pszB_to_listNo ( SizeT pszB )
984 SizeT n = pszB / VG_MIN_MALLOC_SZB;
985 vg_assert(0 == pszB
1055 SizeT pszB = 0; local
1491 SizeT pszB = bszB_to_pszB(a, bszB); local
[all...]
/external/valgrind/main/helgrind/
H A Dhg_main.c4841 SizeT pszB = 0; local
4844 if (HG_(mm_find_containing_block)(NULL, &payload, &pszB, args[1])) {
4845 if (pszB > 0) {
4846 evh__die_mem(payload, pszB);
4847 evh__new_mem(payload, pszB);
4849 *ret = pszB;

Completed in 350 milliseconds