/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
H A D | GCNILPSched.cpp | 111 unsigned Height = Succ.getSUnit()->getHeight(); in closestSucc() 136 int LHeight = (int)left->getHeight(); in BUCompareLatency() 137 int RHeight = (int)right->getHeight(); in BUCompareLatency() 180 if (!DisableSchedHeight && left->getHeight() != right->getHeight()) { in pickBest() 181 int spread = (int)left->getHeight() - (int)right->getHeight(); in pickBest() 183 return left->getHeight() > right->getHeight() ? right : left; in pickBest() 229 if (left->getHeight() ! in pickBest() [all...] |
/third_party/vk-gl-cts/framework/referencerenderer/ |
H A D | rrMultisamplePixelBufferAccess.cpp | 45 tcu::IVec3(m_access.getHeight(), m_access.getDepth(), 1), in toSinglesampleAccess() 55 tcu::IVec3(1, original.getWidth(), original.getHeight()), in fromSinglesampleAccess() 85 tcu::IVec3(m_access.getHeight(), m_access.getDepth(), 1), in toSinglesampleAccess() 95 tcu::IVec3(1, original.getWidth(), original.getHeight()), in fromSinglesampleAccess() 117 DE_ASSERT(dst.getWidth() == src.raw().getHeight()); in resolveMultisampleColorBuffer() 118 DE_ASSERT(dst.getHeight() == src.raw().getDepth()); in resolveMultisampleColorBuffer() 129 for (int y = 0; y < dst.getHeight(); y++) in resolveMultisampleColorBuffer() 143 DE_ASSERT(dst.getWidth() == src.raw().getHeight()); in resolveMultisampleDepthBuffer() 144 DE_ASSERT(dst.getHeight() == src.raw().getDepth()); in resolveMultisampleDepthBuffer() 158 for (int y = 0; y < dst.getHeight(); in resolveMultisampleDepthBuffer() [all...] |
/third_party/vk-gl-cts/framework/opengl/ |
H A D | gluPixelTransfer.cpp | 57 int height = dst.getHeight(); in readPixels() 76 int height = src.getHeight(); in texImage2D() 92 TCU_CHECK_INTERNAL(src.getSlicePitch() == src.getRowPitch()*src.getHeight()); in texImage3D() 95 int height = src.getHeight(); in texImage3D() 115 int height = src.getHeight(); in texSubImage2D() 131 TCU_CHECK_INTERNAL(src.getSlicePitch() == src.getRowPitch()*src.getHeight()); in texSubImage3D() 134 int height = src.getHeight(); in texSubImage3D()
|
H A D | gluTexture.cpp | 133 , m_refTexture (getUncompressedFormat(levels[0].getFormat()), levels[0].getWidth(), levels[0].getHeight(), isES2Context(context.getType())) in Texture2D() 181 gl.texImage2D(GL_TEXTURE_2D, levelNdx, m_format, access.getWidth(), access.getHeight(), 0 /* border */, transferFormat.format, transferFormat.dataType, access.getDataPtr()); in upload() 203 level.getHeight() == refLevelAccess.getHeight()); in loadCompressed() 208 level.getWidth(), level.getHeight(), 0 /* border */, level.getDataSize(), level.getData()); in loadCompressed() 233 Texture2D* texture = new Texture2D(context, isRGBA ? GL_RGBA : GL_RGB, GL_UNSIGNED_BYTE, level.getWidth(), level.getHeight()); in create() 306 gl.texStorage2D(GL_TEXTURE_2D, m_refTexture.getNumLevels(), m_format, m_refTexture.getWidth(), m_refTexture.getHeight()); in upload() 314 gl.texSubImage2D(GL_TEXTURE_2D, levelNdx, 0, 0, access.getWidth(), access.getHeight(), transferFormat.format, transferFormat.dataType, access.getDataPtr()); in upload() 331 TCU_CHECK_INTERNAL(levels[0].getWidth() == levels[0].getHeight()); in TextureCube() 402 gl.texImage2D(getGLCubeFace((tcu::CubeFace)face), levelNdx, m_format, access.getWidth(), access.getHeight(), in upload() [all...] |
H A D | gluTextureTestUtil.cpp | 400 tcu::IVec2 dstSize = tcu::IVec2(dst.getWidth(), dst.getHeight()); in sampleTextureNonProjected() 408 for (int y = 0; y < dst.getHeight(); y++) in sampleTextureNonProjected() 412 float yf = ((float)y + 0.5f) / (float)dst.getHeight(); in sampleTextureNonProjected() 436 tcu::IVec2 dstSize = tcu::IVec2(dst.getWidth(), dst.getHeight()); in sampleTextureNonProjected() 437 tcu::IVec2 srcSize = tcu::IVec2(src.getWidth(), src.getHeight()); in sampleTextureNonProjected() 445 for (int y = 0; y < dst.getHeight(); y++) in sampleTextureNonProjected() 449 float yf = ((float)y + 0.5f) / (float)dst.getHeight(); in sampleTextureNonProjected() 482 float dstH = (float)dst.getHeight(); in sampleTextureProjected() 490 for (int py = 0; py < dst.getHeight(); py++) in sampleTextureProjected() 506 float lod = computeProjectedTriLod(params.lodMode, triU[triNdx], triW[triNdx], triWx, triWy, (float)dst.getWidth(), (float)dst.getHeight()) in sampleTextureProjected() [all...] |
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/ |
H A D | Renderbuffer.cpp | 120 GLsizei RenderbufferTexture2D::getHeight() const in getHeight() function in es2::RenderbufferTexture2D 122 return mTexture2D->getHeight(GL_TEXTURE_2D, mLevel); in getHeight() 183 GLsizei RenderbufferTexture2DRect::getHeight() const in getHeight() function in es2::RenderbufferTexture2DRect 185 return mTexture2DRect->getHeight(GL_TEXTURE_RECTANGLE_ARB, 0); in getHeight() 246 GLsizei RenderbufferTexture3D::getHeight() const in getHeight() function in es2::RenderbufferTexture3D 248 return mTexture3D->getHeight(mTexture3D->getTarget(), mLevel); in getHeight() 314 GLsizei RenderbufferTextureCubeMap::getHeight() const in getHeight() function in es2::RenderbufferTextureCubeMap 316 return mTextureCubeMap->getHeight(mTarget, mLevel); in getHeight() 382 GLsizei Renderbuffer::getHeight() const in getHeight() function in es2::Renderbuffer 384 return mInstance->getHeight(); in getHeight() 467 GLsizei RenderbufferStorage::getHeight() const getHeight() function in es2::RenderbufferStorage [all...] |
H A D | Texture.cpp | 349 image->loadImageData(0, 0, 0, image->getWidth(), image->getHeight(), depth, format, type, unpackParameters, pixels); in setImage() 358 image->loadCompressedData(0, 0, 0, image->getWidth(), image->getHeight(), depth, imageSize, pixels); in setCompressedImage() 504 GLsizei Texture2D::getHeight(GLenum target, GLint level) const in getHeight() function in es2::Texture2D 507 return image[level] ? image[level]->getHeight() : 0; in getHeight() 646 sourceRect.clip(0, 0, renderTarget->getWidth(), renderTarget->getHeight()); in copyImage() 661 if(xoffset + width > image[level]->getWidth() || yoffset + height > image[level]->getHeight() || zoffset != 0) in copySubImage() 677 sourceRect.clip(0, 0, renderTarget->getWidth(), renderTarget->getHeight()); in copySubImage() 710 GLsizei height = image[mBaseLevel]->getHeight(); in isBaseLevelDefined() 753 GLsizei height = image[mBaseLevel]->getHeight(); in isMipmapComplete() 777 if(image[level]->getHeight() ! in isMipmapComplete() 1004 GLsizei TextureCubeMap::getHeight(GLenum target, GLint level) const getHeight() function in TextureCubeMap [all...] |
H A D | Renderbuffer.h | 54 virtual GLsizei getHeight() const = 0; 85 GLsizei getHeight() const override; 112 GLsizei getHeight() const override; 135 GLsizei getHeight() const override; 163 GLsizei getHeight() const override; 191 GLsizei getHeight() const override; 224 GLsizei getHeight() const;
|
H A D | Framebuffer.cpp | 343 if(colorbuffer->getWidth() == 0 || colorbuffer->getHeight() == 0 || (colorbuffer->getDepth() <= mColorbufferLayer[i])) in completeness() 378 height = colorbuffer->getHeight(); in completeness() 389 height = std::min(height, colorbuffer->getHeight()); in completeness() 406 if(depthbuffer->getWidth() == 0 || depthbuffer->getHeight() == 0 || (depthbuffer->getDepth() <= mDepthbufferLayer)) in completeness() 434 height = depthbuffer->getHeight(); in completeness() 445 height = std::min(height, depthbuffer->getHeight()); in completeness() 458 if(stencilbuffer->getWidth() == 0 || stencilbuffer->getHeight() == 0 || (stencilbuffer->getDepth() <= mStencilbufferLayer)) in completeness() 488 height = stencilbuffer->getHeight(); in completeness() 499 height = std::min(height, stencilbuffer->getHeight()); in completeness()
|
/third_party/vk-gl-cts/framework/common/ |
H A D | tcuFuzzyImageCompare.cpp | 127 int h = src.getHeight(); in bilinearSample() 164 DE_ASSERT(dst.getWidth() == src.getWidth() && dst.getHeight() == src.getHeight()); in separableConvolve() 166 TextureLevel tmp (dst.getFormat(), dst.getHeight(), dst.getWidth()); in separableConvolve() 174 for (int j = 0; j < src.getHeight(); j++) in separableConvolve() 193 for (int j = 0; j < src.getHeight(); j++) in separableConvolve() 239 if (!deInBounds32(dx, 0, surface.getWidth()) || !deInBounds32(dy, 0, surface.getHeight())) in distSquaredToNeighbor() 275 DE_ASSERT(ref.getWidth() == cmp.getWidth() && ref.getHeight() == cmp.getHeight()); in fuzzyCompare() 276 DE_ASSERT(errorMask.getWidth() == ref.getWidth() && errorMask.getHeight() in fuzzyCompare() [all...] |
H A D | tcuBilinearImageCompare.cpp | 91 deUint32 y1 = y0+1; //de::min(y0+1, (deUint32)(access.getHeight()-1)); in bilinearSampleRGBA8() 94 DE_ASSERT(y1 < (deUint32)access.getHeight()); in bilinearSampleRGBA8() 125 const deUint32 y2 = (deUint32)de::min(y+1, reference.getHeight()-1); 180 !de::inBounds(v, 0, (reference.getHeight()-1)<<NUM_SUBPIXEL_BITS)) 201 for (int y = 0; y < reference.getHeight(); y++) 222 reference.getHeight() == result.getHeight() && 226 reference.getHeight() == errorMask.getHeight() &&
|
/third_party/vk-gl-cts/modules/gles2/functional/ |
H A D | es2fShaderBuiltinVarTests.cpp | 283 const int height = m_context.getRenderTarget().getHeight(); in iterate() 333 for (int y = 0; y < refImg.getHeight(); y++) in iterate() 338 const float yf = (float(refImg.getHeight()-y-1)+.5f) / float(refImg.getHeight()); in iterate() 377 const int height = m_context.getRenderTarget().getHeight(); in iterate() 425 for (int y = 0; y < refImg.getHeight(); y++) in iterate() 430 const float yf = (float(refImg.getHeight()-y-1)+.5f) / float(refImg.getHeight()); in iterate() 464 const int height = de::min(256, m_context.getRenderTarget().getHeight()); in iterate() 515 const int viewportY = rnd.getInt(0, m_context.getRenderTarget().getHeight() in iterate() [all...] |
H A D | es2fDitheringTests.cpp | 246 const int viewportHei = de::min(m_renderCtx.getRenderTarget().getHeight(), maxViewportHei); in drawAndCheckGradient() 248 const int viewportY = rnd.getInt(0, m_renderCtx.getRenderTarget().getHeight() - viewportHei); in drawAndCheckGradient() 285 for (int y = 0; y < renderedImg.getHeight(); y++) in drawAndCheckGradient() 289 const float inputF = ((float)(isVerticallyIncreasing ? y : x) + 0.5f) / (float)(isVerticallyIncreasing ? renderedImg.getHeight() : renderedImg.getWidth()); in drawAndCheckGradient() 318 const int increasingDirectionSize = isVerticallyIncreasing ? renderedImg.getHeight() : renderedImg.getWidth(); in drawAndCheckGradient() 319 const int constantDirectionSize = isVerticallyIncreasing ? renderedImg.getWidth() : renderedImg.getHeight(); in drawAndCheckGradient() 365 const int viewportHei = de::min(m_renderCtx.getRenderTarget().getHeight(), maxViewportHei); in drawAndCheckUnicoloredQuad() 367 const int viewportY = rnd.getInt(0, m_renderCtx.getRenderTarget().getHeight() - viewportHei); in drawAndCheckUnicoloredQuad() 400 for (int y = 0; y < renderedImg.getHeight(); y++) in drawAndCheckUnicoloredQuad() 432 for (int y = 0; y < renderedImg.getHeight(); in drawAndCheckUnicoloredQuad() [all...] |
H A D | es2fClipControlTests.cpp | 140 for (int y = 0; y < result.getHeight() && depthOk; y++) in fuzzyDepthCompare() 176 glw::GLuint viewportH = renderTarget.getHeight(); in init() 504 glw::GLsizei viewportH = renderTarget.getHeight(); in ValidateFramebuffer() 510 for (int y = 0; y < renderedFrame.getHeight(); y++) in ValidateFramebuffer() 512 float yCoord = (float)(y) / (float)renderedFrame.getHeight(); in ValidateFramebuffer() 706 glw::GLsizei viewportH = renderTarget.getHeight(); in ValidateFramebuffer() 711 for (int y = 0; y < renderedColorFrame.getHeight(); y++) in ValidateFramebuffer() 786 glw::GLsizei windowH = renderTarget.getHeight(); 814 glw::GLsizei windowH = renderTarget.getHeight(); 914 glw::GLsizei windowH = renderTarget.getHeight(); in ValidateFramebuffer() [all...] |
/third_party/vk-gl-cts/external/openglcts/modules/glesext/texture_cube_map_array/ |
H A D | esextcTextureCubeMapArrayStencilAttachments.cpp | 510 m_cube_map_array_data[test_index].getHeight(), /* height */ in createImmutableCubeArrayColor() 530 m_cube_map_array_data[test_index].getHeight(), /* height */ in createImmutableCubeArrayStencil() 541 m_cube_map_array_data[test_index].getHeight(), /* height */ in createImmutableCubeArrayStencil() 563 m_cube_map_array_data[test_index].getHeight(), /* height */ in createMutableCubeArrayColor() 587 m_cube_map_array_data[test_index].getHeight(), /* height */ in createMutableCubeArrayStencil() 612 for (glw::GLuint y = m_cube_map_array_data[test_index].getHeight() / 2; in fillStencilData() 613 y < m_cube_map_array_data[test_index].getHeight(); y++) in fillStencilData() 616 m_cube_map_array_data[test_index].getHeight() * m_n_components * in fillStencilData() 619 glw::GLuint y_position_in_array = m_cube_map_array_data[test_index].getHeight() * m_n_components * y; in fillStencilData() 799 gl.viewport(0, 0, m_cube_map_array_data[test_index].getWidth(), m_cube_map_array_data[test_index].getHeight()); in initTestIteration() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/ |
H A D | SystemZMachineScheduler.h | 80 if (lhs->getHeight() > rhs->getHeight()) in operator ()() 82 else if (lhs->getHeight() < rhs->getHeight()) in operator ()()
|
H A D | SystemZMachineScheduler.cpp | 188 dbgs() << " Height:" << c.SU->getHeight(); dbgs() << "\n";); in pickNode() 229 if (SU->getHeight() > other.SU->getHeight()) in operator <() 231 if (SU->getHeight() < other.SU->getHeight()) in operator <()
|
/third_party/vk-gl-cts/modules/gles3/functional/ |
H A D | es3fDitheringTests.cpp | 252 const int viewportHei = de::min(m_renderCtx.getRenderTarget().getHeight(), maxViewportHei); in drawAndCheckGradient() 254 const int viewportY = rnd.getInt(0, m_renderCtx.getRenderTarget().getHeight() - viewportHei); in drawAndCheckGradient() 291 for (int y = 0; y < renderedImg.getHeight(); y++) in drawAndCheckGradient() 295 const float inputF = ((float)(isVerticallyIncreasing ? y : x) + 0.5f) / (float)(isVerticallyIncreasing ? renderedImg.getHeight() : renderedImg.getWidth()); in drawAndCheckGradient() 297 const bool increaseTol = ((renderedImg.getWidth() < 300) || (renderedImg.getHeight() < 300)) ? true : false; in drawAndCheckGradient() 325 const int increasingDirectionSize = isVerticallyIncreasing ? renderedImg.getHeight() : renderedImg.getWidth(); in drawAndCheckGradient() 326 const int constantDirectionSize = isVerticallyIncreasing ? renderedImg.getWidth() : renderedImg.getHeight(); in drawAndCheckGradient() 370 const int viewportHei = de::min(m_renderCtx.getRenderTarget().getHeight(), maxViewportHei); in drawAndCheckUnicoloredQuad() 372 const int viewportY = rnd.getInt(0, m_renderCtx.getRenderTarget().getHeight() - viewportHei); in drawAndCheckUnicoloredQuad() 405 for (int y = 0; y < renderedImg.getHeight(); in drawAndCheckUnicoloredQuad() [all...] |
H A D | es3fFboInvalidateTests.cpp | 196 readPixels(dst, 0, 0, getWidth(), getHeight()); in render() 232 glTexImage2D (GL_TEXTURE_2D, 0, GL_RGBA8, getWidth(), getHeight(), 0, GL_RGBA, GL_UNSIGNED_BYTE, DE_NULL); in render() 291 readPixels(dst, 0, 0, getWidth(), getHeight()); in render() 310 int invalidateY = getHeight() / 4; in render() 312 int invalidateH = getHeight() / 2; in render() 345 readPixels(dst, 0, 0, getWidth(), getHeight()); in render() 374 int invalidateY = getHeight() / 4; in render() 376 int invalidateH = getHeight() / 2; in render() 390 glTexImage2D (GL_TEXTURE_2D, 0, GL_RGBA8, getWidth(), getHeight(), 0, GL_RGBA, GL_UNSIGNED_BYTE, DE_NULL); in render() 435 readPixels(dst, 0, 0, getWidth(), getHeight()); in render() [all...] |
H A D | es3fShaderBuiltinVarTests.cpp | 298 const int height = m_context.getRenderTarget().getHeight(); in iterate() 351 for (int y = 0; y < refImg.getHeight(); y++) in iterate() 356 const float yf = (float(refImg.getHeight()-y-1)+.5f) / float(refImg.getHeight()); in iterate() 395 const int height = m_context.getRenderTarget().getHeight(); in iterate() 446 for (int y = 0; y < refImg.getHeight(); y++) in iterate() 451 const float yf = (float(refImg.getHeight()-y-1)+.5f) / float(refImg.getHeight()); in iterate() 485 const int height = de::min(256, m_context.getRenderTarget().getHeight()); in iterate() 539 const int viewportY = rnd.getInt(0, m_context.getRenderTarget().getHeight() in iterate() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
H A D | ScheduleDAGRRList.cpp | 414 PredSU->setHeightToAtLeast(SU->getHeight() + PredEdge->getLatency()); in ReleasePred() 422 unsigned Height = PredSU->getHeight(); in ReleasePred() 612 unsigned ReadyCycle = PendingQueue[i]->getHeight(); in ReleasePending() 662 unsigned ReadyCycle = SU->getHeight(); in AdvancePastStalls() 741 if (CurCycle < SU->getHeight()) in ScheduleNodeBottomUp() 742 LLVM_DEBUG(dbgs() << " Height [" << SU->getHeight() in ScheduleNodeBottomUp() 836 LLVM_DEBUG(dbgs() << "*** Unscheduling [" << SU->getHeight() << "]: "); in UnscheduleNodeBottomUp() 902 Succ2.getSUnit()->getHeight() < LiveRegGens[Reg]->getHeight()) in UnscheduleNodeBottomUp() 908 if (SU->getHeight() < MinAvailableCycl in UnscheduleNodeBottomUp() [all...] |
/third_party/vk-gl-cts/modules/egl/ |
H A D | teglImageFormatTests.cpp | 484 gl.viewport(0, 0, reference.getWidth(), reference.getHeight()); in invokeGLES() 536 tcu::Surface refSurface (reference.getWidth(), reference.getHeight()); in invokeGLES() 537 tcu::Surface screen (reference.getWidth(), reference.getHeight()); in invokeGLES() 538 GLU_CHECK_GLW_CALL(gl, readPixels(0, 0, screen.getWidth(), screen.getHeight(), GL_RGBA, GL_UNSIGNED_BYTE, screen.getAccess().getDataPtr())); in invokeGLES() 556 gl.viewport(0, 0, reference.getWidth(), reference.getHeight()); in invokeGLES() 574 reference.getHeight(), // Height in invokeGLES() 642 tcu::Surface refSurface (reference.getWidth(), reference.getHeight()); in invokeGLES() 643 tcu::Surface screen (reference.getWidth(), reference.getHeight()); in invokeGLES() 644 GLU_CHECK_GLW_CALL(gl, readPixels(0, 0, screen.getWidth(), screen.getHeight(), GL_RGBA, GL_UNSIGNED_BYTE, screen.getAccess().getDataPtr())); in invokeGLES() 663 gl.viewport(0, 0, reference.getWidth(), reference.getHeight()); in invokeGLES() [all...] |
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
H A D | gl4cClipControlTests.cpp | 152 for (int y = 0; y < result.getHeight() && depthOk; y++) in fuzzyDepthCompare() 188 glw::GLuint viewportH = renderTarget.getHeight(); in init() 512 glw::GLuint viewportH = renderTarget.getHeight(); in ValidateFramebuffer() 518 for (int y = 0; y < renderedFrame.getHeight(); y++) in ValidateFramebuffer() 520 float yCoord = (float)(y) / (float)renderedFrame.getHeight(); in ValidateFramebuffer() 697 glw::GLuint viewportH = renderTarget.getHeight(); in ValidateFramebuffer() 708 2.0f / (float)renderedColorFrame.getHeight() + 2.0f / (float)renderedColorFrame.getWidth(); in ValidateFramebuffer() 710 for (int y = 0; y < renderedColorFrame.getHeight(); y++) in ValidateFramebuffer() 712 float yCoord = ((float)(y) + 0.5f) / (float)renderedColorFrame.getHeight(); in ValidateFramebuffer() 886 glw::GLuint viewportH = renderTarget.getHeight(); in ValidateFramebuffer() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
H A D | ImmutableSet.h | 65 /// getHeight - Returns the height of the tree. A tree with no subtrees 67 unsigned getHeight() const { return height; } in getHeight() function in llvm::ImutAVLTree 197 assert(getHeight() == ( HL > HR ? HL : HR ) + 1 in validateTree() 213 return getHeight(); in validateTree() 426 unsigned getHeight(TreeTy* T) const { return T ? T->getHeight() : 0; } in getHeight() function in llvm::ImutAVLFactory 435 unsigned hl = getHeight(L); in incrementHeight() 436 unsigned hr = getHeight(R); in incrementHeight() 493 unsigned hl = getHeight(L); in balanceTree() 494 unsigned hr = getHeight( in balanceTree() 1092 unsigned getHeight() const { return Root ? Root->getHeight() : 0; } getHeight() function in llvm::ImmutableSet 1205 unsigned getHeight() const { return Root ? Root->getHeight() : 0; } getHeight() function in llvm::ImmutableSetRef [all...] |
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/ |
H A D | DemoTextBox.java | 31 public int getHeight() { in getHeight() method in DemoTextBox 32 return (nbreaks + 1) * metrics.getHeight(); in getHeight() 45 y += metrics.getHeight(); in draw()
|