Lines Matching defs:value
177 public static int KB(this int value) in KB()
182 public static int MB(this int value) in MB()
187 public static ulong GB(this int value) in GB()
192 public static ulong TB(this int value) in TB()
201 public static int Logarithm2(int value) in Logarithm2()
243 public static void ByteArrayWrite(long offset, uint value, byte[] array) in ByteArrayWrite()
303 public static bool IsPowerOfTwo(ulong value) in IsPowerOfTwo()
308 public static int NextPowerOfTwo(int value) in NextPowerOfTwo()
336 public static StringBuilder AppendIf(this String value, bool condition, string what) in AppendIf()
342 public static StringBuilder AppendIf(this StringBuilder value, bool condition, string what) in AppendIf()
351 public static String Indent(this String value, int count) in Indent()
356 public static String Indent(this String value, int count, char fill) in Indent()
361 public static String Outdent(this String value, int count) in Outdent()
366 public static Boolean StartsWith(this String source, char value) in StartsWith()
375 public static Boolean EndsWith(this String source, char value) in EndsWith()
384 public static String Trim(this String value, String toCut) in Trim()
494 public static string ToHex(this byte value) in ToHex()
590 public static byte HiByte(this UInt16 value) in HiByte()
595 public static byte LoByte(this UInt16 value) in LoByte()
999 public static uint SwapBytesUInt(uint value) in SwapBytesUInt()
1007 public static ulong SwapBytesULong(ulong value) in SwapBytesULong()
1019 public static T SwapBytes<T>(T value) in SwapBytes()
1072 public static uint EndiannessSwap(uint value) in EndiannessSwap()
1080 public static bool CalculateUnitSuffix(double value, out double newValue, out string unit) in CalculateUnitSuffix()
1236 public static string[] Split(this string value, int size) in Split()
1248 public static void SetBit(this IValueRegisterField field, byte index, bool value) in SetBit()
1270 public static void FlipFlag<TEnum>(ref TEnum value, TEnum flag, bool state) in FlipFlag()
1454 public static bool TryParseBitPattern(string pattern, out ulong value, out ulong mask) in TryParseBitPattern()
1490 public static void SetBytesFromValue(this byte[] array, uint value, int startIndex) in SetBytesFromValue()
1572 public static int CountTrailingZeroes(uint value) in CountTrailingZeroes()
1753 public static void Fill<T>(this T[] array, T value, int startIndex = 0, int? count = null) in Fill()
1770 public static void Fill<T>(this T[] array, T value, int startIndex = 0, int? count = null) in Fill()
1853 public static T ReturnThenAssign<T>(ref T variable, T value) in ReturnThenAssign()
1860 …public static bool ReturnThenSet(ref bool variable, bool value = true) => ReturnThenAssign(ref var… in ReturnThenSet()