multiply two integer values using the fastest method possible Efficiently multiplies value a by possibly constant value b. If b is known to be constant and not zero or a power of 2, then a mul instruction is used rather than gcc's default which is often a slow combination of shifts and adds. If b is a power of 2 then a single shift is of course preferable and will be used