HomeSort by relevance Sort by last modified time
    Searched refs:uv (Results 1 - 25 of 76) sorted by null

1 2 3 4

  /external/chromium_org/third_party/skia/third_party/lua/src/
lfunc.c 40 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->v = level; /* current value lives in the stack *
90 UpVal *uv; local
    [all...]
lfunc.h 28 LUAI_FUNC void luaF_freeupval (lua_State *L, UpVal *uv);
lstate.h 192 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))
  /external/eigen/test/
denseLM.cpp 30 VectorType model(const VectorType& uv, VectorType& x)
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)
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, half, half)
    [all...]
sparseLM.cpp 29 VectorType model(const VectorType& uv, VectorType& x)
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)
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, half, half)
    [all...]
  /device/asus/flo/camera/hdr/include/
morpho_image_data.h 25 void * uv; /**< UV??????|?C???^ */ member in struct:__anon2932
morpho_image_data_ex.h 27 int uv; member in struct:__anon2936
  /device/lge/hammerhead/camera/hdr/include/
morpho_image_data.h 25 void * uv; /**< UV??????|?C???^ */ member in struct:__anon3439
morpho_image_data_ex.h 27 int uv; member in struct:__anon3443
  /device/lge/mako/camera/hdr/include/
morpho_image_data.h 25 void * uv; /**< UV??????|?C???^ */ member in struct:__anon3759
morpho_image_data_ex.h 27 int uv; member in struct:__anon3763
  /frameworks/rs/java/tests/SampleTest/src/com/android/rs/sample/
sample.rs 36 float2 uv;
37 uv.x = (float)x / destX;
38 uv.y = (float)y / destY;
40 out->xyz = convert_uchar3(rsSample(sourceAlloc, allocSampler, uv * 2.0f).xyz * 255.0f);
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_hypotl.c 25 union IEEEl2bits uv; \
27 uv.e = v; \
28 h = uv.bits.manh; \
29 l = uv.bits.manl; \
102 union IEEEl2bits uv; local
103 uv.e = t1; uv.bits.manl = 0; t1 = uv.e;
109 union IEEEl2bits uv; local
110 uv.e = y1; uv.bits.manl = 0; y1 = uv.e
    [all...]
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardMultiUserSelectorView.java 80 KeyguardMultiUserAvatar uv = createAndAddUser(user); local
82 mActiveUserAvatar = uv;
84 uv.setActive(false, false, null);
116 KeyguardMultiUserAvatar uv = KeyguardMultiUserAvatar.fromXml( local
118 mUsersGrid.addView(uv);
119 return uv;
  /external/clang/test/CXX/expr/expr.post/expr.const.cast/
p1-0x.cpp 33 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/chromium_org/third_party/skia/src/gpu/
GrPathUtils.h 54 // A 2x3 matrix that goes from the 2d space coordinates to UV space where
65 * Applies the matrix to vertex positions to compute UV coords. This
73 * UV_OFFSET is the offset of the UV values within each vertex.
88 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/
GrPathUtils.h 54 // A 2x3 matrix that goes from the 2d space coordinates to UV space where
65 * Applies the matrix to vertex positions to compute UV coords. This
73 * UV_OFFSET is the offset of the UV values within each vertex.
88 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;
  /frameworks/rs/driver/runtime/
rs_sample.c 424 float uv, uint32_t lod) {
429 float pixelUV = uv * (float)(sourceW);
456 float uv, uint32_t lod) {
459 int32_t iPixel = (int32_t)(uv * (float)(sourceW));
470 float2 uv, uint32_t lod) {
477 float pixelU = uv.x * sourceW;
478 float pixelV = uv.y * sourceH;
518 float2 uv, uint32_t lod) {
525 int2 iPixel = convert_int2(uv * dimF);
534 rsSample(rs_allocation a, rs_sampler s, float uv, float lod)
    [all...]
  /external/chromium_org/third_party/libwebp/dsp/
upsampling.c 57 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; \
upsampling_neon.c 164 #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); \
yuv.h 273 static WEBP_INLINE int VP8ClipUV(int uv, int rounding) {
274 uv = (uv + rounding + (128 << (YUV_FIX + 2))) >> (YUV_FIX + 2);
275 return ((uv & ~0xff) == 0) ? uv : (uv < 0) ? 0 : 255;
  /external/eigen/demos/opengl/
camera.cpp 246 Vector3f Camera::unProject(const Vector2f& uv, float depth) const
249 return unProject(uv, depth, inv);
252 Vector3f Camera::unProject(const Vector2f& uv, float depth, const Matrix4f& invModelview) const
257 Vector3f a(2.*uv.x()/float(mVpWidth)-1., 2.*uv.y()/float(mVpHeight)-1., 1.);
  /external/webp/src/dsp/
upsampling.c 57 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; \
upsampling_neon.c 164 #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); \
yuv.h 273 static WEBP_INLINE int VP8ClipUV(int uv, int rounding) {
274 uv = (uv + rounding + (128 << (YUV_FIX + 2))) >> (YUV_FIX + 2);
275 return ((uv & ~0xff) == 0) ? uv : (uv < 0) ? 0 : 255;

Completed in 2212 milliseconds

1 2 3 4