AllocMem allocates a memory block and initializes each byte to zero.
Example:
constructor THashList.Create;
begin
FdeleteType:= dtDelete;
FCapacity:= 0;
FCount:= 0;
memSize:= 4;
Flist:= AllocMem(memSize);
SetCapacity(100);
end;