Searched defs:fixed (Results 1 - 25 of 90) sorted by relevance

1234

/external/chromium_org/third_party/sfntly/cpp/src/sfntly/math/
H A Dfixed1616.h26 static inline int32_t Integral(int32_t fixed) { argument
27 return (fixed >> 16);
30 static inline int32_t Fractional(int32_t fixed) { argument
31 return (fixed & 0xffff);
/external/icu/icu4c/source/layout/
H A DLEFontInstance.h453 * values in a 16.16 fixed point format to floating point.
455 * @param fixed - the fixed point value
461 static inline float fixedToFloat(le_int32 fixed);
465 * floating point values to 16.16 fixed point format.
469 * @return the fixed point value
539 inline float LEFontInstance::fixedToFloat(le_int32 fixed) argument
541 return (float) (fixed / 65536.0);
/external/sfntly/cpp/src/sfntly/math/
H A Dfixed1616.h26 static inline int32_t Integral(int32_t fixed) { argument
27 return (fixed >> 16);
30 static inline int32_t Fractional(int32_t fixed) { argument
31 return (fixed & 0xffff);
/external/chromium_org/cc/layers/
H A Dlayer_position_constraint.h16 void set_is_fixed_position(bool fixed) { is_fixed_position_ = fixed; } argument
18 void set_is_fixed_to_right_edge(bool fixed) { argument
19 is_fixed_to_right_edge_ = fixed;
22 void set_is_fixed_to_bottom_edge(bool fixed) { argument
23 is_fixed_to_bottom_edge_ = fixed;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DPaintInvalidationState.cpp44 bool fixed = renderer.style()->position() == FixedPosition; local
55 if (fixed) {
63 if (renderer.isOutOfFlowPositioned() && !fixed) {
74 m_clipped = !fixed && next.m_clipped;
H A DClipRects.h69 bool fixed() const { return static_cast<bool>(m_fixed); } function in class:blink::ClipRects
70 void setFixed(bool fixed) { m_fixed = fixed ? 1 : 0; } argument
84 && fixed() == other.fixed();
92 m_fixed = other.fixed();
111 , m_fixed(other.fixed())
H A DLayoutState.cpp56 bool fixed = renderer.isOutOfFlowPositioned() && renderer.style()->position() == FixedPosition; local
57 if (fixed) {
65 if (renderer.isOutOfFlowPositioned() && !fixed) {
/external/chromium_org/v8/test/mjsunit/
H A Dhtml-string-funcs.js35 fixed: 'tt', italics: 'i', small: 'small',
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DGenericFontFamilySettings.cpp97 const AtomicString& GenericFontFamilySettings::fixed(UScriptCode script) const function in class:blink::GenericFontFamilySettings
104 if (family == fixed())
/external/chromium_org/third_party/skia/gm/
H A Dninepatchstretch.cpp61 const SkScalar fixed = SkIntToScalar(bm.width() - center.width()); local
64 { fixed * 4 / 5, fixed * 4 / 5 }, // shrink in both axes
65 { fixed * 4 / 5, fixed * 4 }, // shrink in X
66 { fixed * 4, fixed * 4 / 5 }, // shrink in Y
67 { fixed * 4, fixed * 4 }
81 SkRect r = SkRect::MakeXYWH(x + ix * fixed,
[all...]
/external/skia/gm/
H A Dninepatchstretch.cpp65 const SkScalar fixed = SkIntToScalar(bm.width() - center.width()); local
68 { fixed * 4 / 5, fixed * 4 / 5 }, // shrink in both axes
69 { fixed * 4 / 5, fixed * 4 }, // shrink in X
70 { fixed * 4, fixed * 4 / 5 }, // shrink in Y
71 { fixed * 4, fixed * 4 }
85 SkRect r = SkRect::MakeXYWH(x + ix * fixed,
[all...]
/external/chromium_org/third_party/WebKit/Source/core/xml/parser/
H A DXMLErrors.cpp103 RefPtrWillBeRawPtr<Element> fixed = doc->createElement(divTag, true); local
106 fixed->parserSetAttributes(fixedAttributes);
107 reportElement->parserAppendChild(fixed.get());
109 fixed->parserAppendChild(doc->createTextNode(errorMessages));
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_type.h76 * normalized values, or fixed point.
80 * Floating-point. Cannot be used with fixed. Integer numbers are
89 unsigned fixed:1; member in struct:lp_type
106 * For floating and fixed point formats it means the values should be
114 * For fixed point values, the fixed point is assumed to be at half the
286 res_type.fixed = TRUE;
300 res_type.fixed = TRUE;
/external/chromium_org/third_party/zlib/
H A Dinfback.c65 fixed code decoding. Normally this returns fixed tables from inffixed.h.
79 static code fixed[544]; local
81 /* build fixed huffman tables if first call (may not be thread safe) */
92 next = fixed;
299 case 1: /* fixed block */
301 Tracev((stderr, "inflate: fixed codes block%s\n",
H A Dinflate.c24 * - Correct filename to inffixed.h for fixed tables in inflate.c
232 fixed code decoding. Normally this returns fixed tables from inffixed.h.
246 static code fixed[544]; local
248 /* build fixed huffman tables if first call (may not be thread safe) */
259 next = fixed;
310 puts(" /* inffixed.h -- table for decoding fixed codes");
827 case 1: /* fixed block */
829 Tracev((stderr, "inflate: fixed codes block%s\n",
/external/clang/test/CodeGen/
H A Darm-abi-vector.c15 double varargs_vec_2i(int fixed, ...) { argument
30 double sum = fixed;
31 va_start(ap, fixed);
46 double varargs_vec_3c(int fixed, ...) { argument
56 double sum = fixed;
57 va_start(ap, fixed);
72 double varargs_vec_5c(int fixed, ...) { argument
87 double sum = fixed;
88 va_start(ap, fixed);
103 double varargs_vec_9c(int fixed, argument
137 varargs_vec_19c(int fixed, ...) argument
165 varargs_vec_3s(int fixed, ...) argument
196 varargs_vec_5s(int fixed, ...) argument
237 varargs_struct(int fixed, ...) argument
[all...]
/external/eigen/bench/
H A Dquat_slerp.cpp239 cout << "\nSpeed:\n" << std::fixed; member in class:std
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_type.h76 * normalized values, or fixed point.
80 * Floating-point. Cannot be used with fixed. Integer numbers are
89 unsigned fixed:1; member in struct:lp_type
106 * For floating and fixed point formats it means the values should be
114 * For fixed point values, the fixed point is assumed to be at half the
286 res_type.fixed = TRUE;
300 res_type.fixed = TRUE;
/external/qemu/distrib/zlib-1.2.8/
H A Dinfback.c74 fixed code decoding. Normally this returns fixed tables from inffixed.h.
88 static code fixed[544]; local
90 /* build fixed huffman tables if first call (may not be thread safe) */
101 next = fixed;
308 case 1: /* fixed block */
310 Tracev((stderr, "inflate: fixed codes block%s\n",
/external/valgrind/main/none/tests/linux/
H A Dmremap2.c43 // A suitable attempted fixed dst is workingarea + 150*PAGE.
108 int alocal, maymove, fixed, nsi, dstpossible; local
121 for (fixed = 0; fixed <= 1; fixed++) {
129 (fixed ? MREMAP_FIXED : 0);
143 printf("maymv %d fixed %d newsz %2d dstpo %d dst %p -> ",
144 maymove, fixed, newsizes[nsi], dstpossible, dst );
/external/zlib/src/
H A Dinfback.c74 fixed code decoding. Normally this returns fixed tables from inffixed.h.
88 static code fixed[544]; local
90 /* build fixed huffman tables if first call (may not be thread safe) */
101 next = fixed;
308 case 1: /* fixed block */
310 Tracev((stderr, "inflate: fixed codes block%s\n",
/external/chromium_org/net/third_party/nss/ssl/
H A Dpreenc.h80 PEFixedKeyHeader fixed; member in union:PEHeaderStr::__anon9653
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/bitmap/
H A Debdt_table.cc74 bool fixed = true; local
86 fixed = (glyph_size <= 0) ? false : fixed;
89 return (fixed ? 1 : -1) * size;
/external/chromium_org/third_party/skia/src/utils/
H A DSkNinePatch.cpp59 // stretchy areas and scale the fixed areas to fit within the target bounds.
64 delta = SkScalarMul(delta, -stretchFactor); // scale fixed areas
66 // fixed and scale the stretchable areas to fill the target bounds.
160 const SkScalar fixed = SkIntToScalar(bitmap.width() - stretchSize); local
161 if (bounds.width() >= fixed)
162 stretchX = (bounds.width() - fixed) / stretchSize;
164 stretchX = SkScalarDiv(-bounds.width(), fixed);
172 const SkScalar fixed = SkIntToScalar(bitmap.height() - stretchSize); local
173 if (bounds.height() >= fixed)
174 stretchY = (bounds.height() - fixed) / stretchSiz
[all...]
/external/kernel-headers/original/uapi/linux/
H A Dif_hippi.h104 __be32 fixed; member in struct:hippi_fp_hdr

Completed in 631 milliseconds

1234