Searched refs:POSIX_MEMALIGN (Results 1 - 3 of 3) sorted by relevance

/external/valgrind/unittest/
H A Dposix_tests.cc259 int *POSIX_MEMALIGN; member in namespace:test110
277 (*POSIX_MEMALIGN)++;
295 CHECK(0 == posix_memalign((void**)&POSIX_MEMALIGN, 64, sizeof(int)));
312 ANNOTATE_EXPECT_RACE(POSIX_MEMALIGN, "real race on a posix_memalign-ed object");
331 free(POSIX_MEMALIGN);
/external/valgrind/main/coregrind/m_replacemalloc/
H A Dvg_replace_malloc.c91 10160 POSIX_MEMALIGN
807 #define POSIX_MEMALIGN(soname, fnname) \ macro
837 POSIX_MEMALIGN(VG_Z_LIBC_SONAME, posix_memalign);
840 //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/
H A Dtsan_unittest.cpp5224 union pi_pv_union { int* pi; void* pv; } POSIX_MEMALIGN; member in namespace:test110
5242 (*(POSIX_MEMALIGN.pi))++;
5258 CHECK(0 == posix_memalign(&POSIX_MEMALIGN.pv, 64, sizeof(int)));
5284 FAST_MODE_INIT(POSIX_MEMALIGN.pi);
5285 ANNOTATE_EXPECT_RACE(POSIX_MEMALIGN.pi, "real race on a posix_memalign-ed object");
5308 free(POSIX_MEMALIGN.pv);

Completed in 250 milliseconds