Esempio n. 1
0
 public static TssSdtInt NewTssSdtInt()
 {
     return(new TssSdtInt
     {
         m_slot = TssSdtIntSlot.NewSlot(null)
     });
 }
Esempio n. 2
0
 private void SetValue(int v)
 {
     if (this.m_slot == null)
     {
         this.m_slot = TssSdtIntSlot.NewSlot(null);
     }
     this.m_slot.SetValue(v);
 }
Esempio n. 3
0
 private int GetValue()
 {
     if (this.m_slot == null)
     {
         this.m_slot = TssSdtIntSlot.NewSlot(null);
     }
     return(this.m_slot.GetValue());
 }
Esempio n. 4
0
File: TssSdt.cs Progetto: fengqk/Art
 private void SetValue(int v)
 {
     if (m_slot == null)
     {
         m_slot = TssSdtIntSlot.NewSlot(null);
     }
     m_slot.SetValue(v);
 }
Esempio n. 5
0
File: TssSdt.cs Progetto: fengqk/Art
 private int GetValue()
 {
     if (m_slot == null)
     {
         m_slot = TssSdtIntSlot.NewSlot(null);
     }
     return m_slot.GetValue();
 }
Esempio n. 6
0
File: TssSdt.cs Progetto: fengqk/Art
 //reserver for custom memory pool imp
 private static void CollectSlot(TssSdtIntSlot slot)
 {
 }
Esempio n. 7
0
File: TssSdt.cs Progetto: fengqk/Art
 //reserver for custom memory pool imp
 public static TssSdtIntSlot NewSlot(TssSdtIntSlot slot)
 {
     CollectSlot(slot);
     TssSdtIntSlot new_slot = new TssSdtIntSlot();
     return new_slot;
 }
Esempio n. 8
0
 private static void CollectSlot(TssSdtIntSlot slot)
 {
 }
Esempio n. 9
0
 public static TssSdtIntSlot NewSlot(TssSdtIntSlot slot)
 {
     TssSdtIntSlot.CollectSlot(slot);
     return(new TssSdtIntSlot());
 }