(28 . 9)(28 . 7)
337 -- Supposing we meet the minimal bitness:
338 if B >= FZ_Minimal_Bitness then
339 while T > 0 loop
340 if T mod 2 = 1 then
341 PopCount := PopCount + 1;
342 end if;
343 PopCount := PopCount + T mod 2;
344 T := T / 2;
345 end loop;
346