Home
last modified time | relevance | path

Searched refs:newHeight (Results 1 – 25 of 33) sorted by relevance

12

/external/llvm-project/clang/www/analyzer/scripts/
Dexpandcollapse.js143 var newHeight;
149 newHeight = CLIP_HEIGHT;
154 newHeight = cellInfo.height;
163 expandableDiv.style.height = newHeight + "px";
168 if (state.height > newHeight) {
170 data.style.height = (newHeight - EXPANDER_HEIGHT) + "px";
188 window.scrollBy(0, newHeight - cellInfo.height);
/external/clang/www/analyzer/scripts/
Dexpandcollapse.js143 var newHeight;
149 newHeight = CLIP_HEIGHT;
154 newHeight = cellInfo.height;
163 expandableDiv.style.height = newHeight + "px";
168 if (state.height > newHeight) {
170 data.style.height = (newHeight - EXPANDER_HEIGHT) + "px";
188 window.scrollBy(0, newHeight - cellInfo.height);
/external/angle/samples/WindowTest/
DWindowTest.cpp45 int newHeight = height; in main() local
58 newHeight = std::max(0, height + (event.Key.Shift ? -20 : 20)); in main()
101 if (newWidth != width || newHeight != height) in main()
104 height = newHeight; in main()
/external/webrtc/sdk/android/src/java/org/webrtc/
DAndroidVideoDecoder.java358 private VideoCodecStatus reinitDecode(int newWidth, int newHeight) { in reinitDecode() argument
364 return initDecodeInternal(newWidth, newHeight); in reinitDecode()
582 final int newHeight;
589 newHeight = 1 + format.getInteger(MEDIA_FORMAT_KEY_CROP_BOTTOM)
593 newHeight = format.getInteger(MediaFormat.KEY_HEIGHT);
597 if (hasDecodedFirstFrame && (width != newWidth || height != newHeight)) {
599 + height + ". New " + newWidth + "*" + newHeight));
603 height = newHeight;
DHardwareVideoEncoder.java486 private VideoCodecStatus resetCodec(int newWidth, int newHeight, boolean newUseSurfaceMode) { in resetCodec() argument
493 height = newHeight; in resetCodec()
/external/perfetto/ui/src/frontend/
Ddetails_panel.ts99 const newHeight = constant
101 this.isClosed = newHeight <= DRAG_HANDLE_HEIGHT_PX;
102 this.isFullscreen = newHeight >= this.fullscreenHeight;
103 this.resize(newHeight);
/external/s2-geometry-library-java/src/com/google/common/geometry/
DS2Cap.java210 double newHeight = Math.max(height, ROUND_UP * 0.5 * dist2); in addPoint() local
211 return new S2Cap(axis, newHeight); in addPoint()
229 double newHeight = Math.max(height, ROUND_UP * 2 * d * d); in addCap() local
230 return new S2Cap(axis, newHeight); in addCap()
/external/webrtc/sdk/android/api/org/webrtc/
DTextureBufferImpl.java173 Matrix transformMatrix, int newWidth, int newHeight) { in applyTransformMatrix() argument
175 /* unscaledHeight= */ newHeight, /* scaledWidth= */ newWidth, in applyTransformMatrix()
176 /* scaledHeight= */ newHeight); in applyTransformMatrix()
/external/tensorflow/tensorflow/lite/java/ovic/src/main/java/org/tensorflow/ovic/
DOvicClassifierBenchmarker.java136 int newHeight = Math.round(height - stHeight * 2); in convertBitmapToInput() local
137 bitmap = Bitmap.createBitmap(bitmap, stWidth, stHeight, newWidth, newHeight); in convertBitmapToInput()
/external/tflite-support/tensorflow_lite_support/java/src/java/org/tensorflow/lite/support/image/
DImageProcessor.java77 int newHeight = imageOperator.getOutputImageHeight(currentHeight, currentWidth); in inverseTransform() local
79 currentHeight = newHeight; in inverseTransform()
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
DTransformationUtils.java269 final int newHeight = Math.round(newRect.height()); in rotateImageExif() local
271 Bitmap result = pool.get(newWidth, newHeight, toOrient.getConfig()); in rotateImageExif()
273 result = Bitmap.createBitmap(newWidth, newHeight, toOrient.getConfig()); in rotateImageExif()
/external/oboe/samples/drumthumper/src/main/java/com/plausibleaudio/drumthumper/
DTriggerPad.kt115 val newHeight = (textSizePixels.toInt() * 2) + padTop + padBottom in onMeasure() constant
116 height = minOf(height, newHeight) } in onMeasure()
/external/deqp/framework/egl/
DegluGLContextFactory.cpp568 int newHeight = 0; in postIterate() local
571 egl.querySurface(m_eglDisplay, m_eglSurface, EGL_HEIGHT, &newHeight); in postIterate()
575 newHeight != m_glRenderTarget.getHeight()) in postIterate()
578 m_glRenderTarget.getWidth(), m_glRenderTarget.getHeight(), newWidth, newHeight); in postIterate()
580 m_glRenderTarget = tcu::RenderTarget(newWidth, newHeight, in postIterate()
/external/skqp/include/core/
DSkImageInfo.h439 SkImageInfo makeWH(int newWidth, int newHeight) const { in makeWH()
440 return Make(newWidth, newHeight, fColorType, fAlphaType, fColorSpace); in makeWH()
/external/angle/src/libANGLE/renderer/gl/wgl/
DDXGISwapChainWindowSurfaceWGL.cpp350 size_t newHeight = rect.bottom - rect.top; in checkForResize() local
351 if (newWidth != mWidth || newHeight != mHeight) in checkForResize()
354 mHeight = newHeight; in checkForResize()
/external/skia/include/core/
DSkImageInfo.h531 SkImageInfo makeWH(int newWidth, int newHeight) const { in makeWH()
532 return Make({newWidth, newHeight}, fColorInfo); in makeWH()
/external/deqp/modules/egl/
DteglResizeTests.cpp280 const int newHeight = newSurface.getHeight(); in compareCorners() local
282 const int minHeight = de::min(oldHeight, newHeight); in compareCorners()
292 const int newY = yCorner == 0 ? 0 : newHeight - minHeight; in compareCorners()
/external/skqp/src/image/
DSkImage_GpuYUVA.cpp209 int newHeight = SkTMin(static_cast<int>(yuvaPixmaps[i].height() * scale), in MakeFromYUVAPixmaps() local
211 SkImageInfo info = yuvaPixmaps[i].info().makeWH(newWidth, newHeight); in MakeFromYUVAPixmaps()
DSkImage_Gpu.cpp517 int newHeight = SkTMin(static_cast<int>(originalPixmap.height() * scale), maxTextureSize); in MakeCrossContextFromPixmap() local
518 SkImageInfo info = originalPixmap.info().makeWH(newWidth, newHeight); in MakeCrossContextFromPixmap()
/external/mesa3d/include/HaikuGL/
DGLView.h69 virtual void FrameResized(float newWidth, float newHeight);
/external/deqp/modules/gles3/functional/
Des3fFboRenderTest.cpp1134 int newHeight = 32; in render() local
1175 context.texImage2D(GL_TEXTURE_2D, 0, fbo.getConfig().colorFormat, newWidth, newHeight); in render()
1180 context.renderbufferStorage(GL_RENDERBUFFER, fbo.getConfig().colorFormat, newWidth, newHeight); in render()
1193 context.texImage2D(GL_TEXTURE_2D, 0, fbo.getConfig().depthStencilFormat, newWidth, newHeight); in render()
1198 …text.renderbufferStorage(GL_RENDERBUFFER, fbo.getConfig().depthStencilFormat, newWidth, newHeight); in render()
1207 context.viewport(0, 0, newWidth, newHeight); in render()
1244 …readPixels(context, dst, 0, 0, newWidth, newHeight, colorFormat, fboRangeInfo.lookupScale, fboRang… in render()
/external/skqp/src/core/
DSkImageFilter.cpp349 int newWidth, int newHeight, int offX, int offY) { in pad_image() argument
366 sk_sp<SkSpecialSurface> surf(src->makeSurface(outProps, SkISize::Make(newWidth, newHeight))); in pad_image()
/external/mesa3d/src/amd/addrlib/src/r800/
Dsiaddrlib.cpp1307 UINT_32 newHeight; in HwlComputeXmaskAddrFromCoord() local
1329 &newHeight, in HwlComputeXmaskAddrFromCoord()
1350 &newHeight, in HwlComputeXmaskAddrFromCoord()
1360 const UINT_32 heightInTile = newHeight / MicroTileWidth; in HwlComputeXmaskAddrFromCoord()
1465 UINT_32 newHeight; in HwlComputeXmaskCoordFromAddr() local
1489 &newHeight, in HwlComputeXmaskCoordFromAddr()
1509 &newHeight, in HwlComputeXmaskCoordFromAddr()
1517 const UINT_32 heightInTile = newHeight / MicroTileWidth; in HwlComputeXmaskCoordFromAddr()
/external/deqp/modules/gles2/functional/
Des2fFboRenderTest.cpp1746 int newHeight = 32; in render() local
1753 context.texImage2D(GL_TEXTURE_2D, 0, fbo.getConfig().colorbufferFormat, newWidth, newHeight); in render()
1758 …ntext.renderbufferStorage(GL_RENDERBUFFER, fbo.getConfig().colorbufferFormat, newWidth, newHeight); in render()
1769 …ntext.renderbufferStorage(GL_RENDERBUFFER, fbo.getConfig().depthbufferFormat, newWidth, newHeight); in render()
1776 …ext.renderbufferStorage(GL_RENDERBUFFER, fbo.getConfig().stencilbufferFormat, newWidth, newHeight); in render()
1780 context.viewport(0, 0, newWidth, newHeight); in render()
1817 context.readPixels(dst, 0, 0, newWidth, newHeight); in render()
/external/skia/src/core/
DSkImageFilter.cpp386 int newWidth, int newHeight, int offX, int offY) { in pad_image() argument
402 sk_sp<SkSpecialSurface> surf(ctx.makeSurface(SkISize::Make(newWidth, newHeight))); in pad_image()

12