Home
last modified time | relevance | path

Searched refs:aligned_malloc (Results 1 – 7 of 7) sorted by relevance

/external/eigen/Eigen/
DQtAlignedMalloc13 return Eigen::internal::aligned_malloc(size);
23 void* newPtr = Eigen::internal::aligned_malloc(size);
/external/eigen/Eigen/src/Core/util/
DMemory.h144 void* aligned_malloc(std::size_t size);
155 return aligned_malloc(size); in generic_aligned_realloc()
163 void* newptr = aligned_malloc(size); in generic_aligned_realloc()
212 inline void* aligned_malloc(size_t size) in aligned_malloc() function
301 return aligned_malloc(size); in conditional_aligned_malloc()
376 T *result = reinterpret_cast<T*>(aligned_malloc(sizeof(T)*size)); in aligned_new()
593 : Eigen::internal::aligned_malloc(sizeof(TYPE)*SIZE) ); \
600 …TYPE* NAME = (BUFFER)!=0 ? BUFFER : reinterpret_cast<TYPE*>(Eigen::internal::aligned_malloc(sizeof…
726 return static_cast<pointer>( internal::aligned_malloc( num * sizeof(T) ) );
/external/eigen/Eigen/src/Eigen2Support/
DMemory.h15 inline void* ei_aligned_malloc(size_t size) { return internal::aligned_malloc(size); } in ei_aligned_malloc()
/external/webrtc/webrtc/system_wrappers/source/
DAndroid.mk23 aligned_malloc.cc \
/external/webrtc/webrtc/system_wrappers/
DBUILD.gn15 "include/aligned_malloc.h",
44 "source/aligned_malloc.cc",
Dsystem_wrappers.gyp21 'include/aligned_malloc.h',
52 'source/aligned_malloc.cc',
/external/eigen/test/
Ddynalloc.cpp34 char *p = (char*)internal::aligned_malloc(i); in check_aligned_malloc()