This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Text; | |
using JetBrains.Annotations; | |
namespace Csx.Utility | |
{ | |
[PublicAPI] | |
public static class StringExtensions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
************** | |
Session One started for MCU 1 | |
************** | |
/usr/local/bin/openocd -c gdb_port 9001 -s /p/egym/azo/test/openocd -f /p/egym/azo/test/openocd/openocd.cfg -c tcl_port disabled -c telnet_port disabled -d3 | |
19:31:49: Debugging starts | |
Open On-Chip Debugger 0.10.0+dev-gd8ac008-dirty (2020-05-29-22:19) | |
Licensed under GNU GPL v2 | |
For bug reports, read |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Runtime.InteropServices; | |
namespace Std.BasicTypes | |
{ | |
[Serializable] | |
[StructLayout(LayoutKind.Sequential, Pack = 1)] | |
public struct ObjectId : IEquatable<ObjectId> | |
{ | |
public static readonly ObjectId Null; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Text; | |
namespace Std.Utility.Hashing | |
{ | |
public static class Crc64 | |
{ | |
public const ulong DefaultSeed = 0x0; | |
private static readonly ulong[] _defaultTable = new ulong[] | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Text; | |
namespace Std.Utility.Hashing | |
{ | |
public static class Crc32 | |
{ | |
public const uint DefaultPolynomial = 0xEDB88320; | |
public const uint DefaultSeed = 0xFFFFFFFF; | |
private static readonly uint[] _defaultTable = |