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

  /external/eigen/test/
exceptions.cpp 15 #define EIGEN_STACK_ALLOCATION_LIMIT 100000000
bdcsvd.cpp 14 #define EIGEN_STACK_ALLOCATION_LIMIT 0
jacobisvd.cpp 12 #define EIGEN_STACK_ALLOCATION_LIMIT 0
nomalloc.cpp 12 #define EIGEN_STACK_ALLOCATION_LIMIT 0
  /external/eigen/Eigen/src/Core/
StableNorm.h 173 ) && (blockSize*sizeof(Scalar)*2<EIGEN_STACK_ALLOCATION_LIMIT) // ifwe cannot allocate on the stack, then let's not bother about this optimization
DenseStorage.h 31 // if EIGEN_STACK_ALLOCATION_LIMIT is defined to 0, then no limit
32 #if EIGEN_STACK_ALLOCATION_LIMIT
33 EIGEN_STATIC_ASSERT(Size * sizeof(T) <= EIGEN_STACK_ALLOCATION_LIMIT, OBJECT_ALLOCATED_ON_STACK_IS_TOO_BIG);
  /external/eigen/Eigen/src/Core/util/
Macros.h 797 #ifndef EIGEN_STACK_ALLOCATION_LIMIT
799 #define EIGEN_STACK_ALLOCATION_LIMIT 131072
    [all...]
Memory.h 611 * if SIZE is smaller than EIGEN_STACK_ALLOCATION_LIMIT, and if stack allocation is supported by the platform
638 (sizeof(TYPE)*SIZE<=EIGEN_STACK_ALLOCATION_LIMIT) ? EIGEN_ALIGNED_ALLOCA(sizeof(TYPE)*SIZE) \
640 Eigen::internal::aligned_stack_memory_handler<TYPE> EIGEN_CAT(NAME,_stack_memory_destructor)((BUFFER)==0 ? NAME : 0,SIZE,sizeof(TYPE)*SIZE>EIGEN_STACK_ALLOCATION_LIMIT)
    [all...]

Completed in 221 milliseconds