HomeSort by relevance Sort by last modified time
    Searched refs:debug_memalign (Results 1 - 2 of 2) sorted by null

  /bionic/libc/malloc_debug/
malloc_debug.cpp 80 void* debug_memalign(size_t alignment, size_t bytes);
452 void* debug_memalign(size_t alignment, size_t bytes) { function
717 return debug_memalign(alignment, size);
729 *memptr = debug_memalign(alignment, size);
788 return debug_memalign(pagesize, size);
795 return debug_memalign(getpagesize(), size);
  /bionic/libc/malloc_debug/tests/
malloc_debug_unit_tests.cpp 56 void* debug_memalign(size_t, size_t);
169 pointer = reinterpret_cast<uint8_t*>(debug_memalign(128, alloc_size));
315 pointer = debug_memalign(128, 15);
352 pointer = reinterpret_cast<uint8_t*>(debug_memalign(alignment, 100));
393 void* pointer = debug_memalign(1024, 100);
449 pointer = reinterpret_cast<uint8_t*>(debug_memalign(alignment, 100));
    [all...]

Completed in 1886 milliseconds