ntysdd

Results 7 issues of ntysdd

Currently there's no worst-case fragmentation analysis in README. Considering this is what distinguishes Mesh most from othere allocators, I think it's important to give a worst-case bound for fragmentation. Or...

For example, use SIMD intrinsics explicity, or use long long to process 8 bytes together?

I believe this is a bug that's there also in MASM. In 64 bit mode, xchg r32, r32 generally clear upper half of 64 bit registers. So xchg a 32...

Complete

For the program below, ``` .x64 .model flat, fastcall option win64:3 option frame:auto .code func proc arg1:dword mov eax, arg1 ret func endp end ``` Uasm generates these instructions, ```...

Complete

I find regex and ctRegex give different results. ``` import std.stdio; import std.regex; void main() { auto reg = ctRegex!("^(1+)\\1+$"); foreach (i; 2..100) { char[] s = new char[i]; s[]...

Previous versions of Strawberry Perl have Math::Prime::Util included. Newer versions no longer have this module. What's the reason?

upstream module
sp5.42

For example, nasm has a nice feature -- you can prefix a "$" to an identifier, then it is no longer an reserved word. In masm it is incrediblely and...