#72280 - ishraam - Fri Feb 17, 2006 9:33 am
I just went over <math.h> again, and, once again, saw the "div32(...)", "mod32(...)", "div64(...)", "mod64(...)", "sqrt32(...)" functions.
Since <jtypes.h> told me int32 is a signed int, I was wondering what was the difference between using a common
and
Is the second version ("div32") optimized (using the math coprocessor)? And the first version ("/") not ? (using the ARM x processor)?
Since <jtypes.h> told me int32 is a signed int, I was wondering what was the difference between using a common
Code: |
int div = 1223 / 333; |
and
Code: |
int32 div = div32(1223,333); |
Is the second version ("div32") optimized (using the math coprocessor)? And the first version ("/") not ? (using the ARM x processor)?