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

1 2 3 4 5

  /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/harfbuzz_ng/src/
hb-ot-stat-table.hh 78 Fixed value; /* A numeric value for this attribute value. */
101 Fixed nominalValue; /* A numeric value for this attribute value. */
102 Fixed rangeMinValue; /* The minimum value for a range associated
104 Fixed rangeMaxValue; /* The maximum value for a range associated
128 Fixed value; /* A numeric value for this attribute value. */
129 Fixed linkedValue; /* The numeric value for a style-linked mapping
147 Fixed value; /* A numeric value for this attribute value. */
hb-aat-fdsc-table.hh 68 Fixed value; /* The value for the descriptor tag. */
111 Fixed version; /* Version number of the font descriptors
hb-aat-layout-just-table.hh 73 Fixed lowerLimit; /* If the distance factor is less than this value,
75 Fixed upperLimit; /* If the distance factor is greater than this value,
121 Fixed substThreshold; /* Distance growth factor (in ems) at which
149 Fixed minimumLimit; /* The lowest value for the ductility axis tha
152 Fixed noStretchValue; /* This is the default value that corresponds to
155 Fixed maximumLimit; /* The highest value for the ductility axis that
274 Fixed beforeGrowLimit;/* The ratio by which the advance width of the
276 Fixed beforeShrinkLimit;
279 Fixed afterGrowLimit; /* The ratio by which the advance width of the glyph
281 Fixed afterShrinkLimit
    [all...]
hb-aat-layout-trak-table.hh 65 Fixed track; /* Track value for this record. */
85 hb_array_t<const Fixed> size_table ((base+sizeTable).arrayZ, sizes);
130 hb_array_t<const Fixed> size_table ((base+sizeTable).arrayZ, sizes);
151 LOffsetTo<UnsizedArrayOf<Fixed>, false>
hb-ot-var-fvar-table.hh 47 hb_array_t<const Fixed> get_coordinates (unsigned int axis_count) const
61 UnsizedArrayOf<Fixed>
86 Fixed minValue; /* The minimum coordinate value for the axis. */
87 Fixed defaultValue; /* The default coordinate value for the axis. */
88 Fixed maxValue; /* The maximum coordinate value for the axis. */
269 hb_array_t<const Fixed> instanceCoords = instance->get_coordinates (axisCount)
302 * to either axisCount * sizeof(Fixed) + 4, or to
303 * axisCount * sizeof(Fixed) + 6. */
  /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/clang/lib/Serialization/
ASTWriterDecl.cpp     [all...]
  /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/swiftshader/third_party/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/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Bitcode/
BitCodes.h 100 Fixed = 1, // A fixed width field, Val specifies number of bits.
103 Char6 = 4, // A 6-bit fixed field which maps to [a-zA-Z0-9._].
127 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/swiftshader/third_party/llvm-7.0/llvm/unittests/Support/
NativeFormatTests.cpp 104 EXPECT_EQ("1.10", format_number(1.1, FloatStyle::Fixed));
105 EXPECT_EQ("1.34", format_number(1.34, FloatStyle::Fixed));
106 EXPECT_EQ("1.34", format_number(1.344, FloatStyle::Fixed));
107 EXPECT_EQ("1.35", format_number(1.346, FloatStyle::Fixed));
126 FloatStyle::Fixed));
128 FloatStyle::Fixed));
  /external/llvm/lib/Target/Hexagon/
HexagonBlockRanges.h 79 IndexRange() : Fixed(false), TiedEnd(false) {}
81 : std::pair<IndexType,IndexType>(Start, End), Fixed(F), TiedEnd(T) {}
92 bool Fixed; // Can be renamed? "Fixed" means "no".
104 void add(IndexType Start, IndexType End, bool Fixed, bool TiedEnd) {
105 push_back(IndexRange(Start, End, Fixed, TiedEnd));
  /external/llvm/lib/Bitcode/Reader/
BitstreamReader.cpp 63 case BitCodeAbbrevOp::Fixed:
84 case BitCodeAbbrevOp::Fixed:
138 case BitCodeAbbrevOp::Fixed:
231 case BitCodeAbbrevOp::Fixed:
297 // As a special case, handle fixed(0) (i.e., a fixed field with zero bits)
300 if ((E == BitCodeAbbrevOp::Fixed || E == BitCodeAbbrevOp::VBR) &&
306 if ((E == BitCodeAbbrevOp::Fixed || E == BitCodeAbbrevOp::VBR) &&
309 "Fixed or VBR abbrev record with size > MaxChunkData");
  /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;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Bitcode/Reader/
BitstreamReader.cpp 60 case BitCodeAbbrevOp::Fixed:
81 case BitCodeAbbrevOp::Fixed:
142 case BitCodeAbbrevOp::Fixed:
234 case BitCodeAbbrevOp::Fixed:
299 // As a special case, handle fixed(0) (i.e., a fixed field with zero bits)
302 if ((E == BitCodeAbbrevOp::Fixed || E == BitCodeAbbrevOp::VBR) &&
308 if ((E == BitCodeAbbrevOp::Fixed || E == BitCodeAbbrevOp::VBR) &&
311 "Fixed or VBR abbrev record with size > MaxChunkData");
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
InterferenceCache.cpp 120 RegUnits.back().Fixed = &LIS->getRegUnit(*Units);
146 RUI.FixedI = RUI.Fixed->find(Start);
152 if (RUI.FixedI != RUI.Fixed->end())
153 RUI.FixedI = RUI.Fixed->advanceTo(RUI.FixedI, Start);
180 // Same thing for fixed interference.
183 LiveInterval::const_iterator E = RegUnits[i].Fixed->end();
235 // Fixed interference.
238 LiveRange *LR = RegUnits[i].Fixed;
  /external/clang/lib/Frontend/
SerializedDiagnosticPrinter.cpp 430 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 10)); // File ID.
431 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Line.
432 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Column.
433 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Offset;
457 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
475 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 3)); // Diag level.
477 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 10)); // Category.
478 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 10)); // Mapped Diag ID.
486 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // Category ID.
487 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 8)); // Text size
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
NativeFormatting.h 19 enum class FloatStyle { Exponent, ExponentUpper, Fixed, Percent };
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/
HexagonBlockRanges.h 83 : std::pair<IndexType,IndexType>(Start, End), Fixed(F), TiedEnd(T) {}
96 bool Fixed = false; // Can be renamed? "Fixed" means "no".
108 void add(IndexType Start, IndexType End, bool Fixed, bool TiedEnd) {
109 push_back(IndexRange(Start, End, Fixed, TiedEnd));
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
NativeFormatting.h 19 enum class FloatStyle { Exponent, ExponentUpper, Fixed, Percent };

Completed in 654 milliseconds

1 2 3 4 5