Re: filling big array of double
- From: "Aleksandr Sharahov" <alsha-on-mail333.com>
- Date: Tue, 31 May 2005 17:01:17 +0400
Hi Henri,
Untested procedure here.
--
regards
Aleksandr
procedure FillDouble(var Dest; Count: integer; Value: double); register;
asm
neg edx
jge @ret
shl edx, 3
sub eax, edx
mov ecx, [ebp+8]
mov ebp, [ebp+12]
@loop:
mov [eax+edx], ecx
mov [eax+edx+4], ebp
add edx, 8
jl @loop
@ret:
end;
.
- Follow-Ups:
- Re: filling big array of double
- From: Henri Gourvest
- Re: filling big array of double
- References:
- filling big array of double
- From: Henri Gourvest
- filling big array of double
- Prev by Date: Re: Fastcode UpperCase B&V 3.0
- Next by Date: Re: filling big array of double
- Previous by thread: filling big array of double
- Next by thread: Re: filling big array of double
- Index(es):
Relevant Pages
|