Searched defs:FIXED_POINT (Results 1 - 2 of 2) sorted by relevance

/external/jmonkeyengine/engine/src/android/jme3tools/android/
H A DFixed.java7 * changing the bits allocated to the 'fraction' part (see <code>FIXED_POINT
26 public static final int FIXED_POINT = 16; field in class:Fixed
30 public static final int ONE = 1 << FIXED_POINT;
96 SINE_TABLE[n] = SINE_TABLE[n] + (1 << (TABLE_SHIFT - FIXED_POINT - 1)) >> TABLE_SHIFT - FIXED_POINT;
168 return n << FIXED_POINT;
192 sb.append((n += STRING_DECIMAL_PLACES_ROUND) >> FIXED_POINT);
206 return (int) ((long) a * (long) b >> FIXED_POINT);
213 return (int) (((long) a << FIXED_POINT * 2) / (long) b >> FIXED_POINT);
[all...]
/external/libvpx/vpx_scale/generic/
H A Dbicubic_scaler.c18 #define FIXED_POINT macro
39 #ifdef FIXED_POINT
45 #ifdef FIXED_POINT
298 #ifdef FIXED_POINT
372 #ifdef FIXED_POINT

Completed in 83 milliseconds