If you're going to have 15 items or fewer, I'd suggest that you start by distilling every group of three numbers into two, and then each group of fifteen into four. Something like:
uint32 x0,y0,z0,x1,y1,z1, ... x4,y4,z4; // Input values
uint32 even0,even1,...even4,odd0...odd4;
uint lowereven,lowerodd,uppereven,upperodd;
even0 = (x0 & 0x55555555) + (y0 & 0x55555555) + (z0 & 0x555555555);
odd0 = ((x0>>1) & 0x55555555) + ((y0>>1) & 0x55555555) + ((z0>>1) & 0x555555555);
... then do likewise for even1...even4 and odd1...odd4
lowereven = ((even0 & 0x333333333) + (even1 & 0x33333333) + (even2 & 0x33333333)...;
lowerodd = ((even0 & 0x333333333) + (even1 & 0x33333333) + (even2 & 0x33333333)...;
uppereven = ((even0 >> 2) & 0x33333333) + ((even1 >> 2) & 0x33333333) + ...;
oddeven = ((odd0 >> 2) & 0x33333333) + ((odd1 >> 2) & 0x33333333) + ...;
After those operations, the four values will hold bit counts for all the bits. LowerEven will hold the counts for bits 0, 4, 8, 16, etc.; LowerOdd holds 1, 5, 9, etc.; UpperEven holds 2, 6, 10, etc.; UpperOdd holds 3, 7, 11, etc.
If one had more than 15 numbers, one could handle up to 255 numbers in groups of 15 by doing the above for each group, and then using eight statements to combine all the groups.