HomeSort by relevance Sort by last modified time
    Searched defs:Fixed (Results 1 - 9 of 9) 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/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
Value.java 30 static public final Fixed zero = new Fixed(0);
32 /** A fixed value that is not computed each time it is used.
34 static public class Fixed extends Value {
37 public Fixed (float value) {
  /external/llvm/include/llvm/Bitcode/
BitCodes.h 93 Fixed = 1, // A fixed width field, Val specifies number of bits.
96 Char6 = 4, // A 6-bit fixed field which maps to [a-zA-Z0-9._].
120 case Fixed:
  /external/llvm/lib/CodeGen/
InterferenceCache.h 11 // fixed RegUnit interference, and register masks.
74 /// Fixed interference in RegUnit.
75 LiveRange *Fixed;
77 /// Iterator pointing into the fixed RegUnit interference.
81 : VirtTag(LIU.getTag()), Fixed(nullptr) {
133 // much memory. Instead, a fixed number of cache entries are used in a round-
  /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/deqp/modules/glshared/
glsVertexArrayTests.hpp 352 class Fixed
355 static Fixed create (deInt32 value) { Fixed v; v.m_value = value; return v; }
356 static Fixed fromFloat (float value) { Fixed v; v.m_value = (deInt32)(value * 32768.0f); return v; }
359 inline Fixed operator+ (const Fixed& other) const { return create(m_value + other.getValue()); }
360 inline Fixed operator* (const Fixed& other) const { return create(m_value * other.getValue()); }
361 inline Fixed operator/ (const Fixed& other) const { return create(m_value / other.getValue());
    [all...]
glsDrawTest.cpp 468 class Fixed
471 static Fixed create (deInt32 value) { Fixed v; v.m_value = value; return v; }
474 inline Fixed operator+ (const Fixed& other) const { return create(m_value + other.getValue()); }
475 inline Fixed operator* (const Fixed& other) const { return create(m_value * other.getValue()); }
476 inline Fixed operator/ (const Fixed& other) const { return create(m_value / other.getValue()); }
477 inline Fixed operator- (const Fixed& other) const { return create(m_value - other.getValue());
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
scsi.h 780 UCHAR Fixed:1;
    [all...]

Completed in 192 milliseconds