Talk About Network

Google


Register and Login
Nick
Password
Register create new account Sign up is FREE and you can post replies, new topics, bookmark posts and more!
Recover lost password


Programming > Borland Delphi > Re: Fastest way...
Latest [ Topics | Posts ] Archive Post A New Topic Post a Reply
<< Topic < Post Post 9 of 20 Topic 3850 of 3940
Post > Topic >>

Re: Fastest way to clear a buffer

by "Kevin Urben" <me@[EMAIL PROTECTED] > Jul 24, 2008 at 09:59 AM

Improved version for any buffer size:

procedure ClearBuffer(pBuffer : Pointer; NumBytes : Integer)

var
NDWords : Integer;
NBytes : Integer;

begin
NDWords:=NumBytes shr 2;
NBytes:=NumBytes-NDWords;

asm
   mov  ecx, NumDWords
   mov  edi, pBuffer
   mov  eax,  0
   cld
   rep  stosd
   mov ecx, NumBytes
   rep stosb
end;

end;

(untried - feel free to criticise !)
 




 20 Posts in Topic:
Fastest way to clear a buffer
buramu@[EMAIL PROTECTED]   2008-07-23 07:02:50 
Re: Fastest way to clear a buffer
Kirk Zurell <kirk@[EMA  2008-07-23 10:32:36 
Re: Fastest way to clear a buffer
Jamie <jamie_ka1lpa_no  2008-07-23 19:44:55 
Re: Fastest way to clear a buffer
Rob Kennedy <me3@[EMAI  2008-07-23 21:52:05 
Re: Fastest way to clear a buffer
"Maarten Wiltink&quo  2008-07-24 10:48:42 
Re: Fastest way to clear a buffer
buramu@[EMAIL PROTECTED]   2008-07-24 00:27:43 
Re: Fastest way to clear a buffer
Rob Kennedy <me3@[EMAI  2008-07-24 18:31:23 
Re: Fastest way to clear a buffer
"Kevin Urben" &  2008-07-24 09:40:45 
Re: Fastest way to clear a buffer
"Kevin Urben" &  2008-07-24 09:59:10 
Re: Fastest way to clear a buffer
"Kevin Urben" &  2008-07-24 10:07:14 
Re: Fastest way to clear a buffer
"Maarten Wiltink&quo  2008-07-24 11:54:45 
Re: Fastest way to clear a buffer
Jamie <jamie_ka1lpa_no  2008-07-24 18:41:28 
Re: Fastest way to clear a buffer
buramu@[EMAIL PROTECTED]   2008-07-24 04:59:04 
Re: Fastest way to clear a buffer
"Kevin Urben" &  2008-07-24 15:51:26 
Re: Fastest way to clear a buffer
buramu@[EMAIL PROTECTED]   2008-07-24 08:09:47 
Re: Fastest way to clear a buffer
buramu@[EMAIL PROTECTED]   2008-07-25 00:21:52 
Re: Fastest way to clear a buffer
buramu@[EMAIL PROTECTED]   2008-07-25 00:30:56 
Re: Fastest way to clear a buffer
"Maarten Wiltink&quo  2008-07-25 15:13:48 
Re: Fastest way to clear a buffer
"Kevin Urben" &  2008-07-25 14:25:28 
Re: Fastest way to clear a buffer
"Kevin Urben" &  2008-07-25 15:01:36 

Post A Reply:
  Go here to Signup

AddThis Feed Button


About - Advertising - Contact - Frequently Asked Questions - Privacy Policy - Terms of Use - Signup

Contact
tan12V112 Mon Oct 6 15:36:10 CDT 2008.