int getAsDecodedUnsignedInt(VarBufferPos buffer) {
   long l = buffer.getAsUnsignedLong(buffer.m_nAbsolutePosition, m_nTotalSize);
   // long l = readSignSeparatedLeadingIntComp0AsLong(buffer);
   return (int) l;
 }