HomeSort by relevance Sort by last modified time
    Searched full:fixed (Results 151 - 175 of 5122) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/skia/include/core/
SkBounder.h 54 LSB and RSB are fixed-point (16.16) coordinates of the start and end
58 SkIPoint fLSB; //!< fixed-point left-side-bearing of the glyph
59 SkIPoint fRSB; //!< fixed-point right-side-bearing of the glyph
  /external/skia/legacy/include/core/
SkBounder.h 52 LSB and RSB are fixed-point (16.16) coordinates of the start and end
56 SkIPoint fLSB; //!< fixed-point left-side-bearing of the glyph
57 SkIPoint fRSB; //!< fixed-point right-side-bearing of the glyph
  /external/skia/legacy/src/utils/
SkNinePatch.cpp 59 // 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) / stretchSize
    [all...]
  /external/skia/src/utils/
SkNinePatch.cpp 59 // 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) / stretchSize
    [all...]
  /external/srec/srec/include/
fronttyp.h 26 typedef int fftdata; /* TODO: Swap in fixed point datatype when working */
30 ** Fixed point processing macros. These are defined in non-fixed point build also.
  /external/v8/test/mjsunit/regress/
regress-117409.js 40 // with empty fixed array.
43 // ArrayPush built-in will replace empty fixed array backing store with 19
44 // elements fixed array backing store. This leads to a mismatch between the map
  /external/webkit/Source/JavaScriptCore/yarr/
Yarr.h 36 #define YarrStackSpaceForBackTrackInfoPatternCharacter 1 // Only for !fixed quantifiers.
37 #define YarrStackSpaceForBackTrackInfoCharacterClass 1 // Only for !fixed quantifiers.
41 #define YarrStackSpaceForBackTrackInfoParenthesesOnce 1 // Only for !fixed quantifiers.
  /external/webkit/Source/WebCore/platform/graphics/transforms/
PerspectiveTransformOperation.cpp 43 return PerspectiveTransformOperation::create(Length(clampToPositiveInteger(p), Fixed));
60 return PerspectiveTransformOperation::create(Length(clampToPositiveInteger(val), Fixed));
62 return PerspectiveTransformOperation::create(Length(0, Fixed));
  /external/webkit/Source/JavaScriptCore/
ChangeLog-2003-10-25 16 (KJS::SimpleNumber): fixed constants; added negZero constant.
27 - fixed 3367015 -- interdependent variable declarations in for loop don't work (they go backwards)
56 - fixed 3441656 -- constructor bad for objs created w/ function as prototype (www.moock.org/asdg/codedepot)
92 - fixed 3421107 -- some dates that other browsers can parse can't be parsed by KJS's Date.parse()
112 - fixed 3419380 -- JavaScript Date.getTimezoneOffset is off by one hour (during daylight savings)
140 - fixed rdar://problem/3397316 - sherlock crash: KJS::Collector::allocate(unsigned long)
152 - fixed 3098350 -- opt. params to date methods are ignored (can't set end date in Exchange/Outlook web cal.)
164 - fixed 3247528 -- encodeURI missing from JavaScriptCore (needed by Crystal Reports)
165 - fixed 3381297 -- escape method does not escape the null character
166 - fixed 3381299 -- escape method produces incorrect escape sequences ala WinIE, rather than correct ala Ge (…)
    [all...]
  /frameworks/base/docs/html/tools/sdk/ndk/
index.jd 314 <li>Fixed potential event handling issue in {@code android_native_app_glue}.
316 <li>Fixed ARM/GCC-4.7 build to generate sufficient alignment for NEON load and store
319 <li>Fixed a GCC 4.4.3/4.6/4.7 internal compiler error (ICE) for a constant negative index
322 <li>Fixed GCC 4.7 segmentation fault for constant initialization with an object address.
324 <li>Fixed GCC 4.6 ARM segmentation fault for <code>-O</code> values when using Boost
326 <li>Fixed {@code libc.so} and {@code libc.a} to support the {@code wait4()} function.
330 <li>Fixed {@code LOCAL_SHORT_COMMANDS} bug where the {@code linker.list} file is
332 <li>Fixed GCC MIPS build on Mac OS to use CFI directives, without which
334 <li>Fixed Clang 3.2 X86/MIPS internal compiler error in {@code llvm/lib/VMCore/Value.cpp}.
336 <li>Fixed GCC 4.7 64-bit Windows assembler crash. (Error: {@code out of memory allocatin
    [all...]
  /development/ndk/platforms/android-4/samples/san-angeles/jni/
demo.c 58 // Capped conversion from float to fixed.
66 #define FIXED(value) floatToFixed(value)
254 // kludge to set lower edge of the object to fixed level
290 result->normalArray[i] = FIXED(n.x);
291 result->normalArray[i + 1] = FIXED(n.y);
292 result->normalArray[i + 2] = FIXED(n.z);
309 result->vertexArray[currentVertex * 3] = FIXED(pa.x);
310 result->vertexArray[currentVertex * 3 + 1] = FIXED(pa.y);
311 result->vertexArray[currentVertex * 3 + 2] = FIXED(pa.z);
313 result->vertexArray[currentVertex * 3] = FIXED(pb.x)
    [all...]
  /external/libpcap/
CHANGES 12 FIXED version file to be 0.9.7 instead of 0.9.5.
59 Fixed a bug in pcap_open_live(). The return value of PacketSetHwFilter
74 Fixed a typo in a DLT value: it should start with DLT_ and not LINKTYPE_
93 "vlan" filter fixed
109 Fixed minor problem in gencode.c that would appear on 64-bit
165 Fixed HP-UX libpcap implementation to correctly get the PPA for
185 Header files fixed to allow use in C++ programs.
193 Fixed bug that could cause subsequent "pcap_compile()"s to fail
213 - Building outside the source code tree fixed.
281 - Fixed an uninitialized memory reference found by Kent Vander Velde
    [all...]
  /frameworks/native/opengl/tests/angeles/
demo.c 58 // Capped conversion from float to fixed.
66 #define FIXED(value) floatToFixed(value)
254 // kludge to set lower edge of the object to fixed level
290 result->normalArray[i] = FIXED(n.x);
291 result->normalArray[i + 1] = FIXED(n.y);
292 result->normalArray[i + 2] = FIXED(n.z);
309 result->vertexArray[currentVertex * 3] = FIXED(pa.x);
310 result->vertexArray[currentVertex * 3 + 1] = FIXED(pa.y);
311 result->vertexArray[currentVertex * 3 + 2] = FIXED(pa.z);
313 result->vertexArray[currentVertex * 3] = FIXED(pb.x)
    [all...]
  /external/chromium/chrome/browser/printing/cloud_print/resources/
cloud_print_setup_done.css 22 position: fixed;
  /external/chromium/chrome/browser/remoting/resources/
remoting_setup_flow.css 20 position: fixed;
  /external/chromium/chrome/browser/resources/
login_ui.css 10 position: fixed;
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/lib/oauth/
CHANGELOG.txt 11 * Fixed a small bug per
  /external/chromium-trace/trace-viewer/src/
timeline_track_view.css 24 position: fixed;
  /external/clang/test/CXX/conv/conv.prom/
p4.cpp 12 // An enum with a fixed underlying type has an integral promotion to that type,
  /external/clang/test/FixIt/
fixit-errors-1.c 7 warnings will be fixed by -fixit, and the resulting file should
fixit-errors.c 8 warnings will be fixed by -fixit, and the resulting file should
fixit-pmem.cpp 8 warnings will be fixed by -fixit, and the resulting file should
  /external/clang/test/Sema/
format-strings-fixit-ssize_t.c 8 warnings will be fixed by -fixit, and the resulting file should
x86-builtin-palignr.c 8 // be removed when that is fixed.
  /external/compiler-rt/BlocksRuntime/tests/
byrefcopyinner.c 11 // fixed in 5623

Completed in 589 milliseconds

1 2 3 4 5 67 8 91011>>