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

  /external/llvm/include/llvm/Bitcode/
BitCodes.h 90 Fixed = 1, // A fixed width field, Val specifies number of bits.
93 Char6 = 4, // A 6-bit fixed field which maps to [a-zA-Z0-9._].
118 case Fixed:
  /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; }
  /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/android/
LayerAndroid.h 64 enum SkLengthType { Undefined, Auto, Relative, Percent, Fixed, Static, Intrinsic, MinIntrinsic };
83 case Fixed:
104 : fixed(0)
110 int fixed; member in class:WebCore::TexturesResult
186 const IntPoint& renderLayerPos, // For undefined fixed position
232 the position of the fixed layers.
351 // When fixed element is undefined or auto, the render layer's position
  /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 136 milliseconds