Exemplo n.º 1
0
 public Fcr31(FpuState outerInstance, Fcr31 that)
 {
     this.outerInstance = outerInstance;
     rm = that.rm;
     c  = that.c;
     fs = that.fs;
 }
Exemplo n.º 2
0
 public FpuState(FpuState that) : base(that)
 {
     if (!InstanceFieldsInitialized)
     {
         InitializeInstanceFields();
         InstanceFieldsInitialized = true;
     }
     Array.Copy(that.fpr, 0, fpr, 0, fpr.Length);
     fcr31.copy(that.fcr31);
 }
Exemplo n.º 3
0
 public Fcr31(FpuState outerInstance)
 {
     this.outerInstance = outerInstance;
     reset();
 }
Exemplo n.º 4
0
 public virtual void copy(FpuState that)
 {
     base.copy(that);
     Array.Copy(that.fpr, 0, fpr, 0, fpr.Length);
     fcr31.copy(that.fcr31);
 }