Home
last modified time | relevance | path

Searched refs:POSIX_MEMALIGN (Results 1 – 2 of 2) sorted by relevance

/external/valgrind/coregrind/m_replacemalloc/
Dvg_replace_malloc.c993 #define POSIX_MEMALIGN(soname, fnname) \ macro
1020 POSIX_MEMALIGN(VG_Z_LIBC_SONAME, posix_memalign);
1021 POSIX_MEMALIGN(SO_SYN_MALLOC, posix_memalign);
1027 POSIX_MEMALIGN(VG_Z_LIBC_SONAME, posix_memalign);
1028 POSIX_MEMALIGN(SO_SYN_MALLOC, posix_memalign);
/external/valgrind/drd/tests/
Dtsan_unittest.cpp5228 union pi_pv_union { int* pi; void* pv; } POSIX_MEMALIGN; variable
5246 (*(POSIX_MEMALIGN.pi))++; in Worker()
5262 CHECK(0 == posix_memalign(&POSIX_MEMALIGN.pv, 64, sizeof(int))); in Run()
5288 FAST_MODE_INIT(POSIX_MEMALIGN.pi); in Run()
5289 ANNOTATE_EXPECT_RACE(POSIX_MEMALIGN.pi, "real race on a posix_memalign-ed object"); in Run()
5312 free(POSIX_MEMALIGN.pv); in Run()