I see an unfamiliar notation in the Android source code: *=
*=
For example: density *= invertedRatio;
density *= invertedRatio;
I am not familiar with the star-
density *= invertedRatio; is a shortened version of density = density * invertedRatio;
density = density * invertedRatio;
This notation comes from C.