i=0;
If rising_edge (clk) then
y(i)<=x(i) ;
i=:i+1;
end if;
Is a block like above, possible in a function block? If it is not, is there any function-like sub-program style to achieve this?
Or is there any synthetizable 'for loop' usage instead of 'if statement'?
No, you can't have a clocked process inside a function. You can use a loop, though:
You can wrap the for-loop portion only in a function if you really want:
I'm assuming you want to do more than just assign bits, of course, or else you wouldn't need a loop or function at all.