Home || Architecture || Video Search || Visual Search || Scripts || Applications || Important Messages || OGL || Src

template<class StorT>
void Impala::Core::Array::ArraySystem::External ( size_t  n,
StorT *  p 
) [inline]

Definition at line 73 of file ArraySystem.h.

References ILOG_DEBUG, mMap, mMemUse, and mNrAlloc.

Referenced by Impala::Core::Array::Array2dTem< ElemT, 1, ElemT >::Array2dTem().

00074     {
00075         size_t oldMem = mMemUse;
00076         mMemUse += n * sizeof(StorT);
00077         mNrAlloc++;
00078         ILOG_DEBUG("External (0x" << p << ") " << n << " times " << sizeof(StorT)
00079                    << ", usage from " << oldMem << " to " << mMemUse);
00080         mMap[p] = SysInf(n, sizeof(StorT), mNrAlloc-1);
00081     }


Generated on Fri Mar 19 10:59:10 2010 for ImpalaSrc by  doxygen 1.5.1