Searched refs:TransformationDescriptor (Results 1 – 1 of 1) sorted by relevance
554 private static TransformationDescriptor[] ByteSqueezeAndMove(byte bits, byte offset) in ByteSqueezeAndMove()566 var result = new List<TransformationDescriptor>(); in ByteSqueezeAndMove()574 …result.Add(new TransformationDescriptor((sbyte)(bitsLeft < bits ? -additionalShift : offset), mask… in ByteSqueezeAndMove()589 private static TransformationDescriptor[] ByteInflate(byte bits, byte bitOffset) in ByteInflate()601 var result = new List<TransformationDescriptor>(); in ByteInflate()618 var descriptor = new TransformationDescriptor(shift, (byte)mask, currentBits); in ByteInflate()629 private struct TransformationDescriptor struct in Antmicro.Renode.Backends.Display.PixelManipulationTools631 public TransformationDescriptor(sbyte shift, byte mask, byte usedBits) : this() in TransformationDescriptor() argument