Where is the package defined?













Hi,
I am using System Generator 10.1i. The generated code has multiple
times of the following similar code. I am curious about the definition
of:
use work.conv_pkg.all;
use work.clock_pkg.all;

I cannot find it anywhere. Anyone can tell me that?


Thanks in advance.






----------------------------------
library IEEE;
use IEEE.std_logic_1164.all;
use work.conv_pkg.all;
use work.clock_pkg.all;
use std.textio.all ;
entity xltbsource is
generic (o_width : integer := 4;
o_bin_pt : integer := 2;
o_arith : integer := xlSigned;
latency : integer := 1;
inputFile : string := "test.dat";
periodMultiplier : integer := 1;
reqHoldTime : time := 1500 ps);
port (o : out std_logic_vector (o_width-1 downto 0));
end xltbsource;
.