HomeSort by relevance Sort by last modified time
    Searched defs:Fixed (Results 1 - 9 of 9) sorted by null

  /external/jmonkeyengine/engine/src/android/jme3tools/android/
Fixed.java 6 * Fixed point maths class. This can be tailored for specific needs by
11 * <p><a href="http://blog.numfum.com/2007/09/java-fixed-point-maths.html">
12 * http://blog.numfum.com/2007/09/java-fixed-point-maths.html</a></p>
21 public final class Fixed {
28 * Decimal one as represented by the Fixed class.
32 * Half in fixed point.
47 * 16.16 format used for the rest of the fixed point maths. The table
48 * values are then shifted to match the actual fixed point used.
68 * One quarter sine wave as fixed point values.
94 // Scale the values to the fixed point format used
    [all...]
  /external/llvm/include/llvm/Bitcode/
BitCodes.h 92 Fixed = 1, // A fixed width field, Val specifies number of bits.
95 Char6 = 4, // A 6-bit fixed field which maps to [a-zA-Z0-9._].
119 case Fixed:
  /external/llvm/lib/CodeGen/
InterferenceCache.h 11 // fixed RegUnit interference, and register masks.
74 /// Fixed interference in RegUnit.
75 LiveInterval *Fixed;
77 /// Iterator pointing into the fixed RegUnit interference.
80 RegUnitInfo(LiveIntervalUnion &LIU) : VirtTag(LIU.getTag()), Fixed(0) {
132 // much memory. Instead, a fixed number of cache entries are used in a round-
  /external/webkit/Source/WebCore/platform/
Length.h 37 enum LengthType { Auto, Relative, Percent, Fixed, Intrinsic, MinIntrinsic };
103 setValue(Fixed, value);
115 *this = Length(value, Fixed);
122 case Fixed:
135 case Fixed:
151 case Fixed:
174 bool isFixed() const { return type() == Fixed; }
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
FixedPositioning.h 40 Percent, Fixed, Static, Intrinsic, MinIntrinsic };
56 type = Fixed;
68 case Fixed:
84 if (len.type() == WebCore::Fixed) {
85 length.type = SkLength::Fixed;
113 const IntPoint& renderLayerPos, // For undefined fixed position
152 // When fixed element is undefined or auto, the render layer's position
  /development/ndk/platforms/android-8/samples/bitmap-plasma/jni/
plasma.c 48 * For better performance on all platforms, we're going to use fixed-point
52 typedef int32_t Fixed;
61 #define FIXED_FROM_FLOAT(x) ((Fixed)((x)*FIXED_ONE))
73 #define FIXED_FROM_INT_FLOAT(x,f) (Fixed)((x)*(FIXED_ONE*(f)))
93 # define ANGLE_TO_FIXED(x) (Fixed)((x) << (FIXED_BITS - ANGLE_BITS))
96 # define ANGLE_TO_FIXED(x) (Fixed)((x) >> (ANGLE_BITS - FIXED_BITS))
99 static Fixed angle_sin_tab[ANGLE_2PI+1];
110 static __inline__ Fixed angle_sin( Angle a )
115 static __inline__ Fixed angle_cos( Angle a )
120 static __inline__ Fixed fixed_sin( Fixed f
    [all...]
  /development/ndk/platforms/android-9/samples/native-plasma/jni/
plasma.c 53 * For better performance on all platforms, we're going to use fixed-point
57 typedef int32_t Fixed;
66 #define FIXED_FROM_FLOAT(x) ((Fixed)((x)*FIXED_ONE))
78 #define FIXED_FROM_INT_FLOAT(x,f) (Fixed)((x)*(FIXED_ONE*(f)))
98 # define ANGLE_TO_FIXED(x) (Fixed)((x) << (FIXED_BITS - ANGLE_BITS))
101 # define ANGLE_TO_FIXED(x) (Fixed)((x) >> (ANGLE_BITS - FIXED_BITS))
104 static Fixed angle_sin_tab[ANGLE_2PI+1];
115 static __inline__ Fixed angle_sin( Angle a )
120 static __inline__ Fixed angle_cos( Angle a )
125 static __inline__ Fixed fixed_sin( Fixed f
    [all...]
  /external/chromium/base/
mime_util_xdg.cc 95 Fixed,
299 if (value == "Fixed")
300 current_info->type = SubDirInfo::Fixed;
327 if (info->type == SubDirInfo::Fixed) {
  /external/webkit/Source/WebCore/platform/graphics/opentype/
OpenTypeUtilities.cpp 74 // Fixed type is not defined on non-CG and Windows platforms. |version| in sfntHeader
75 // and headTable and |fontRevision| in headTable are of Fixed, but they're
77 // the size (4 bytes). For the definition of Fixed type, see
79 typedef int32_t Fixed;
83 Fixed version;
128 Fixed version;
129 Fixed fontRevision;

Completed in 339 milliseconds