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

template<class SrcT, class DstT>
int Impala::Core::Matrix::VirtualMatrixIOBufferWriter::AddRowPartConv ( int  rowNr,
int  colNr,
SrcT *  buffer,
int  bufSize 
) [inline, private]

Definition at line 130 of file VirtualMatrixIOBufferWriter.h.

References AddRowPartDirect().

00131     {
00132         DstT* tmpBuf = new DstT[bufSize];
00133         for (int i=0 ; i<bufSize ; i++)
00134             tmpBuf[i] = static_cast<DstT>(buffer[i]);
00135         int res = AddRowPartDirect(rowNr, colNr, tmpBuf, bufSize);
00136         delete tmpBuf;
00137         return res;
00138     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:20:23 2011 for ImpalaSrc by  doxygen 1.5.1