Searched defs:uy (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/third_party/mesa/src/src/mesa/math/
H A Dm_norm_tmp.h63 const GLfloat ux = from[0], uy = from[1], uz = from[2]; local
64 tx = ux * m0 + uy * m1 + uz * m2;
65 ty = ux * m4 + uy * m5 + uz * m6;
66 tz = ux * m8 + uy * m9 + uz * m10;
92 const GLfloat ux = from[0], uy = from[1], uz = from[2]; local
93 tx = ux * m0 + uy * m1 + uz * m2;
94 ty = ux * m4 + uy * m5 + uz * m6;
95 tz = ux * m8 + uy * m9 + uz * m10;
130 const GLfloat ux = from[0], uy = from[1], uz = from[2]; local
132 ty = uy * m
157 const GLfloat ux = from[0], uy = from[1], uz = from[2]; local
194 GLfloat ux = from[0], uy = from[1], uz = from[2]; local
226 GLfloat ux = from[0], uy = from[1], uz = from[2]; local
256 GLfloat ux = from[0], uy = from[1], uz = from[2]; local
286 GLfloat ux = from[0], uy = from[1], uz = from[2]; local
[all...]
/external/mesa3d/src/mesa/math/
H A Dm_norm_tmp.h63 const GLfloat ux = from[0], uy = from[1], uz = from[2]; local
64 tx = ux * m0 + uy * m1 + uz * m2;
65 ty = ux * m4 + uy * m5 + uz * m6;
66 tz = ux * m8 + uy * m9 + uz * m10;
92 const GLfloat ux = from[0], uy = from[1], uz = from[2]; local
93 tx = ux * m0 + uy * m1 + uz * m2;
94 ty = ux * m4 + uy * m5 + uz * m6;
95 tz = ux * m8 + uy * m9 + uz * m10;
130 const GLfloat ux = from[0], uy = from[1], uz = from[2]; local
132 ty = uy * m
157 const GLfloat ux = from[0], uy = from[1], uz = from[2]; local
194 GLfloat ux = from[0], uy = from[1], uz = from[2]; local
226 GLfloat ux = from[0], uy = from[1], uz = from[2]; local
256 GLfloat ux = from[0], uy = from[1], uz = from[2]; local
286 GLfloat ux = from[0], uy = from[1], uz = from[2]; local
[all...]
/external/chromium_org/base/numerics/
H A Dsafe_math_impl.h120 UnsignedDst uy = static_cast<UnsignedDst>(y); local
121 UnsignedDst uresult = ux + uy;
125 if (HasSignBit(BinaryComplement((uresult ^ ux) & (uresult ^ uy))))
143 UnsignedDst uy = static_cast<UnsignedDst>(y); local
144 UnsignedDst uresult = ux - uy;
148 if (HasSignBit(BinaryComplement((uresult ^ ux) & (ux ^ uy))))
/external/chromium_org/v8/src/base/
H A Dsafe_math_impl.h150 UnsignedDst uy = static_cast<UnsignedDst>(y); local
151 UnsignedDst uresult = ux + uy;
155 if (HasSignBit(BinaryComplement((uresult ^ ux) & (uresult ^ uy))))
173 UnsignedDst uy = static_cast<UnsignedDst>(y); local
174 UnsignedDst uresult = ux - uy;
178 if (HasSignBit(BinaryComplement((uresult ^ ux) & (ux ^ uy))))
/external/chromium_org/third_party/WebKit/Source/platform/
H A DCheckedInt.h373 typename UnsignedType<T>::Type uy = y; local
374 typename UnsignedType<T>::Type result = ux + uy;
388 typename UnsignedType<T>::Type uy = y; local
389 typename UnsignedType<T>::Type result = ux - uy;
/external/pixman/pixman/
H A Dpixman-bits-image.c572 pixman_fixed_t ux, uy; local
587 uy = image->common.transform->matrix[1][0];
592 uy = 0;
607 y += uy;
665 pixman_fixed_t ux, uy, uw; local
680 uy = image->common.transform->matrix[1][0];
686 uy = 0;
716 y += uy;
748 pixman_fixed_t ux, uy; local
761 uy
884 pixman_fixed_t ux, uy; local
1038 pixman_fixed_t ux, uy; local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
H A Dsp_tex_sample.c1650 float uy = dudy * scaling; local
1657 float B = -2*(ux*vx+uy*vy);
1658 float C = ux*ux+uy*uy+1;
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
H A Ds_texfilter.c1661 GLfloat uy = dudy * scaling; local
1668 GLfloat B = -2*(ux*vx+uy*vy);
1669 GLfloat C = ux*ux+uy*uy+1;
1782 GLfloat uy = dudy * scaling; local
1786 GLfloat Py2 = uy * uy + vy * vy; /* squared length of dy */
1804 ds = uy / ((GLfloat) img->Width2);
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_tex_sample.c1650 float uy = dudy * scaling; local
1657 float B = -2*(ux*vx+uy*vy);
1658 float C = ux*ux+uy*uy+1;
/external/mesa3d/src/mesa/swrast/
H A Ds_texfilter.c1661 GLfloat uy = dudy * scaling; local
1668 GLfloat B = -2*(ux*vx+uy*vy);
1669 GLfloat C = ux*ux+uy*uy+1;
1782 GLfloat uy = dudy * scaling; local
1786 GLfloat Py2 = uy * uy + vy * vy; /* squared length of dy */
1804 ds = uy / ((GLfloat) img->Width2);
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 642 milliseconds