Searched defs:Fixed (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/third_party/sfntly/cpp/src/sfntly/math/
H A Dfixed1616.h34 static inline int32_t Fixed(int32_t integral, int32_t fractional) { function in class:sfntly::Fixed1616
/external/sfntly/cpp/src/sfntly/math/
H A Dfixed1616.h34 static inline int32_t Fixed(int32_t integral, int32_t fractional) { function in class:sfntly::Fixed1616
/external/chromium_org/skia/ext/
H A Dconvolver.h44 typedef short Fixed; typedef in class:skia::ConvolutionFilter1D
53 static Fixed FloatToFixed(float f) {
54 return static_cast<Fixed>(f * (1 << kShiftBits));
56 static unsigned char FixedToChar(Fixed x) {
59 static float FixedToFloat(Fixed x) {
60 // The cast relies on Fixed being a short, implying that on
63 COMPILE_ASSERT(sizeof(Fixed) == 2, fixed_type_should_fit_in_float_mantissa);
93 const Fixed* filter_values,
101 inline const Fixed* FilterForValue(int value_offset,
121 SK_API const Fixed* GetSingleFilte
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderTextControlMultiLine.cpp97 placeholderBox->style()->setLogicalWidth(Length(contentLogicalWidth() - placeholderBox->borderAndPaddingLogicalWidth(), Fixed)); local
/external/chromium_org/third_party/WebKit/Source/platform/fonts/opentype/
H A DOpenTypeTypes.h58 typedef UInt32 Fixed; typedef in namespace:blink::OpenType
H A DOpenTypeUtilities.cpp55 // Fixed type is not defined on non-CG and Windows platforms. |version| in sfntHeader
56 // and headTable and |fontRevision| in headTable are of Fixed, but they're
58 // the size (4 bytes). For the definition of Fixed type, see
60 typedef int32_t Fixed; typedef in namespace:blink
63 Fixed version;
108 Fixed version;
109 Fixed fontRevision;
/external/llvm/include/llvm/Bitcode/
H A DBitCodes.h92 Fixed = 1, // A fixed width field, Val specifies number of bits. enumerator in enum:llvm::BitCodeAbbrevOp::Encoding
119 case Fixed:
/external/llvm/lib/CodeGen/
H A DInterferenceCache.h74 /// Fixed interference in RegUnit.
75 LiveRange *Fixed; member in struct:llvm::InterferenceCache::Entry::RegUnitInfo
81 : VirtTag(LIU.getTag()), Fixed(nullptr) {
/external/chromium_org/third_party/WebKit/Source/platform/
H A DLength.h41 Auto, Percent, Fixed, enumerator in enum:blink::LengthType
221 setValue(Fixed, value);
240 *this = Length(value, Fixed);
276 bool isFixed() const { return type() == Fixed; }
280 bool isSpecified() const { return type() == Fixed || type() == Percent || type() == Calculated; }
/external/deqp/modules/glshared/
H A DglsVertexArrayTests.hpp315 class Fixed class in class:deqp::gls::GLValue
318 static Fixed create (deInt32 value) { Fixed v; v.m_value = value; return v; }
321 inline Fixed operator+ (const Fixed& other) const { return create(m_value + other.getValue()); }
322 inline Fixed operator* (const Fixed& other) const { return create(m_value * other.getValue()); }
323 inline Fixed operator/ (const Fixed& other) const { return create(m_value / other.getValue()); }
324 inline Fixed operato
[all...]

Completed in 229 milliseconds