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

  /external/sfntly/cpp/src/sfntly/math/
fixed1616.h 26 static inline int32_t Integral(int32_t fixed) {
27 return (fixed >> 16);
30 static inline int32_t Fractional(int32_t fixed) {
31 return (fixed & 0xffff);
34 static inline int32_t Fixed(int32_t integral, int32_t fractional) {
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTextControlMultiLine.cpp 103 placeholderBox->style()->setLogicalWidth(Length(contentLogicalWidth() - placeholderBox->borderAndPaddingLogicalWidth(), Fixed));
  /external/chromium_org/skia/ext/
convolver.h 42 // Entries are stored in fixed point, shifted left by kShiftBits.
45 typedef short Fixed;
47 // The number of bits that fixed point values are shifted by.
53 // Convert between floating point and our fixed point representation.
54 static Fixed FloatToFixed(float f) {
55 return static_cast<Fixed>(f * (1 << kShiftBits));
57 static unsigned char FixedToChar(Fixed x) {
60 static float FixedToFloat(Fixed x) {
61 // The cast relies on Fixed being a short, implying that on
64 COMPILE_ASSERT(sizeof(Fixed) == 2, fixed_type_should_fit_in_float_mantissa)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/opentype/
OpenTypeTypes.h 62 typedef UInt32 Fixed;
OpenTypeUtilities.cpp 73 // Fixed type is not defined on non-CG and Windows platforms. |version| in sfntHeader
74 // and headTable and |fontRevision| in headTable are of Fixed, but they're
76 // the size (4 bytes). For the definition of Fixed type, see
78 typedef int32_t Fixed;
81 Fixed version;
126 Fixed version;
127 Fixed fontRevision;
  /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/chromium_org/third_party/WebKit/Source/core/platform/
Length.h 38 Auto, Relative, Percent, Fixed,
167 setValue(Fixed, value);
186 *this = Length(value, Fixed);
223 bool isFixed() const { return type() == Fixed; }
227 bool isSpecified() const { return type() == Fixed || type() == Percent || type() == Calculated || isViewportPercentage(); }
  /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/chromium_org/base/nix/
mime_util_xdg.cc 96 Fixed,
297 if (value == "Fixed")
298 current_info->type = SubDirInfo::Fixed;
325 if (info->type == SubDirInfo::Fixed) {

Completed in 543 milliseconds