Searched defs:uv (Results 1 - 25 of 30) sorted by relevance

12

/external/chromium_org/third_party/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/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/chromium_org/third_party/skia/third_party/lua/src/
H A Dlfunc.c40 UpVal *uv = &luaC_newobj(L, LUA_TUPVAL, sizeof(UpVal), NULL, 0)->uv; local
41 uv->v = &uv->u.value;
42 setnilvalue(uv->v);
43 return uv;
51 UpVal *uv; local
64 uv = &luaC_newobj(L, LUA_TUPVAL, sizeof(UpVal), pp, 0)->uv;
65 uv
75 unlinkupval(UpVal *uv) argument
82 luaF_freeupval(lua_State *L, UpVal *uv) argument
90 UpVal *uv; local
[all...]
H A Dldebug.c100 static const char *upvalname (Proto *p, int uv) { argument
101 TString *s = check_exp(uv < p->sizeupvalues, p->upvalues[uv].name);
H A Dlvm.c383 Upvaldesc *uv = p->upvalues; local
386 TValue *v = uv[i].instack ? base + uv[i].idx : encup[uv[i].idx]->v;
404 Upvaldesc *uv = p->upvalues; local
410 if (uv[i].instack) /* upvalue refers to local variable? */
411 ncl->l.upvals[i] = luaF_findupval(L, base + uv[i].idx);
413 ncl->l.upvals[i] = encup[uv[i].idx];
596 UpVal *uv = cl->upvals[GETARG_B(i)];
597 setobj(L, uv
[all...]
H A Dlgc.c190 void luaC_checkupvalcolor (global_State *g, UpVal *uv) { argument
191 GCObject *o = obj2gco(uv);
197 markvalue(g, uv->v);
260 UpVal *uv = gco2uv(o); local
261 markvalue(g, uv->v);
262 if (uv->v != &uv->u.value) /* open? */
325 UpVal *uv; local
326 for (uv = g->uvhead.u.l.next; uv !
[all...]
H A Dlstate.h192 struct UpVal uv; member in union:GCObject
204 #define gco2u(o) (&rawgco2u(o)->uv)
211 #define gco2uv(o) check_exp((o)->gch.tt == LUA_TUPVAL, &((o)->uv))
H A Dlobject.h159 #define uvalue(o) (&rawuvalue(o)->uv)
438 } uv; member in union:Udata
/external/clang/test/CXX/expr/expr.post/expr.const.cast/
H A Dp1-0x.cpp33 volatile unsigned uv; member in struct:A
43 unsigned &t3 = const_cast<unsigned&>(a.pred() ? a.ubf : a.uv); // expected-error {{const_cast from bit-field lvalue to reference type}}
/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;
/external/eigen/test/
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...]
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...]
/external/chromium_org/third_party/libwebp/dsp/
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/clang/test/Sema/
H A Dcompare.c317 int test9(int sv, unsigned uv, long slv) { argument
318 return sv == (uv ^= slv); // expected-warning {{comparison of integers of different signs: 'int' and 'unsigned int'}}
/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.);
/external/webp/src/dsp/
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/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/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/chromium_org/third_party/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/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/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/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/chromium_org/third_party/skia/src/effects/
H A DSkPerlinNoiseShader.cpp705 const char* uv = "uv"; local
788 noiseCode.appendf("\n\n\tvec2 %s;", uv);
796 noiseCode.appendf(".bgra;\n\t%s.x = ", uv);
808 noiseCode.appendf(".bgra;\n\t%s.y = ", uv);
814 noiseCode.appendf("\n\t%s.x = mix(%s.x, %s.y, %s.x);", ab, uv, uv, noiseSmooth);
824 noiseCode.appendf(".bgra;\n\t%s.y = ", uv);
836 noiseCode.appendf(".bgra;\n\t%s.x = ", uv);
841 noiseCode.appendf("\n\t%s.y = mix(%s.x, %s.y, %s.x);", ab, uv, u
[all...]
/external/chromium_org/third_party/mesa/src/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;

Completed in 756 milliseconds

12