当前位置: 首页>>代码示例>>C#>>正文


C# Forth.PopUInt64方法代码示例

本文整理汇总了C#中SimpleForth.Forth.PopUInt64方法的典型用法代码示例。如果您正苦于以下问题:C# Forth.PopUInt64方法的具体用法?C# Forth.PopUInt64怎么用?C# Forth.PopUInt64使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在SimpleForth.Forth的用法示例。


在下文中一共展示了Forth.PopUInt64方法的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: IsNotGreaterThanUnsigned

 public static void IsNotGreaterThanUnsigned(Forth f)
 {
     ulong b = f.PopUInt64();
     ulong a = f.PopUInt64();
     f.PushBool(a <= b);
 }
开发者ID:Sunlighter,项目名称:SimpleForth,代码行数:6,代码来源:Forth.cs

示例2: IsNotLessThanUnsigned

 public static void IsNotLessThanUnsigned(Forth f)
 {
     ulong b = f.PopUInt64();
     ulong a = f.PopUInt64();
     f.PushBool(a >= b);
 }
开发者ID:Sunlighter,项目名称:SimpleForth,代码行数:6,代码来源:Forth.cs

示例3: Equals

 public static void Equals(Forth f)
 {
     ulong b = f.PopUInt64();
     ulong a = f.PopUInt64();
     f.PushBool(a == b);
 }
开发者ID:Sunlighter,项目名称:SimpleForth,代码行数:6,代码来源:Forth.cs

示例4: DoesNotEqual

 public static void DoesNotEqual(Forth f)
 {
     ulong b = f.PopUInt64();
     ulong a = f.PopUInt64();
     f.PushBool(a != b);
 }
开发者ID:Sunlighter,项目名称:SimpleForth,代码行数:6,代码来源:Forth.cs

示例5: And

 public static void And(Forth f)
 {
     ulong b = f.PopUInt64();
     ulong a = f.PopUInt64();
     f.PushUInt64(a & b);
 }
开发者ID:Sunlighter,项目名称:SimpleForth,代码行数:6,代码来源:Forth.cs

示例6: Xor

 public static void Xor(Forth f)
 {
     ulong b = f.PopUInt64();
     ulong a = f.PopUInt64();
     f.PushUInt64(a ^ b);
 }
开发者ID:Sunlighter,项目名称:SimpleForth,代码行数:6,代码来源:Forth.cs

示例7: UnsignedDivide

 public static void UnsignedDivide(Forth f)
 {
     ulong b = f.PopUInt64();
     ulong a = f.PopUInt64();
     f.PushUInt64(unchecked(a / b));
 }
开发者ID:Sunlighter,项目名称:SimpleForth,代码行数:6,代码来源:Forth.cs

示例8: UnsignedModulus

 public static void UnsignedModulus(Forth f)
 {
     ulong b = f.PopUInt64();
     ulong a = f.PopUInt64();
     f.PushUInt64(unchecked(a % b));
 }
开发者ID:Sunlighter,项目名称:SimpleForth,代码行数:6,代码来源:Forth.cs

示例9: Invert

 public static void Invert(Forth f)
 {
     ulong u = f.PopUInt64();
     f.PushUInt64(~u);
 }
开发者ID:Sunlighter,项目名称:SimpleForth,代码行数:5,代码来源:Forth.cs

示例10: UnsignedMax

 public static void UnsignedMax(Forth f)
 {
     ulong b = f.PopUInt64();
     ulong a = f.PopUInt64();
     f.PushUInt64((a > b) ? a : b);
 }
开发者ID:Sunlighter,项目名称:SimpleForth,代码行数:6,代码来源:Forth.cs

示例11: RShift

 public static void RShift(Forth f)
 {
     ulong shiftCount = f.PopUInt64();
     ulong value = f.PopUInt64();
     if (shiftCount > 63)
     {
         f.PushUInt64(0ul);
     }
     else
     {
         f.PushUInt64(value >> (int)shiftCount);
     }
 }
开发者ID:Sunlighter,项目名称:SimpleForth,代码行数:13,代码来源:Forth.cs

示例12: ZeroExtendInt32

 public static void ZeroExtendInt32(Forth f)
 {
     ulong value = f.PopUInt64();
     value &= 0xFFFFFFFFul;
     f.PushUInt64(value);
 }
开发者ID:Sunlighter,项目名称:SimpleForth,代码行数:6,代码来源:Forth.cs

示例13: SignExtendInt32

 public static void SignExtendInt32(Forth f)
 {
     ulong value = f.PopUInt64();
     if ((value & 0x80000000ul) != 0) value |= 0xFFFFFFFF80000000ul;
     else value &= 0x7FFFFFFFul;
     f.PushUInt64(value);
 }
开发者ID:Sunlighter,项目名称:SimpleForth,代码行数:7,代码来源:Forth.cs


注:本文中的SimpleForth.Forth.PopUInt64方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。