Home
last modified time | relevance | path

Searched refs:rzB (Results 1 – 25 of 99) sorted by relevance

1234

/dports/devel/valgrind-lts/valgrind-dragonfly-dragonfly/memcheck/
H A Dmc_malloc_wrappers.c465 MC_(make_mem_noaccess)( mc->data-rzB, mc->szB + 2*rzB ); in die_and_free_mem()
512 die_and_free_mem ( tid, mc, rzB ); in MC_()
686 if (rzB > 0) in MC_()
728 die_and_free_mem(tid, mc, mp->rzB); in free_mallocs_in_mempool_block()
742 pool, rzB, is_zeroed, in MC_()
758 mp->rzB = rzB; in MC_()
802 MC_(make_mem_noaccess)(mc->data-mp->rzB, mc->szB + 2*mp->rzB ); in MC_()
913 if (mp->rzB > 0) { in MC_()
918 MC_(make_mem_noaccess) ( addr - mp->rzB, mp->rzB); in MC_()
959 die_and_free_mem ( tid, mc, mp->rzB ); in MC_()
[all …]
H A Dmc_include.h94 SizeT rzB; // pool red-zone size member
109 Addr p, UInt rzB, MC_AllocKind kind );
111 void MC_(create_mempool) ( Addr pool, UInt rzB, Bool is_zeroed,
165 SizeT oldSizeB, SizeT newSizeB, SizeT rzB);
/dports/devel/valgrind/valgrind-dragonfly-dragonfly/memcheck/
H A Dmc_malloc_wrappers.c465 MC_(make_mem_noaccess)( mc->data-rzB, mc->szB + 2*rzB ); in die_and_free_mem()
512 die_and_free_mem ( tid, mc, rzB ); in MC_()
686 if (rzB > 0) in MC_()
728 die_and_free_mem(tid, mc, mp->rzB); in free_mallocs_in_mempool_block()
742 pool, rzB, is_zeroed, in MC_()
758 mp->rzB = rzB; in MC_()
802 MC_(make_mem_noaccess)(mc->data-mp->rzB, mc->szB + 2*mp->rzB ); in MC_()
913 if (mp->rzB > 0) { in MC_()
918 MC_(make_mem_noaccess) ( addr - mp->rzB, mp->rzB); in MC_()
959 die_and_free_mem ( tid, mc, mp->rzB ); in MC_()
[all …]
H A Dmc_include.h94 SizeT rzB; // pool red-zone size member
109 Addr p, UInt rzB, MC_AllocKind kind );
111 void MC_(create_mempool) ( Addr pool, UInt rzB, Bool is_zeroed,
165 SizeT oldSizeB, SizeT newSizeB, SizeT rzB);
/dports/net/mpich2/mpich2-1.5/src/pm/hydra/mpl/include/
H A Dmpl_valgrind.h142 # define MPL_VG_CREATE_MEMPOOL(pool, rzB, is_zeroed) VALGRIND_CREATE_MEMPOOL((pool), (rzB), (is_ze… argument
164 # define MPL_VG_CREATE_MEMPOOL(pool, rzB, is_zeroed) do {} while (0) argument
/dports/net/mpich2/mpich2-1.5/src/mpl/include/
H A Dmpl_valgrind.h142 # define MPL_VG_CREATE_MEMPOOL(pool, rzB, is_zeroed) VALGRIND_CREATE_MEMPOOL((pool), (rzB), (is_ze… argument
164 # define MPL_VG_CREATE_MEMPOOL(pool, rzB, is_zeroed) do {} while (0) argument
/dports/net/mpich/mpich-3.4.3/src/pm/hydra2/mpl/include/
H A Dmpl_valgrind.h151 #define MPL_VG_CREATE_MEMPOOL(pool, rzB, is_zeroed) VALGRIND_CREATE_MEMPOOL((pool), (rzB), (is_zero… argument
174 #define MPL_VG_CREATE_MEMPOOL(pool, rzB, is_zeroed) do {} while (0) argument
/dports/net/mpich/mpich-3.4.3/src/mpi/romio/mpl/include/
H A Dmpl_valgrind.h151 #define MPL_VG_CREATE_MEMPOOL(pool, rzB, is_zeroed) VALGRIND_CREATE_MEMPOOL((pool), (rzB), (is_zero… argument
174 #define MPL_VG_CREATE_MEMPOOL(pool, rzB, is_zeroed) do {} while (0) argument
/dports/net/mpich/mpich-3.4.3/src/pm/hydra/mpl/include/
H A Dmpl_valgrind.h151 #define MPL_VG_CREATE_MEMPOOL(pool, rzB, is_zeroed) VALGRIND_CREATE_MEMPOOL((pool), (rzB), (is_zero… argument
174 #define MPL_VG_CREATE_MEMPOOL(pool, rzB, is_zeroed) do {} while (0) argument
/dports/net/mpich/mpich-3.4.3/src/mpl/include/
H A Dmpl_valgrind.h151 #define MPL_VG_CREATE_MEMPOOL(pool, rzB, is_zeroed) VALGRIND_CREATE_MEMPOOL((pool), (rzB), (is_zero… argument
174 #define MPL_VG_CREATE_MEMPOOL(pool, rzB, is_zeroed) do {} while (0) argument
/dports/lang/zig-devel/zig-0.9.0/lib/std/
H A Dvalgrind.zig141 pub fn mallocLikeBlock(mem: []u8, rzB: usize, is_zeroed: bool) void {
142 … doClientRequestStmt(.MalloclikeBlock, @ptrToInt(mem.ptr), mem.len, rzB, @boolToInt(is_zeroed), 0);
145 pub fn resizeInPlaceBlock(oldmem: []u8, newsize: usize, rzB: usize) void {
146 doClientRequestStmt(.ResizeinplaceBlock, @ptrToInt(oldmem.ptr), oldmem.len, newsize, rzB, 0);
149 pub fn freeLikeBlock(addr: [*]u8, rzB: usize) void {
150 doClientRequestStmt(.FreelikeBlock, @ptrToInt(addr), rzB, 0, 0, 0);
158 pub fn createMempool(pool: [*]u8, rzB: usize, is_zeroed: bool, flags: usize) void {
159 doClientRequestStmt(.CreateMempool, @ptrToInt(pool), rzB, @boolToInt(is_zeroed), flags, 0);
/dports/lang/zig/zig-0.9.0/lib/std/
H A Dvalgrind.zig141 pub fn mallocLikeBlock(mem: []u8, rzB: usize, is_zeroed: bool) void {
142 … doClientRequestStmt(.MalloclikeBlock, @ptrToInt(mem.ptr), mem.len, rzB, @boolToInt(is_zeroed), 0);
145 pub fn resizeInPlaceBlock(oldmem: []u8, newsize: usize, rzB: usize) void {
146 doClientRequestStmt(.ResizeinplaceBlock, @ptrToInt(oldmem.ptr), oldmem.len, newsize, rzB, 0);
149 pub fn freeLikeBlock(addr: [*]u8, rzB: usize) void {
150 doClientRequestStmt(.FreelikeBlock, @ptrToInt(addr), rzB, 0, 0, 0);
158 pub fn createMempool(pool: [*]u8, rzB: usize, is_zeroed: bool, flags: usize) void {
159 doClientRequestStmt(.CreateMempool, @ptrToInt(pool), rzB, @boolToInt(is_zeroed), flags, 0);
/dports/graphics/blender/blender-2.91.0/source/blender/blenlib/intern/
H A DBLI_memarena.c45 # define VALGRIND_CREATE_MEMPOOL(pool, rzB, is_zeroed) UNUSED_VARS(pool, rzB, is_zeroed) argument
/dports/lang/v8/v8-9.6.180.12/src/third_party/valgrind/
H A Dvalgrind.h3919 #define VALGRIND_MALLOCLIKE_BLOCK(addr, sizeB, rzB, is_zeroed) \ argument
3922 addr, sizeB, rzB, is_zeroed, 0)
3927 #define VALGRIND_RESIZEINPLACE_BLOCK(addr, oldSizeB, newSizeB, rzB) \ argument
3930 addr, oldSizeB, newSizeB, rzB, 0)
3935 #define VALGRIND_FREELIKE_BLOCK(addr, rzB) \ argument
3938 addr, rzB, 0, 0, 0)
3941 #define VALGRIND_CREATE_MEMPOOL(pool, rzB, is_zeroed) \ argument
3944 pool, rzB, is_zeroed, 0, 0)
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/third_party/valgrind/
H A Dvalgrind.h3919 #define VALGRIND_MALLOCLIKE_BLOCK(addr, sizeB, rzB, is_zeroed) \ argument
3922 addr, sizeB, rzB, is_zeroed, 0)
3927 #define VALGRIND_RESIZEINPLACE_BLOCK(addr, oldSizeB, newSizeB, rzB) \ argument
3930 addr, oldSizeB, newSizeB, rzB, 0)
3935 #define VALGRIND_FREELIKE_BLOCK(addr, rzB) \ argument
3938 addr, rzB, 0, 0, 0)
3941 #define VALGRIND_CREATE_MEMPOOL(pool, rzB, is_zeroed) \ argument
3944 pool, rzB, is_zeroed, 0, 0)
/dports/www/node10/node-v10.24.1/deps/v8/src/third_party/valgrind/
H A Dvalgrind.h3919 #define VALGRIND_MALLOCLIKE_BLOCK(addr, sizeB, rzB, is_zeroed) \ argument
3922 addr, sizeB, rzB, is_zeroed, 0)
3927 #define VALGRIND_RESIZEINPLACE_BLOCK(addr, oldSizeB, newSizeB, rzB) \ argument
3930 addr, oldSizeB, newSizeB, rzB, 0)
3935 #define VALGRIND_FREELIKE_BLOCK(addr, rzB) \ argument
3938 addr, rzB, 0, 0, 0)
3941 #define VALGRIND_CREATE_MEMPOOL(pool, rzB, is_zeroed) \ argument
3944 pool, rzB, is_zeroed, 0, 0)
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/src/third_party/valgrind/
H A Dvalgrind.h3919 #define VALGRIND_MALLOCLIKE_BLOCK(addr, sizeB, rzB, is_zeroed) \ argument
3922 addr, sizeB, rzB, is_zeroed, 0)
3927 #define VALGRIND_RESIZEINPLACE_BLOCK(addr, oldSizeB, newSizeB, rzB) \ argument
3930 addr, oldSizeB, newSizeB, rzB, 0)
3935 #define VALGRIND_FREELIKE_BLOCK(addr, rzB) \ argument
3938 addr, rzB, 0, 0, 0)
3941 #define VALGRIND_CREATE_MEMPOOL(pool, rzB, is_zeroed) \ argument
3944 pool, rzB, is_zeroed, 0, 0)
/dports/games/0ad/0ad-0.0.23b-alpha/libraries/source/valgrind/include/
H A Dvalgrind.h4721 #define VALGRIND_MALLOCLIKE_BLOCK(addr, sizeB, rzB, is_zeroed) \ argument
4723 addr, sizeB, rzB, is_zeroed, 0)
4728 #define VALGRIND_RESIZEINPLACE_BLOCK(addr, oldSizeB, newSizeB, rzB) \ argument
4730 addr, oldSizeB, newSizeB, rzB, 0)
4735 #define VALGRIND_FREELIKE_BLOCK(addr, rzB) \ argument
4737 addr, rzB, 0, 0, 0)
4740 #define VALGRIND_CREATE_MEMPOOL(pool, rzB, is_zeroed) \ argument
4742 pool, rzB, is_zeroed, 0, 0)
/dports/x11-wm/enlightenment/enlightenment-0.24.2/src/bin/
H A Dvalgrind.h6474 #define VALGRIND_MALLOCLIKE_BLOCK(addr, sizeB, rzB, is_zeroed) \ argument
6476 addr, sizeB, rzB, is_zeroed, 0)
6481 #define VALGRIND_RESIZEINPLACE_BLOCK(addr, oldSizeB, newSizeB, rzB) \ argument
6483 addr, oldSizeB, newSizeB, rzB, 0)
6488 #define VALGRIND_FREELIKE_BLOCK(addr, rzB) \ argument
6490 addr, rzB, 0, 0, 0)
6493 #define VALGRIND_CREATE_MEMPOOL(pool, rzB, is_zeroed) \ argument
6495 pool, rzB, is_zeroed, 0, 0)
6525 #define VALGRIND_CREATE_MEMPOOL_EXT(pool, rzB, is_zeroed, flags) \ argument
6527 pool, rzB, is_zeroed, flags, 0)
/dports/net/ns3/ns-allinone-3.35/ns-3.35/src/core/model/
H A Dvalgrind.h5493 #define VALGRIND_MALLOCLIKE_BLOCK(addr, sizeB, rzB, is_zeroed) \ argument
5495 addr, sizeB, rzB, is_zeroed, 0)
5500 #define VALGRIND_RESIZEINPLACE_BLOCK(addr, oldSizeB, newSizeB, rzB) \ argument
5502 addr, oldSizeB, newSizeB, rzB, 0)
5507 #define VALGRIND_FREELIKE_BLOCK(addr, rzB) \ argument
5509 addr, rzB, 0, 0, 0)
5512 #define VALGRIND_CREATE_MEMPOOL(pool, rzB, is_zeroed) \ argument
5514 pool, rzB, is_zeroed, 0, 0)
/dports/security/gcr/gcr-3.40.0/build-aux/valgrind/
H A Dvalgrind.h5282 #define VALGRIND_MALLOCLIKE_BLOCK(addr, sizeB, rzB, is_zeroed) \ argument
5284 addr, sizeB, rzB, is_zeroed, 0)
5289 #define VALGRIND_RESIZEINPLACE_BLOCK(addr, oldSizeB, newSizeB, rzB) \ argument
5291 addr, oldSizeB, newSizeB, rzB, 0)
5296 #define VALGRIND_FREELIKE_BLOCK(addr, rzB) \ argument
5298 addr, rzB, 0, 0, 0)
5301 #define VALGRIND_CREATE_MEMPOOL(pool, rzB, is_zeroed) \ argument
5303 pool, rzB, is_zeroed, 0, 0)
/dports/converters/wkhtmltopdf/qt-5db36ec/tests/auto/exceptionsafety_objects/3rdparty/
H A Dvalgrind.h3807 #define VALGRIND_MALLOCLIKE_BLOCK(addr, sizeB, rzB, is_zeroed) \ argument
3811 addr, sizeB, rzB, is_zeroed, 0); \
3818 #define VALGRIND_FREELIKE_BLOCK(addr, rzB) \ argument
3822 addr, rzB, 0, 0, 0); \
3826 #define VALGRIND_CREATE_MEMPOOL(pool, rzB, is_zeroed) \ argument
3830 pool, rzB, is_zeroed, 0, 0); \
/dports/converters/wkhtmltopdf/qt-5db36ec/src/testlib/3rdparty/
H A Dvalgrind_p.h3807 #define VALGRIND_MALLOCLIKE_BLOCK(addr, sizeB, rzB, is_zeroed) \ argument
3811 addr, sizeB, rzB, is_zeroed, 0); \
3818 #define VALGRIND_FREELIKE_BLOCK(addr, rzB) \ argument
3822 addr, rzB, 0, 0, 0); \
3826 #define VALGRIND_CREATE_MEMPOOL(pool, rzB, is_zeroed) \ argument
3830 pool, rzB, is_zeroed, 0, 0); \
/dports/security/fwbuilder/fwbuilder-5.3.7/src/libfwbuilder/src/fwbuilder/
H A Dvalgrind.h3807 #define VALGRIND_MALLOCLIKE_BLOCK(addr, sizeB, rzB, is_zeroed) \ argument
3811 addr, sizeB, rzB, is_zeroed, 0); \
3818 #define VALGRIND_FREELIKE_BLOCK(addr, rzB) \ argument
3822 addr, rzB, 0, 0, 0); \
3826 #define VALGRIND_CREATE_MEMPOOL(pool, rzB, is_zeroed) \ argument
3830 pool, rzB, is_zeroed, 0, 0); \
/dports/net-im/libpurple/pidgin-2.14.8/libpurple/
H A Dvalgrind.h3807 #define VALGRIND_MALLOCLIKE_BLOCK(addr, sizeB, rzB, is_zeroed) \ argument
3811 addr, sizeB, rzB, is_zeroed, 0); \
3818 #define VALGRIND_FREELIKE_BLOCK(addr, rzB) \ argument
3822 addr, rzB, 0, 0, 0); \
3826 #define VALGRIND_CREATE_MEMPOOL(pool, rzB, is_zeroed) \ argument
3830 pool, rzB, is_zeroed, 0, 0); \

1234