filling big array of double
- From: Henri Gourvest <x@xxxxx>
- Date: Tue, 31 May 2005 10:49:39 +0200
In my program I have to fill many big buffers with the same value, I found this great function in grids.pas:
procedure FillDword(var Dest; Count: integer; Value: Integer); register; asm XCHG EDX, ECX PUSH EDI MOV EDI, EAX MOV EAX, EDX REP STOSD POP EDI end;
unfortunally I'm not able to do the same thing with an array of "double". Any help would be greatly appreciated.
Thanks
Henri Gourvest http://www.progdigy.com .
- Follow-Ups:
- Re: filling big array of double
- From: Avatar Zondertau
- Re: filling big array of double
- From: Aleksandr Sharahov
- Re: filling big array of double
- From: Eric Grange
- Re: filling big array of double
- From: Aleksandr Sharahov
- Re: filling big array of double
- Prev by Date: Re: Fastcode UpperCase B&V 3.0
- Next by Date: Re: Fastcode UpperCase B&V 3.0
- Previous by thread: Fastcode LowerCase B&V 3.0
- Next by thread: Re: filling big array of double
- Index(es):
Relevant Pages
|