July 09, 2014 Learn » Re: Opinions: The Best and Worst of D (for a lecture/talk I intend to give) | |||
|---|---|---|---|
| |||
...eax, [<adress of u>]
neg eax ; because we subtracted in the wrong order
lable: ret | |||
July 09, 2014 Learn » Re: Opinions: The Best and Worst of D (for a lecture/talk I intend to give) | |||
|---|---|---|---|
| |||
...eax, ebx label2: (ret) The 2nd branch can be replaced with ret if opCmp is... | |||
June 30, 2014 General » Re: std.math performance (SSE vs. real) | |||
|---|---|---|---|
| |||
...movw %ax, -10(%rsp) fistpl -4(%rsp) fldcw -10(%rsp) movl -4(%rsp), %eax ret | |||
June 30, 2014 General » Re: std.math performance (SSE vs. real) | |||
|---|---|---|---|
| |||
...movw %ax, -10(%rsp) fistpl -4(%rsp) fldcw -10(%rsp) movl -4(%rsp), %eax ret | |||
June 23, 2014 Issues » [Issue 12968] New: DMD inline asm outputs wrong instruction | |||
|---|---|---|---|
| |||
...RDX,RDI
// and xchg RDX,R9 correctly
ret;
}
}
}
ulong nobug(ulong a, ulong b, ulong... | |||
June 14, 2014 Learn » Re: Casts and @trusted | |||
|---|---|---|---|
| |||
...auto ret = new T[](numreads);
size_t read = index;
foreach(i;0..numreads) {
ret[i... | |||
June 11, 2014 Learn » Re: Splitting Ranges using Lambda Predicates | |||
|---|---|---|---|
| |||
...typeof(this) save()
{
auto ret = this;
ret._input = _input.save;
return ret;
}
}
//----
This will split... | |||
June 07, 2014 Learn » Re: How to sort a 2D array by column | |||
|---|---|---|---|
| |||
...replace those "ret = XXX" with straight up "return XXX". The last "return ret" should be... | |||
June 07, 2014 Learn » Re: How to sort a 2D array by column | |||
|---|---|---|---|
| |||
...rhs[currentColumn] )
ret = true;
if (rhs[currentColumn] < lhs[currentColumn] )
ret = false;
}
return ret;
}
Calling sort... | |||
June 07, 2014 Learn » Running a delegate inside a C function | |||
|---|---|---|---|
| |||
...dg.ptr);
ret = (*dg)(nframes);
writeln("3. end");
return ret;
};
... | |||
Copyright © 1999-2021 by the D Language Foundation