Ejemplo n.º 1
0
        private static void FlushHeadRecord(BipBuffer buf)
        {
            byte b;

            buf.Extract(3, out b);
            int num = (b >> 4) * 8;

            buf.Release(num - 4);
            DiagnosticContext.overFlow = true;
        }
Ejemplo n.º 2
0
 public static void Reset(BipBuffer buf)
 {
     buf.Release(buf.AllocatedSize);
 }