Home
last modified time | relevance | path

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

/external/eigen/Eigen/
DQtAlignedMalloc19 return Eigen::internal::aligned_malloc(size);
29 void* newPtr = Eigen::internal::aligned_malloc(size);
/external/eigen/unsupported/Eigen/CXX11/src/util/
DMaxSizeVector.h37 data_(static_cast<T*>(internal::aligned_malloc(n * sizeof(T)))) { in MaxSizeVector()
46 data_(static_cast<T*>(internal::aligned_malloc(n * sizeof(T)))) { in MaxSizeVector()
/external/eigen/Eigen/src/Core/util/
DMemory.h153 EIGEN_DEVICE_FUNC inline void* aligned_malloc(std::size_t size) in aligned_malloc() function
214 return aligned_malloc(size); in conditional_aligned_malloc()
299 T *result = reinterpret_cast<T*>(aligned_malloc(sizeof(T)*size)); in aligned_new()
639 : Eigen::internal::aligned_malloc(sizeof(TYPE)*SIZE) ); \
646 …TYPE* NAME = (BUFFER)!=0 ? BUFFER : reinterpret_cast<TYPE*>(Eigen::internal::aligned_malloc(sizeof…
742 return static_cast<pointer>( internal::aligned_malloc(num * sizeof(T)) );
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorDeviceDefault.h19 return internal::aligned_malloc(num_bytes); in allocate()
DTensorDeviceSycl.h87 return internal::aligned_malloc(8); in allocate()
DTensorDeviceThreadPool.h112 return internal::aligned_malloc(num_bytes); in allocate()
DTensorContractionThreadPool.h361 packed_mem_ = static_cast<char*>(internal::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.cpp36 char *p = (char*)internal::aligned_malloc(i); in check_aligned_malloc()