Home
last modified time | relevance | path

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

/external/valgrind/memcheck/tests/
Dmemalign_test.c11 unsigned long pszB = sysconf(_SC_PAGE_SIZE); in main() local
13 assert(pszB == 4096 || pszB == 16384 || pszB == 65536); in main()
18 assert( (((unsigned long)(a[i])) % pszB) == 0 ); in main()
/external/valgrind/coregrind/m_replacemalloc/
Dvg_replace_malloc.c782 static int pszB = 0; \
783 if (pszB == 0) \
784 pszB = my_getpagesize(); \
786 ((SizeT)pszB, size); \
796 static int pszB = 0; \
797 if (pszB == 0) \
798 pszB = my_getpagesize(); \
801 ((SizeT)pszB, size); \
932 SizeT pszB; \
939 pszB = (SizeT)VALGRIND_NON_SIMD_CALL1( info.tl_malloc_usable_size, p ); \
[all …]
/external/valgrind/coregrind/
Dm_mallocfree.c368 SizeT pszB_to_bszB ( Arena* a, SizeT pszB ) in pszB_to_bszB() argument
370 return pszB + overhead_szB(a); in pszB_to_bszB()
1015 UInt pszB_to_listNo ( SizeT pszB ) in pszB_to_listNo() argument
1017 SizeT n = pszB / VG_MIN_MALLOC_SZB; in pszB_to_listNo()
1018 vg_assert(0 == pszB % VG_MIN_MALLOC_SZB); in pszB_to_listNo()
1088 SizeT pszB = 0; in listNo_to_pszB_min() local
1089 while (pszB_to_listNo(pszB) < i) in listNo_to_pszB_min()
1090 pszB += VG_MIN_MALLOC_SZB; in listNo_to_pszB_min()
1091 cache[i] = pszB; in listNo_to_pszB_min()
1550 SizeT pszB = bszB_to_pszB(a, bszB); in mkFreeBlock() local
[all …]
/external/valgrind/helgrind/
Dhg_main.c4913 SizeT pszB = 0; in hg_handle_client_request() local
4917 &payload, &pszB, args[1])) { in hg_handle_client_request()
4918 if (pszB > 0) { in hg_handle_client_request()
4919 evh__die_mem(payload, pszB); in hg_handle_client_request()
4920 evh__new_mem(payload, pszB); in hg_handle_client_request()
4922 *ret = pszB; in hg_handle_client_request()