Home
last modified time | relevance | path

Searched refs:limitPerLine (Results 1 – 2 of 2) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/
DAmbiqApollo4_Security.cs51 …or CRC32 calculation:\n{0}", data.Select(b => "0x" + b.ToString("X2")).Stringify(limitPerLine: 8)); in CalculateCrc32()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DMisc.cs427 … Stringify<TSource>(this IEnumerable<TSource> source, string separator = " ", int limitPerLine = 0) in Stringify() argument
429 …rn Stringify(source.Select(x => x == null ? String.Empty : x.ToString()), separator, limitPerLine); in Stringify()
432 …tic string Stringify(this IEnumerable<string> source, string separator = " ", int limitPerLine = 0) in Stringify() argument
437 …return source.Aggregate((x, y) => x + separator + (limitPerLine != 0 && (++idx % limitPerLine == 0… in Stringify()