Searched refs:POSIX_MEMALIGN (Results 1 – 3 of 3) sorted by relevance
/external/valgrind/unittest/ |
D | posix_tests.cc | 259 int *POSIX_MEMALIGN; variable 277 (*POSIX_MEMALIGN)++; in Worker() 295 CHECK(0 == posix_memalign((void**)&POSIX_MEMALIGN, 64, sizeof(int))); in TEST() 312 ANNOTATE_EXPECT_RACE(POSIX_MEMALIGN, "real race on a posix_memalign-ed object"); in TEST() 331 free(POSIX_MEMALIGN); in TEST()
|
/external/valgrind/main/coregrind/m_replacemalloc/ |
D | vg_replace_malloc.c | 807 #define POSIX_MEMALIGN(soname, fnname) \ macro 837 POSIX_MEMALIGN(VG_Z_LIBC_SONAME, posix_memalign); 1058 POSIX_MEMALIGN(NONE,tc_posix_memalign); 1093 POSIX_MEMALIGN(NONE, posix_memalign);
|
/external/valgrind/main/drd/tests/ |
D | tsan_unittest.cpp | 5224 union pi_pv_union { int* pi; void* pv; } POSIX_MEMALIGN; variable 5242 (*(POSIX_MEMALIGN.pi))++; in Worker() 5258 CHECK(0 == posix_memalign(&POSIX_MEMALIGN.pv, 64, sizeof(int))); in Run() 5284 FAST_MODE_INIT(POSIX_MEMALIGN.pi); in Run() 5285 ANNOTATE_EXPECT_RACE(POSIX_MEMALIGN.pi, "real race on a posix_memalign-ed object"); in Run() 5308 free(POSIX_MEMALIGN.pv); in Run()
|