[Overview][Constants][Types][Classes][Procedures and functions][Variables] | Reference for unit 'System' (#rtl) |
Fill memory region with 32-bit pattern
Source position: systemh.inc line 417
procedure FillDWord( |
var x; |
count: SizeInt; |
value: DWord |
); |
Fillword fills the memory starting at X with Count DWords with value equal to Value. A DWord is 4 bytes in size.
No checking on the size of X is done.
|
Fill memory region with 8-bit pattern |
|
|
Fill memory region with certain character |
|
|
Fill memory region with 16-bit pattern |
|
|
Move data from one location in memory to another |
Program Example103; { Program to demonstrate the FillByte function. } Var S : String[10]; I : Byte; begin For i:=10 downto 0 do begin { Fill S with i bytes } FillChar (S,SizeOf(S),32); { Set Length } SetLength(S,I); Writeln (s,'*'); end; end.
No notes exist for this page yet.