Home
last modified time | relevance | path

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

/external/eigen/Eigen/
DQtAlignedMalloc19 return Eigen::internal::aligned_malloc(size);
29 void* newPtr = Eigen::internal::aligned_malloc(size);
/external/tensorflow/tensorflow/compiler/tf2xla/
Dcpu_function_runtime.cc25 void* aligned_malloc(size_t size, int minimum_alignment) { in aligned_malloc() function
80 contiguous = aligned_malloc(total, kAlign); in MallocContiguousBuffers()
/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/
DBUILD.gn15 "include/aligned_malloc.h",
44 "source/aligned_malloc.cc",
Dsystem_wrappers.gyp21 'include/aligned_malloc.h',
52 'source/aligned_malloc.cc',
/external/webrtc/webrtc/system_wrappers/source/
DAndroid.bp16 "aligned_malloc.cc",
/external/eigen/test/
Ddynalloc.cpp36 char *p = (char*)internal::aligned_malloc(i); in check_aligned_malloc()
/external/dynamic_depth/internal/base/
Dport.h775 inline void *aligned_malloc(size_t size, int minimum_alignment) { in aligned_malloc() function
1001 inline void *aligned_malloc(size_t size, int minimum_alignment) {
/external/tensorflow/tensorflow/lite/kernels/internal/
Dtensor_utils_test.cc391 aligned_malloc(a_rows * a_cols, kWeightsPerUint32)); in TEST()