/external/webkit/WebCore/rendering/ |
TransformState.h | 46 // If quad is non-null, it will be mapped 47 TransformState(TransformDirection mappingDirection, const FloatPoint& p, const FloatQuad* quad = 0) 50 , m_mapQuad(quad != 0) 53 if (quad) 54 m_lastPlanarQuad = *quad; 67 // Return the coords of the point or quad in the last flattened layer 71 // Return the point or quad mapped through the current transform 90 static PassRefPtr<HitTestingTransformState> create(const FloatPoint& p, const FloatQuad& quad) 92 return adoptRef(new HitTestingTransformState(p, quad)); 114 HitTestingTransformState(const FloatPoint& p, const FloatQuad& quad) [all...] |
RenderObject.h | 557 // Convert a local quad to absolute coordinates, taking transforms into account. 558 FloatQuad localToAbsoluteQuad(const FloatQuad& quad, bool fixed = false) const 560 return localToContainerQuad(quad, 0, fixed); 562 // Convert a local quad into the coordinate system of container, taking transforms into account. [all...] |
/external/openssl/crypto/sha/asm/ |
sha512-x86_64.pl | 299 .quad 0x428a2f98d728ae22,0x7137449123ef65cd 300 .quad 0xb5c0fbcfec4d3b2f,0xe9b5dba58189dbbc 301 .quad 0x3956c25bf348b538,0x59f111f1b605d019 302 .quad 0x923f82a4af194f9b,0xab1c5ed5da6d8118 303 .quad 0xd807aa98a3030242,0x12835b0145706fbe 304 .quad 0x243185be4ee4b28c,0x550c7dc3d5ffb4e2 305 .quad 0x72be5d74f27b896f,0x80deb1fe3b1696b1 306 .quad 0x9bdc06a725c71235,0xc19bf174cf692694 307 .quad 0xe49b69c19ef14ad2,0xefbe4786384f25e3 308 .quad 0x0fc19dc68b8cd5b5,0x240ca1cc77ac9c6 [all...] |
/external/skia/src/core/ |
SkRect.cpp | 55 void SkRect::toQuad(SkPoint quad[4]) const 57 SkASSERT(quad); 59 quad[0].set(fLeft, fTop); 60 quad[1].set(fRight, fTop); 61 quad[2].set(fRight, fBottom); 62 quad[3].set(fLeft, fBottom);
|
SkEdgeBuilder.cpp | 93 // the corresponding line/quad/cubic verbs 124 // the corresponding line/quad/cubic verbs
|
/bionic/libc/arch-arm/include/machine/ |
limits.h | 52 #define UQUAD_MAX 0xffffffffffffffffULL /* max unsigned quad */ 53 #define QUAD_MAX 0x7fffffffffffffffLL /* max signed quad */ 54 #define QUAD_MIN (-0x7fffffffffffffffLL-1) /* min signed quad */
|
/bionic/libc/arch-sh/include/machine/ |
limits.h | 50 #define UQUAD_MAX 0xffffffffffffffffULL /* max unsigned quad */ 51 #define QUAD_MAX 0x7fffffffffffffffLL /* max signed quad */ 52 #define QUAD_MIN (-0x7fffffffffffffffLL-1) /* min signed quad */
|
/bionic/libc/arch-x86/include/machine/ |
limits.h | 52 #define UQUAD_MAX 0xffffffffffffffffULL /* max unsigned quad */ 53 #define QUAD_MAX 0x7fffffffffffffffLL /* max signed quad */ 54 #define QUAD_MIN (-0x7fffffffffffffffLL-1) /* min signed quad */
|
/ndk/build/platforms/android-3/arch-arm/usr/include/machine/ |
limits.h | 52 #define UQUAD_MAX 0xffffffffffffffffULL /* max unsigned quad */ 53 #define QUAD_MAX 0x7fffffffffffffffLL /* max signed quad */ 54 #define QUAD_MIN (-0x7fffffffffffffffLL-1) /* min signed quad */
|
/ndk/build/platforms/android-4/arch-arm/usr/include/machine/ |
limits.h | 52 #define UQUAD_MAX 0xffffffffffffffffULL /* max unsigned quad */ 53 #define QUAD_MAX 0x7fffffffffffffffLL /* max signed quad */ 54 #define QUAD_MIN (-0x7fffffffffffffffLL-1) /* min signed quad */
|
/ndk/build/platforms/android-5/arch-arm/usr/include/machine/ |
limits.h | 52 #define UQUAD_MAX 0xffffffffffffffffULL /* max unsigned quad */ 53 #define QUAD_MAX 0x7fffffffffffffffLL /* max signed quad */ 54 #define QUAD_MIN (-0x7fffffffffffffffLL-1) /* min signed quad */
|
/ndk/build/platforms/android-5/arch-x86/usr/include/machine/ |
limits.h | 52 #define UQUAD_MAX 0xffffffffffffffffULL /* max unsigned quad */ 53 #define QUAD_MAX 0x7fffffffffffffffLL /* max signed quad */ 54 #define QUAD_MIN (-0x7fffffffffffffffLL-1) /* min signed quad */
|
/ndk/build/platforms/android-8/arch-arm/usr/include/machine/ |
limits.h | 52 #define UQUAD_MAX 0xffffffffffffffffULL /* max unsigned quad */ 53 #define QUAD_MAX 0x7fffffffffffffffLL /* max signed quad */ 54 #define QUAD_MIN (-0x7fffffffffffffffLL-1) /* min signed quad */
|
/ndk/build/platforms/android-8/arch-x86/usr/include/machine/ |
limits.h | 52 #define UQUAD_MAX 0xffffffffffffffffULL /* max unsigned quad */ 53 #define QUAD_MAX 0x7fffffffffffffffLL /* max signed quad */ 54 #define QUAD_MIN (-0x7fffffffffffffffLL-1) /* min signed quad */
|
/external/kernel-headers/original/asm-x86/ |
bug.h | 12 # define __BUG_C0 "2:\t.quad 1b, %c0\n"
|
io_32.h | 43 #define XQUAD_PORTIO_QUAD 0x40000 /* 256k per quad. */ 275 #define XQUAD_PORT_ADDR(port, quad) (xquad_portio + (XQUAD_PORTIO_QUAD*quad) + port) 277 static inline void out##bwl##_quad(unsigned type value, int port, int quad) { \ 279 write##bwl(value, XQUAD_PORT_ADDR(port, quad)); \ 286 static inline unsigned type in##bwl##_quad(int port, int quad) { \ 288 return read##bwl(XQUAD_PORT_ADDR(port, quad)); \
|
/external/skia/src/utils/ |
SkCullPoints.cpp | 64 static void toQuad(const SkIRect& r, SkIPoint quad[4]) 66 SkASSERT(quad); 68 quad[0].set(r.fLeft, r.fTop); 69 quad[1].set(r.fRight, r.fTop); 70 quad[2].set(r.fRight, r.fBottom); 71 quad[3].set(r.fLeft, r.fBottom);
|
/external/bison/lib/ |
strtol.c | 62 # ifdef QUAD 68 # ifdef QUAD 76 # ifdef QUAD 82 # ifdef QUAD 92 # ifdef QUAD 98 # ifdef QUAD 106 # ifdef QUAD 112 # ifdef QUAD 119 /* If QUAD is defined, we are defining `strtoll' or `strtoull', 121 #ifdef QUAD [all...] |
/external/stlport/stlport/ |
complex | 31 // quad precision are complex<long double>.
|
/dalvik/vm/mterp/x86-atom/ |
header.S | 445 .quad 0x8000000000000000 448 .quad 0xFFFFFFFFFFFFFFFF 451 .quad 0x0000000000000000 453 .quad 0x000000000000003F 456 .quad 0x0000000000000040 459 .quad 0x7FFFFFFFFFFFFFFF 462 .quad 0x8000000000000000 465 .quad 0x0000000000000000
|
/external/webkit/WebKit/chromium/public/ |
WebColor.h | 39 typedef unsigned WebColor; // RGBA quad. Equivalent to SkColor.
|
/external/quake/quake/src/QW/ |
qw2do.txt | 11 check the step near quad on e1m5
45 x- change EF_DIMLIGHT to EF_BLUE for Quad effect in QWQC
78 x- colored lighting for powerups (blue for quad, red for 666, etc.)
|
/external/webkit/WebCore/platform/graphics/ |
FloatQuad.h | 77 // Tests whether this quad can be losslessly represented by a FloatRect, 83 // Tests whether the given point is inside, or on an edge or corner of this quad. 86 // Tests whether the four corners of other are inside, or coincident with the sides of this quad.
|
/packages/apps/Gallery3D/src/com/cooliris/media/ |
GridDrawables.java | 89 // We create the grid quad. 113 // We create the quad for the text label. 127 // The grid quad.
|
/external/grub/stage2/ |
defs.h | 57 quad; /* an 8-byte item */ typedef in typeref:struct:_quad_
|