| /external/libgdx/gdx/src/com/badlogic/gdx/graphics/glutils/ |
| ETC1TextureData.java | 33 int height = 0;
field in class:ETC1TextureData 68 height = data.height;
84 Gdx.gl.glCompressedTexImage2D(target, 0, ETC1.ETC1_RGB8_OES, width, height, 0, data.compressedData.capacity()
110 return height;
|
| /external/libvpx/libvpx/vp9/encoder/ |
| vp9_resize.c | 511 int height, 519 uint8_t *intbuf = (uint8_t *)malloc(sizeof(uint8_t) * width2 * height); 521 (width < height ? height : width)); 522 uint8_t *arrbuf = (uint8_t *)malloc(sizeof(uint8_t) * (height + height2)); 524 assert(height > 0); 527 for (i = 0; i < height; ++i) 531 fill_col_to_arr(intbuf + i, width2, height, arrbuf); 532 resize_multistep(arrbuf, height, arrbuf + height, height2, tmpbuf) 828 arrbuf + height); local [all...] |
| /external/mesa3d/src/gallium/tests/graw/ |
| fs-fragcoord.c | 12 static int height = 300; variable 210 height = h; 212 set_viewport(0, 0, width, height, 30, 1000); 220 if (!graw_util_create_window(&info, width, height, 1, TRUE)) 225 graw_util_viewport(&info, 0, 0, width, height, -1.0, 1.0);
|
| fs-frontface.c | 10 static int height = 300; variable 172 height = h; 174 set_viewport(0, 0, width, height, 30, 1000); 182 if (!graw_util_create_window(&info, width, height, 1, TRUE)) 187 graw_util_viewport(&info, 0, 0, width, height, -1.0, 1.0);
|
| fs-write-z.c | 12 static int height = 300; variable 189 height = h; 191 graw_util_viewport(&info, 0, 0, width, height, -1.0, 1.0); 199 if (!graw_util_create_window(&info, width, height, 1, TRUE)) 204 graw_util_viewport(&info, 0, 0, width, height, -1.0, 1.0);
|
| /external/mesa3d/src/glx/apple/ |
| glxreply.c | 59 GLint width, GLint height, GLint depth, GLenum format, 69 height = reply.pad4; 72 if ((height == 0) || (max_dim < 2)) { 73 height = 1; 96 __glEmptyImage(gc, 3, width, height, depth, format, type, buf, dest);
|
| /external/mesa3d/src/mesa/drivers/common/ |
| meta.h | 90 GLsizei width, GLsizei height, 95 GLint x, GLint y, GLsizei width, GLsizei height, 102 GLint x, GLint y, GLsizei width, GLsizei height, 120 GLsizei width, GLsizei height); 129 GLfloat width, GLfloat height);
|
| /external/mesa3d/src/mesa/drivers/dri/intel/ |
| intel_regions.h | 56 * - Buffer dimensions - pitch and height. 65 GLuint height; /**< in pixels */ member in struct:intel_region 83 GLuint height, 89 GLuint width, GLuint height, GLuint pitch, 122 GLuint srcx, GLuint srcy, GLuint width, GLuint height, 132 GLuint height,
|
| intel_tex_layout.c | 98 * | | alignment unit height ("j") | 147 GLuint height = mt->height0; local 183 height, depth); 185 img_height = ALIGN(height, mt->align_h); 204 height = minify(height);
|
| /external/opencv/cvaux/src/ |
| cvbgfg_codebook.cpp | 103 if( roi.x == 0 && roi.y == 0 && roi.width == 0 && roi.height == 0 ) 106 roi.height = image->rows; 111 roi.width >= 0 && roi.height >= 0 && 113 roi.y + roi.height <= image->rows ); 115 if( image->cols != model->size.width || image->rows != model->size.height ) 138 for( y = 0; y < roi.height; y++ ) 241 image->cols == model->size.width && image->rows == model->size.height && 244 if( roi.x == 0 && roi.y == 0 && roi.width == 0 && roi.height == 0 ) 247 roi.height = image->rows; 252 roi.width >= 0 && roi.height >= 0 & [all...] |
| /external/opencv3/modules/core/test/ocl/ |
| test_gemm.cpp | 99 ARoiSize = Size(ARoiSize.height, ARoiSize.width); 105 BRoiSize.height = ARoiSize.width; 111 BRoiSize = Size(BRoiSize.height, BRoiSize.width); 113 Size DRoiSize = Size(BRoiSize.width, ARoiSize.height), CRoiSizeT(DRoiSize.height, DRoiSize.width);
|
| /external/pdfium/core/src/fxcodec/codec/ |
| fx_codec_jbig.cpp | 61 FX_DWORD height, 74 m_pJbig2Context->m_height = height; 80 FXSYS_memset(dest_buf, 0, height * dest_pitch); 87 int ret = m_pJbig2Context->m_pContext->getFirstPage(dest_buf, width, height, 96 int dword_size = height * dest_pitch / 4;
|
| /external/pdfium/samples/ |
| image_diff_png.cc | 94 height(0), 115 int height; member in class:image_diff_png::__anon22897::PngDecoderState 167 state->height = static_cast<int>(h); 250 state->width * state->output_channels * state->height); 258 if (static_cast<int>(row_num) > state->height) { 354 *h = state.height; 466 int width, int height, int row_byte_width, 489 png_set_IHDR(png_ptr, info_ptr, width, height, 8, png_output_color_type, 504 for (int y = 0; y < height; y ++) { 511 for (int y = 0; y < height; y ++) [all...] |
| /external/skia/gm/ |
| shaderbounds.cpp | 12 static SkShader* MakeLinear(SkScalar width, SkScalar height, bool alternate, 14 SkPoint pts[2] = { {0, 0}, {width, height}}; 29 typedef SkShader* (*ShaderGenFunc)(SkScalar width, SkScalar height, 78 SkShader* MakeShader(int width, int height, bool background) { 84 SkScalar shaderHeight = height / scale;
|
| /external/skia/samplecode/ |
| SampleTextBox.cpp | 99 drawTest(canvas, width, this->height(), SK_ColorBLACK, SK_ColorWHITE); 101 drawTest(canvas, width, this->height(), SK_ColorWHITE, SK_ColorBLACK); 103 drawTest(canvas, width, this->height()/2, SK_ColorGRAY, SK_ColorWHITE); 104 canvas->translate(0, this->height()/2); 105 drawTest(canvas, width, this->height()/2, SK_ColorGRAY, SK_ColorBLACK);
|
| /external/skia/src/animator/ |
| SkDrawRectangle.cpp | 18 SK_PROPERTY(height), 27 SK_MEMBER_PROPERTY(height, Float), 70 case SK_PROPERTY(height): 71 result = fRect.height(); 98 case SK_PROPERTY(height):
|
| /external/skia/src/gpu/effects/ |
| GrMatrixConvolutionEffect.cpp | 40 int kHeight = mce.kernelSize().height(); 115 SkASSERT(m.kernelSize().width() <= 0x7FFF && m.kernelSize().height() <= 0xFFFF); 116 uint32_t key = m.kernelSize().width() << 16 | m.kernelSize().height(); 130 imageIncrement[1] = ySign / texture.height(); 133 pdman.set1fv(fKernelUni, conv.kernelSize().width() * conv.kernelSize().height(), conv.kernel()); 155 for (int i = 0; i < kernelSize.width() * kernelSize.height(); i++) { 175 fKernelSize.width() * fKernelSize.height() * sizeof(float)) && 197 int height = kernelSize.height(); local 198 SkASSERT(width * height <= MAX_KERNEL_SIZE) 231 int height = d->fRandom->nextRangeU(1, MAX_KERNEL_SIZE \/ width); local [all...] |
| /external/webp/src/demux/ |
| anim_decode.c | 141 static int IsFullFrame(int width, int height, int canvas_width, 143 return (width == canvas_width && height == canvas_height); 154 int y_offset, int width, int height) { 158 for (j = 0; j < height; ++j) { 164 // Copy width * height pixels from 'src' to 'dst'. 166 uint32_t width, uint32_t height) { 168 memcpy(dst, src, width * NUM_CHANNELS * height); 179 IsFullFrame(curr->width, curr->height, 184 (IsFullFrame(prev->width, prev->height, canvas_width, 280 const int dst_max_y = dst->y_offset + dst->height; 309 uint32_t height; local [all...] |
| /external/webrtc/talk/app/webrtc/androidtests/src/org/webrtc/ |
| SurfaceTextureHelperTest.java | 116 final int height = 16; local 119 eglBase.createPbufferSurface(width, height); 127 surfaceTextureHelper.getSurfaceTexture().setDefaultBufferSize(width, height); 135 assertEquals(eglOesBase.surfaceHeight(), height); local 152 drawer.drawOes(listener.oesTextureId, listener.transformMatrix, 0, 0, width, height); 158 final ByteBuffer rgbaData = ByteBuffer.allocateDirect(width * height * 4); 159 GLES20.glReadPixels(0, 0, width, height, GLES20.GL_RGBA, GLES20.GL_UNSIGNED_BYTE, rgbaData); 184 final int height = 16; local 187 eglBase.createPbufferSurface(width, height); 194 surfaceTextureHelper.getSurfaceTexture().setDefaultBufferSize(width, height); 202 assertEquals(eglOesBase.surfaceHeight(), height); local 366 final int height = 16; local 382 assertEquals(eglBase.surfaceHeight(), height); local [all...] |
| /external/webrtc/talk/media/base/ |
| videoadapter.h | 71 float FindClosestScale(int width, int height, int target_num_pixels); 72 float FindClosestViewScale(int width, int height, int target_num_pixels); 73 float FindLowerScale(int width, int height, int target_num_pixels); 78 const float upbias, int width, int height, 90 size_t previous_height_; // Previous adapter output height. 157 void OnEncoderResolutionRequest(int width, int height, AdaptRequest request);
|
| /external/webrtc/webrtc/modules/video_coding/ |
| packet.cc | 33 height(0), 53 height(rtpHeader.type.Video.height), 77 height(0), 94 height = 0;
|
| /external/webrtc/webrtc/ |
| video_frame.h | 34 // on set dimensions - height and plane stride. 39 int height, 51 int height, 61 int height, 73 int height, 102 // Get frame height. 103 int height() const;
|
| /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/ |
| post_filter.cpp | 43 int width, height; local 51 height = video->height; 52 size = (int32)width * height; 75 CombinedHorzVertRingFilter(output, width, height, QP_store, 0, pp_mod); 83 CombinedHorzVertFilter(output, width, height, 88 CombinedHorzVertFilter_NoSoftDeblocking(output, width, height, 94 Deringing_Luma(output, width, height, QP_store, 107 CombinedHorzVertRingFilter(output, (int)(width >> 1), (int)(height >> 1), QP_store, (int) 1, pp_mod); 116 (int)(height >> 1), QP_store, (int) 1, pp_mod) [all...] |
| /frameworks/base/libs/hwui/ |
| RenderBufferCache.cpp | 97 RenderBuffer* RenderBufferCache::get(GLenum format, const uint32_t width, const uint32_t height) { 100 RenderBufferEntry entry(format, width, height); 111 RenderBuffer::formatName(format), width, height); 113 buffer = new RenderBuffer(format, width, height); 116 RenderBuffer::formatName(format), width, height);
|
| /frameworks/base/libs/hwui/tests/macrobench/ |
| TestSceneRunner.cpp | 75 const int height = gDisplay.h; local 78 sp<RenderNode> rootNode = TestUtils::createNode(0, 0, width, height, 79 [&scene, width, height](RenderProperties& props, TestCanvas& canvas) { 81 scene->createContent(width, height, canvas); 90 proxy->setup(width, height, dp(800.0f), 255 * 0.075, 255 * 0.15);
|