Date: Sun, 14 Feb 1999 13:16:13 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: "v. straka" cc: djgpp AT delorie DOT com Subject: Re: memset() -- performance In-Reply-To: <01be5780$3c16a520$7b7b7b7b@celeron> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com On 13 Feb 1999, v. straka wrote: > is any faster solution how fill memory with pattern than memset? > i do graphics programing and need any fast routines. > is the fastest moving than moving Double words eg. 32 bit ? > is Memset 32 bit fill routine ? memset uses 32-bit moves, yes. If you need to fill video memory, use movedata instead. It also uses 32-bit moves, but can copy across different segments.