Re: filling big array of double
- From: Henri Gourvest <x@xxxxx>
- Date: Tue, 31 May 2005 16:24:20 +0200
Eric Grange wrote:
unfortunally I'm not able to do the same thing with an array of "double". Any help would be greatly appreciated.
Untested too ;)
procedure FillDwordASM(var dest; count: integer; const value: Double); asm test edx, edx jz @@End fld qword ptr [ebp+8] @@Loop: fst qword ptr [eax] lea eax, eax+8 dec edx jnz @@Loop ffree st(0) @@End: end;
It is 2 times slower Thank you anyway :)
Henri .
- Follow-Ups:
- Re: filling big array of double
- From: Eric Grange
- Re: filling big array of double
- References:
- filling big array of double
- From: Henri Gourvest
- Re: filling big array of double
- From: Eric Grange
- filling big array of double
- Prev by Date: Re: filling big array of double
- Next by Date: Re: filling big array of double
- Previous by thread: Re: filling big array of double
- Next by thread: Re: filling big array of double
- Index(es):
Relevant Pages
|