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

  /external/eigen/Eigen/src/Core/util/
Memory.h 144 void* aligned_malloc(std::size_t size);
155 return aligned_malloc(size);
163 void* newptr = aligned_malloc(size);
212 inline void* aligned_malloc(size_t size) function in namespace:Eigen::internal
237 /** \internal Frees memory allocated with aligned_malloc. */
301 return aligned_malloc(size);
376 T *result = reinterpret_cast<T*>(aligned_malloc(sizeof(T)*size));
592 : Eigen::internal::aligned_malloc(sizeof(TYPE)*SIZE) ); \
599 TYPE* NAME = (BUFFER)!=0 ? BUFFER : reinterpret_cast<TYPE*>(Eigen::internal::aligned_malloc(sizeof(TYPE)*SIZE)); \
726 return static_cast<pointer>( internal::aligned_malloc( num * sizeof(T) ) )
    [all...]
  /external/pixman/test/
utils.c 785 aligned_malloc (size_t align, size_t size) function
    [all...]

Completed in 378 milliseconds