HomeSort by relevance Sort by last modified time
    Searched refs:Fixed (Results 1 - 25 of 49) sorted by null

1 2

  /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) {
  /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...]
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
Container.java 9 import com.badlogic.gdx.scenes.scene2d.ui.Value.Fixed;
224 size(new Fixed(size));
230 size(new Fixed(width), new Fixed(height));
245 width(new Fixed(width));
260 height(new Fixed(height));
295 minSize(new Fixed(size));
301 minSize(new Fixed(width), new Fixed(height));
306 this.minWidth = new Fixed(minWidth)
    [all...]
Cell.java 7 import com.badlogic.gdx.scenes.scene2d.ui.Value.Fixed;
104 size(new Fixed(size));
110 size(new Fixed(width), new Fixed(height));
125 width(new Fixed(width));
140 height(new Fixed(height));
175 minSize(new Fixed(size));
181 minSize(new Fixed(width), new Fixed(height));
186 this.minWidth = new Fixed(minWidth)
    [all...]
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/sfntly/cpp/src/test/
endian_test.cc 35 0x00, 0x01, 0x00, 0x00 // 24: fixed
52 EXPECT_EQ(rfd->ReadFixed(24), Fixed1616::Fixed(1, 0));
67 fos.WriteFixed(Fixed1616::Fixed(1, 0));
verify_hhea.cc 41 EXPECT_EQ(hhea->TableVersion(), Fixed1616::Fixed(1, 0));
verify_maxp.cc 46 EXPECT_EQ(maxp->TableVersion(), Fixed1616::Fixed(1, 0));
  /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/v8/src/arm64/
decoder-arm64.cc 70 if (!(instr->Mask(A##FMask) == A##Fixed)) { \
71 DCHECK(instr->Mask(A##FMask) == A##Fixed); \
  /external/clang/lib/Serialization/
ASTWriterDecl.cpp     [all...]
  /external/llvm/lib/CodeGen/
InterferenceCache.cpp 108 RegUnits.back().Fixed = &LIS->getRegUnit(*Units);
134 RUI.FixedI = RUI.Fixed->find(Start);
140 if (RUI.FixedI != RUI.Fixed->end())
141 RUI.FixedI = RUI.Fixed->advanceTo(RUI.FixedI, Start);
168 // Same thing for fixed interference.
171 LiveInterval::const_iterator E = RegUnits[i].Fixed->end();
223 // Fixed interference.
226 LiveRange *LR = RegUnits[i].Fixed;
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-
  /external/clang/lib/Frontend/
SerializedDiagnosticPrinter.cpp 429 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 10)); // File ID.
430 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Line.
431 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Column.
432 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Offset;
456 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
474 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 3)); // Diag level.
476 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 10)); // Category.
477 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 10)); // Mapped Diag ID.
485 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // Category ID.
486 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 8)); // Text size
    [all...]
  /external/chromium-trace/catapult/third_party/flot/
NEWS.md 15 - Fixed a regression introduced in 0.8.1, where the last tick label would
19 - Fixed a regression introduced in 0.8.2, where the resize plugin would use
23 - Fixed the selection example to work with jQuery 1.9.x and later.
29 - Fixed a rare 'Uncaught TypeError' when using the resize plugin in IE 7/8.
32 - Fixed zoom constraints to apply only in the direction of the zoom.
41 - Fixed broken auto-scale behavior when using deprecated [x|y]2axis options.
71 - Fixed an unexpected change in behavior that resulted in duplicate tick
75 - Fixed a regression from 0.7 where axis labels were given the wrong width,
79 - Fixed a bug where the second axis in an xaxes/yaxes array incorrectly had
86 - Fixed an error when using a placeholder that has no font-size property
    [all...]
  /external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/
History.md 13 * [Fixed polyfill crash in browsers based on Chromium 36 to 46.](https://github.com/web-animations/web-animations-next/pull/434)
46 * Fixed easing TypeError in FireFox Nightly when using groups.
48 * Fixed delayed animation updates on Safari and Firefox
50 * Fixed infinite recursion when setting onfinish to null.
  /prebuilts/gdb/darwin-x86/include/python2.7/
pymactoolbox.h 53 int PyMac_GetFixed(PyObject *, Fixed *); /* argument parser for Fixed */
54 PyObject *PyMac_BuildFixed(Fixed); /* Convert Fixed to PyObject */
  /prebuilts/gdb/linux-x86/include/python2.7/
pymactoolbox.h 53 int PyMac_GetFixed(PyObject *, Fixed *); /* argument parser for Fixed */
54 PyObject *PyMac_BuildFixed(Fixed); /* Convert Fixed to PyObject */
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
pymactoolbox.h 53 int PyMac_GetFixed(PyObject *, Fixed *); /* argument parser for Fixed */
54 PyObject *PyMac_BuildFixed(Fixed); /* Convert Fixed to PyObject */
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
pymactoolbox.h 53 int PyMac_GetFixed(PyObject *, Fixed *); /* argument parser for Fixed */
54 PyObject *PyMac_BuildFixed(Fixed); /* Convert Fixed to PyObject */
  /external/llvm/lib/Bitcode/Reader/
BitstreamReader.cpp 63 case BitCodeAbbrevOp::Fixed:
84 case BitCodeAbbrevOp::Fixed:
270 // As a special case, handle fixed(0) (i.e., a fixed field with zero bits)
273 if ((E == BitCodeAbbrevOp::Fixed || E == BitCodeAbbrevOp::VBR) &&
279 if ((E == BitCodeAbbrevOp::Fixed || E == BitCodeAbbrevOp::VBR) &&
282 "Fixed or VBR abbrev record with size > MaxChunkData");
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp 164 // 7-bit fixed width VST_CODE_ENTRY strings.
167 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed,
170 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 7));
224 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
231 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isvararg
234 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
241 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // ispacked
243 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
250 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
444 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed,
    [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp 195 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
202 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isvararg
205 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
211 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // ispacked
213 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
226 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // ispacked
228 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
235 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
442 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed,
444 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // Constant
    [all...]

Completed in 865 milliseconds

1 2