Home
last modified time | relevance | path

Searched refs:dstH (Results 1 – 12 of 12) sorted by relevance

/external/skia/src/effects/
DSkTestImageFilters.cpp33 int dstH = SkScalarRoundToInt(src.height() * scale); in onFilterImage() local
37 if (dstH < 1) { in onFilterImage()
38 dstH = 1; in onFilterImage()
45 SkBaseDevice* dev = proxy->createDevice(dstW, dstH); in onFilterImage()
/external/deqp/modules/glshared/
DglsTextureTestUtil.cpp509 float dstH = (float)dst.getHeight(); in sampleTextureProjected() local
524 float ny = wy / dstH; in sampleTextureProjected()
528 float triWy = triNdx ? dstH - wy : wy; in sampleTextureProjected()
549 float dstH = (float)dst.getHeight(); in sampleTextureProjected() local
567 float ny = wy / dstH; in sampleTextureProjected()
571 float triWy = triNdx ? dstH - wy : wy; in sampleTextureProjected()
655 const float dstH = float(dstSize.y()); in sampleTextureCube() local
673 const float ny = wy / dstH; in sampleTextureCube()
685 const tcu::Vec3 coordDy (triDerivateY(triS[triNdx], triW[triNdx], wy, dstH, triNx), in sampleTextureCube()
686 triDerivateY(triT[triNdx], triW[triNdx], wy, dstH, triNx), in sampleTextureCube()
[all …]
/external/mesa3d/src/gallium/state_trackers/xorg/
Dxorg_renderer.c288 float dstX, float dstY, float dstW, float dstH, in setup_vertex_data_yuv() argument
310 add_vertex_1tex(r, dstX + dstW, dstY + dstH, in setup_vertex_data_yuv()
313 add_vertex_1tex(r, dstX, dstY + dstH, in setup_vertex_data_yuv()
/external/mesa3d/src/gallium/state_trackers/xa/
Dxa_renderer.c294 float dstW, float dstH, struct xa_surface *srf[]) in setup_vertex_data_yuv() argument
316 add_vertex_1tex(r, dstX + dstW, dstY + dstH, s1, t1); in setup_vertex_data_yuv()
318 add_vertex_1tex(r, dstX, dstY + dstH, s0, t1); in setup_vertex_data_yuv()
/external/deqp/modules/gles3/accuracy/
Des3aVaryingInterpolationTests.cpp69 float dstH = (float)dst.getHeight(); in renderReference() local
83 float ny = wy / dstH; in renderReference()
/external/deqp/modules/gles2/accuracy/
Des2aVaryingInterpolationTests.cpp66 float dstH = (float)dst.getHeight(); in renderReference() local
80 float ny = wy / dstH; in renderReference()
/external/v8/src/arm/
Dassembler-arm.cc1583 Register dstH, in smlal() argument
1588 DCHECK(!dstL.is(pc) && !dstH.is(pc) && !src1.is(pc) && !src2.is(pc)); in smlal()
1589 DCHECK(!dstL.is(dstH)); in smlal()
1590 emit(cond | B23 | B22 | A | s | dstH.code()*B16 | dstL.code()*B12 | in smlal()
1596 Register dstH, in smull() argument
1601 DCHECK(!dstL.is(pc) && !dstH.is(pc) && !src1.is(pc) && !src2.is(pc)); in smull()
1602 DCHECK(!dstL.is(dstH)); in smull()
1603 emit(cond | B23 | B22 | s | dstH.code()*B16 | dstL.code()*B12 | in smull()
1609 Register dstH, in umlal() argument
1614 DCHECK(!dstL.is(pc) && !dstH.is(pc) && !src1.is(pc) && !src2.is(pc)); in umlal()
[all …]
Dassembler-arm.h973 void smlal(Register dstL, Register dstH, Register src1, Register src2,
976 void smull(Register dstL, Register dstH, Register src1, Register src2,
979 void umlal(Register dstL, Register dstH, Register src1, Register src2,
982 void umull(Register dstL, Register dstH, Register src1, Register src2,
/external/skia/src/core/
DSkScalerContext.cpp379 int dstH = srcH; in generateMask() local
406 clip.setRect(SkIRect::MakeWH(dstW, dstH)); in generateMask()
408 const SkImageInfo info = SkImageInfo::MakeA8(dstW, dstH); in generateMask()
/external/jmonkeyengine/engine/src/lwjgl/com/jme3/renderer/lwjgl/
DLwjglRenderer.java1183 int dstH = 0; in copyFrameBuffer() local
1210 dstH = dst.getHeight(); in copyFrameBuffer()
1217 0, 0, dstW, dstH, mask, in copyFrameBuffer()
/external/valgrind/VEX/priv/
Dhost_arm64_isel.c3381 HReg dstH = newVRegD(env); in iselF16Expr_wrk() local
3382 addInstr(env, ARM64Instr_VCvtHS(False/*!hToS*/, dstH, srcS)); in iselF16Expr_wrk()
3383 return dstH; in iselF16Expr_wrk()
3388 HReg dstH = newVRegD(env); in iselF16Expr_wrk() local
3389 addInstr(env, ARM64Instr_VCvtHD(False/*!hToD*/, dstH, srcD)); in iselF16Expr_wrk()
3390 return dstH; in iselF16Expr_wrk()
/external/deqp/framework/opengl/simplereference/
DsglrReferenceContext.cpp3120 int dstH = de::abs(dstY1-dstY0); in blitFramebuffer() local
3121 bool scale = srcW != dstW || srcH != dstH; in blitFramebuffer()
3127 IVec4 dstRect = IVec4(dstOriginX, dstOriginY, dstW, dstH); in blitFramebuffer()
3143 RC_IF_ERROR(srcW != dstW || srcH != dstH, GL_INVALID_OPERATION, RC_RET_VOID); in blitFramebuffer()