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

1 2 3 4 5 6

  /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/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/harfbuzz_ng/src/
hb-ot-post-table.hh 85 Fixed italicAngle; /* Italic angle in counter-clockwise degrees
hb-ot-var-fvar-table.hh 48 Fixed coordinates[VAR];/* The coordinates array for this instance. */
67 Fixed minValue; /* The minimum coordinate value for the axis. */
68 Fixed defaultValue; /* The default coordinate value for the axis. */
69 Fixed maxValue; /* The maximum coordinate value for the axis. */
199 * to either axisCount * sizeof(Fixed) + 4, or to
200 * axisCount * sizeof(Fixed) + 6. */
  /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/v8/src/arm64/
decoder-arm64.cc 70 if (!(instr->Mask(A##FMask) == A##Fixed)) { \
71 DCHECK(instr->Mask(A##FMask) == A##Fixed); \
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/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:
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/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:
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/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:
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/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:
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/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:
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/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:
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/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:
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/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/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/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-subzero/include/llvm/Support/
NativeFormatting.h 19 enum class FloatStyle { Exponent, ExponentUpper, Fixed, Percent };
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/
NativeFormatting.h 19 enum class FloatStyle { Exponent, ExponentUpper, Fixed, Percent };

Completed in 1528 milliseconds

1 2 3 4 5 6