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

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

Definition at line 79 of file ArraySystem.h.

References ILOG_DEBUG, mMap, mMemUse, and mNrAlloc.

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

00080     {
00081         size_t oldMem = mMemUse;
00082         mMemUse += n * sizeof(StorT);
00083         mNrAlloc++;
00084         ILOG_DEBUG("External (0x" << p << ") " << n << " times " << sizeof(StorT)
00085                    << ", usage from " << oldMem << " to " << mMemUse);
00086         mMap[p] = SysInf(n, sizeof(StorT), mNrAlloc-1);
00087     }


Generated on Thu Jan 13 09:17:16 2011 for ImpalaSrc by  doxygen 1.5.1