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

template<class ArrayT>
template<class OutputT>
int Impala::Core::Matrix::VirtualMatrixIOBufferReader< ArrayT >::ReadRow ( int  rowNr,
OutputT *  buffer,
int  bufferSize 
) [inline, private]

Definition at line 97 of file VirtualMatrixIOBufferReader.h.

References Impala::Core::Matrix::VirtualMatrixIOBufferReader< ArrayT >::mWidth, and Impala::Core::Matrix::VirtualMatrixIOBufferReader< ArrayT >::SwitchToRow().

Referenced by Impala::Core::Matrix::VirtualMatrixIOBufferReader< ArrayT >::GetRowImpl().

00098     {
00099         StorT* chunkBufferLine = SwitchToRow(rowNr);
00100         for (int i=0 ; i<mWidth ; i++)
00101         {
00102             buffer[i] = static_cast<OutputT>(chunkBufferLine[i]);
00103         }
00104         return mWidth;
00105     }

Here is the call graph for this function:


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