Searched refs:uv (Results 1 - 25 of 55) sorted by last modified time

123

/external/webp/src/dsp/
H A Dupsampling.c57 const uint32_t uv = LOAD_UV(cur_u[x], cur_v[x]); /* sample */ \
59 const uint32_t avg = tl_uv + t_uv + l_uv + uv + 0x00080008u; \
61 const uint32_t diag_03 = (avg + 2 * (tl_uv + uv)) >> 3; \
72 const uint32_t uv1 = (diag_12 + uv) >> 1; \
79 l_uv = uv; \
H A Dupsampling_neon.c164 #define CONVERT2RGB_8(FMT, XSTEP, top_y, bottom_y, uv, \
166 CONVERT8(FMT, XSTEP, len, top_y, uv, top_dst, cur_x) \
168 CONVERT8(FMT, XSTEP, len, bottom_y, (uv) + 32, bottom_dst, cur_x) \
172 #define CONVERT2RGB_1(FUNC, XSTEP, top_y, bottom_y, uv, \
174 CONVERT1(FUNC, XSTEP, len, top_y, uv, top_dst, cur_x); \
176 CONVERT1(FUNC, XSTEP, len, bottom_y, (uv) + 32, bottom_dst, cur_x); \
H A Dyuv.h273 static WEBP_INLINE int VP8ClipUV(int uv, int rounding) { argument
274 uv = (uv + rounding + (128 << (YUV_FIX + 2))) >> (YUV_FIX + 2);
275 return ((uv & ~0xff) == 0) ? uv : (uv < 0) ? 0 : 255;
/external/skia/samplecode/
H A DSamplePatch.cpp90 SkScalar uv = SkScalarMul(u, v); local
96 SkScalarMul(Uv, edge[BL].fX) + SkScalarMul(uv, edge[BR].fX);
98 SkScalarMul(Uv, edge[BL].fY) + SkScalarMul(uv, edge[BR].fY);
/external/skia/src/effects/
H A DSkPerlinNoiseShader.cpp692 const char* uv = "uv"; local
775 noiseCode.appendf("\n\n\tvec2 %s;", uv);
783 noiseCode.appendf(".bgra;\n\t%s.x = ", uv);
795 noiseCode.appendf(".bgra;\n\t%s.y = ", uv);
801 noiseCode.appendf("\n\t%s.x = mix(%s.x, %s.y, %s.x);", ab, uv, uv, noiseSmooth);
811 noiseCode.appendf(".bgra;\n\t%s.y = ", uv);
823 noiseCode.appendf(".bgra;\n\t%s.x = ", uv);
828 noiseCode.appendf("\n\t%s.y = mix(%s.x, %s.y, %s.x);", ab, uv, u
[all...]
/external/skia/src/gpu/
H A DGrPathUtils.h88 SkPoint* uv = reinterpret_cast<SkPoint*>(uvPtr); local
89 uv->fX = sx * xy->fX + kx * xy->fY + tx;
90 uv->fY = ky * xy->fX + sy * xy->fY + ty;
/external/opencv/cv/src/
H A Dcvcalibinit.cpp176 CvMat* uv = cvCreateMat( 2*real_count, 1, CV_32FC1 );
187 CV_MAT_ELEM( *uv, float, i*2, 0 ) = pts1[j].x;
188 CV_MAT_ELEM( *uv, float, i*2+1, 0 ) = pts1[j].y;
193 cvSolve( xy, uv, affine_trans, CV_SVD );
195 cvReleaseMat(&uv);
/external/opencv/cvaux/src/
H A Dcvsegment.cpp213 uchar uv[] = { (uchar)newVal[0], (uchar)newVal[1], (uchar)newVal[2] }; local
221 img[x*3] = uv[0];
222 img[x*3+1] = uv[1];
223 img[x*3+2] = uv[2];
/external/openssl/crypto/modes/asm/
H A Dghash-parisc.pl178 addib,uv -1,$cnt,L\$oop_gmult_pa2
285 addib,uv -1,$cnt,L\$oop_gmult_pa1
442 addib,uv -1,$cnt,L\$oop_ghash_pa2
559 addib,uv -1,$cnt,L\$oop_ghash_pa1
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dstroker.c413 VGfloat uv[] = {l[0], l[1], l[2], l[3]}; local
416 line_normalize(uv);
417 l[2] = l[0] + line_dx(uv) * len;
418 l[3] = l[1] + line_dy(uv) * len;
/external/libyuv/files/source/
H A Drow_common.cc1205 float uv[2]; local
1206 uv[0] = uv_dudv[0];
1207 uv[1] = uv_dudv[1];
1209 int x = static_cast<int>(uv[0]);
1210 int y = static_cast<int>(uv[1]);
1215 uv[0] += uv_dudv[2];
1216 uv[1] += uv_dudv[3];
/external/jemalloc/src/
H A Dstats.c342 unsigned uv; local
416 CTL_GET("arenas.narenas", &uv, unsigned);
417 malloc_cprintf(write_cb, cbopaque, "Arenas: %u\n", uv);
/external/fonttools/Lib/fontTools/ttLib/tables/
H A DG_M_A_P_.py31 def __init__(self, uv = 0, cid = 0, gid = 0, ggid = 0, name = ""):
32 self.UV = uv
H A D_c_m_a_p.py1086 uv, addtlCnt = struct.unpack(">3sB", data[startOffset:startOffset+4])
1088 firstBaseUV = cvtToUVS(uv)
1104 uv, gid = struct.unpack(">3sH", data[startOffset:startOffset+5])
1106 uv = cvtToUVS(uv)
1108 localUVList.append( [uv, glyphName] )
1130 for uv, gname in uvList:
1134 writer.simpletag("map", [ ("uvs",hex(uvs)), ("uv",hex(uv)), ("name", gname)] )
1157 uv
[all...]
/external/fonttools/Tools/fontTools/ttLib/tables/
H A DG_M_A_P_.py31 def __init__(self, uv = 0, cid = 0, gid = 0, ggid = 0, name = ""):
32 self.UV = uv
H A D_c_m_a_p.py1086 uv, addtlCnt = struct.unpack(">3sB", data[startOffset:startOffset+4])
1088 firstBaseUV = cvtToUVS(uv)
1104 uv, gid = struct.unpack(">3sH", data[startOffset:startOffset+5])
1106 uv = cvtToUVS(uv)
1108 localUVList.append( [uv, glyphName] )
1130 for uv, gname in uvList:
1134 writer.simpletag("map", [ ("uvs",hex(uvs)), ("uv",hex(uv)), ("name", gname)] )
1157 uv
[all...]
/external/eigen/Eigen/src/Eigen2Support/Geometry/
H A DQuaternion.h257 Vector3 uv; local
258 uv = 2 * this->vec().cross(v);
259 return v + this->w() * uv + this->vec().cross(uv);
/external/eigen/Eigen/src/Geometry/
H A DQuaternion.h471 Vector3 uv = this->vec().cross(v); local
472 uv += uv;
473 return v + this->w() * uv + this->vec().cross(uv);
/external/eigen/bench/
H A Dspmv.cpp176 boost::numeric::ublas::vector<Scalar> uv(cols), ures(rows);
177 Map<Matrix<Scalar,Dynamic,1> >(&uv[0], cols) = dv;
180 SPMV_BENCH(ublas::axpy_prod(um, uv, ures, true));
183 SPMV_BENCH(ublas::axpy_prod(boost::numeric::ublas::trans(um), uv, ures, true));
/external/eigen/demos/opengl/
H A Dcamera.cpp246 Vector3f Camera::unProject(const Vector2f& uv, float depth) const argument
249 return unProject(uv, depth, inv);
252 Vector3f Camera::unProject(const Vector2f& uv, float depth, const Matrix4f& invModelview) const argument
257 Vector3f a(2.*uv.x()/float(mVpWidth)-1., 2.*uv.y()/float(mVpHeight)-1., 1.);
H A Dcamera.h90 Eigen::Vector3f unProject(const Eigen::Vector2f& uv, float depth, const Eigen::Matrix4f& invModelview) const;
91 Eigen::Vector3f unProject(const Eigen::Vector2f& uv, float depth) const;
/external/eigen/test/
H A DdenseLM.cpp30 VectorType model(const VectorType& uv, VectorType& x) argument
35 eigen_assert(uv.size()%2 == 0);
36 eigen_assert(uv.size() == n);
40 VectorBlock<const VectorType> u(uv, 0, half);
41 VectorBlock<const VectorType> v(uv, half, half);
56 int operator()(const VectorType& uv, VectorType& fvec) argument
61 eigen_assert(uv.size()%2 == 0);
62 eigen_assert(uv.size() == n);
65 VectorBlock<const VectorType> u(uv, 0, half);
66 VectorBlock<const VectorType> v(uv, hal
78 df(const VectorType& uv, JacobianType& fjac) argument
102 test_minimizeLM(FunctorType& functor, VectorType& uv) argument
115 test_lmder(FunctorType& functor, VectorType& uv) argument
128 test_minimizeSteps(FunctorType& functor, VectorType& uv) argument
[all...]
H A DsparseLM.cpp29 VectorType model(const VectorType& uv, VectorType& x) argument
34 eigen_assert(uv.size()%2 == 0);
35 eigen_assert(uv.size() == n);
39 VectorBlock<const VectorType> u(uv, 0, half);
40 VectorBlock<const VectorType> v(uv, half, half);
59 int operator()(const VectorType& uv, VectorType& fvec) argument
63 eigen_assert(uv.size()%2 == 0);
64 eigen_assert(uv.size() == n);
66 VectorBlock<const VectorType> u(uv, 0, half);
67 VectorBlock<const VectorType> v(uv, hal
83 df(const VectorType& uv, JacobianType& fjac) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/deqp/framework/common/
H A DtcuTextureUtil.hpp107 union { float fv; deUint32 uv; deInt32 iv; } v; member in union:tcu::__anon19702
111 deUint32 m = v.uv;

Completed in 319 milliseconds

123