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

int Impala::Core::Array::ImageArchiveFileFset::GetIntFromChars ( char *  buf,
int  pos 
) [inline, private]

Definition at line 114 of file ImageArchiveFileFset.h.

Referenced by ImageArchiveFileFset().

00115     {
00116         int a0 = buf[pos + 0] & 0xff;
00117         int a1 = buf[pos + 1] & 0xff;
00118         int a2 = buf[pos + 2] & 0xff;
00119         int a3 = buf[pos + 3] & 0xff;
00120         int res = a0 << 24 | a1 << 16 | a2 << 8 | a3;
00121         return res;
00122     }


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