Searched defs:SIGNMULT (Results 1 – 2 of 2) sorted by relevance
45 #define SIGNMULT(s, a) ((s) * (a)) /* Cheap multiplication, better than branch. */ macro47 #define SIGNMULT(s, a) ((s) < 0 ? -(a) : (a)) /* Branches are still better. */ macro