HomeSort by relevance Sort by last modified time
    Searched refs:Height (Results 51 - 75 of 634) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/d3dapi/
dxgitype.idl 59 UINT Height;
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/common/
egl_g3d_image.c 79 if (attrs.Width <= 0 || attrs.Height <= 0) {
80 _eglLog(_EGL_DEBUG, "bad width or height (%dx%d)",
81 attrs.Width, attrs.Height);
110 templ.height0 = attrs.Height;
119 attrs.Width >= 640 && attrs.Height >= 480)
124 if (attrs.Width != 64 || attrs.Height != 64)
147 if (attrs.Width <= 0 || attrs.Height <= 0 ||
149 _eglLog(_EGL_DEBUG, "bad width, height, or stride (%dx%dx%d)",
150 attrs.Width, attrs.Height, attrs.DRMBufferStrideMESA);
171 nbuf.u.drm.templ.height0 = attrs.Height;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_texrender.c 58 * For example, update the width, height of the RB based on the texture size,
85 rb->Height = swImage->Base.Height;
  /external/mesa3d/src/gallium/state_trackers/d3d1x/d3dapi/
dxgitype.idl 59 UINT Height;
  /external/mesa3d/src/gallium/state_trackers/egl/common/
egl_g3d_image.c 79 if (attrs.Width <= 0 || attrs.Height <= 0) {
80 _eglLog(_EGL_DEBUG, "bad width or height (%dx%d)",
81 attrs.Width, attrs.Height);
110 templ.height0 = attrs.Height;
119 attrs.Width >= 640 && attrs.Height >= 480)
124 if (attrs.Width != 64 || attrs.Height != 64)
147 if (attrs.Width <= 0 || attrs.Height <= 0 ||
149 _eglLog(_EGL_DEBUG, "bad width, height, or stride (%dx%dx%d)",
150 attrs.Width, attrs.Height, attrs.DRMBufferStrideMESA);
171 nbuf.u.drm.templ.height0 = attrs.Height;
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_texrender.c 58 * For example, update the width, height of the RB based on the texture size,
85 rb->Height = swImage->Base.Height;
  /device/moto/shamu/camera/QCamera/HAL/core/inc/
QCameraStream.h 108 uint32_t Height,
128 uint32_t Height,
167 uint32_t Height,
234 uint32_t Height,
260 uint32_t Height,
287 uint32_t Height,
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
nouveau_util.h 137 fb->Height - fb->_Ymax);
149 a[MAT_SY] = (float)vp->Height / 2;
152 a[MAT_SY] = - (float)vp->Height / 2;
166 a[1] = (float)vp->Height / 2 + vp->Y;
169 a[1] = fb->Height - (float)vp->Height / 2 - vp->Y;
nouveau_fbo.c 87 GLuint width, GLuint height)
95 rb->Height = height;
98 rb->Format, width, height);
155 map += stride * (rb->Height - 1);
175 GLuint width, GLuint height)
181 rb->Height = height;
287 rb->Height = ti->Height;
    [all...]
  /external/chromium_org/ui/gfx/image/
image_unittest.cc 50 EXPECT_EQ(0, image.Height());
56 EXPECT_EQ(0, imageCopy.Height());
62 EXPECT_EQ(25, image2.Height());
67 EXPECT_EQ(25, image.Height());
70 EXPECT_EQ(0, image2.Height());
79 EXPECT_EQ(0, image1.Height());
89 EXPECT_EQ(0, image2.Height());
96 EXPECT_EQ(0, image3.Height());
117 // Test the Width, Height and Size of an empty and non-empty image.
121 EXPECT_EQ(0, image.Height());
484 const int height = 50; local
526 const int height = 50; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_util.h 137 fb->Height - fb->_Ymax);
149 a[MAT_SY] = (float)vp->Height / 2;
152 a[MAT_SY] = - (float)vp->Height / 2;
166 a[1] = (float)vp->Height / 2 + vp->Y;
169 a[1] = fb->Height - (float)vp->Height / 2 - vp->Y;
nouveau_fbo.c 87 GLuint width, GLuint height)
95 rb->Height = height;
98 rb->Format, width, height);
155 map += stride * (rb->Height - 1);
175 GLuint width, GLuint height)
181 rb->Height = height;
287 rb->Height = ti->Height;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
framebuffer.c 265 * Resize the given framebuffer's renderbuffers to the new width and height.
276 GLuint width, GLuint height)
292 if (rb->Width != width || rb->Height != height) {
293 if (rb->AllocStorage(ctx, rb, rb->InternalFormat, width, height)) {
295 ASSERT(rb->Height == height);
306 fb->Height = height;
356 if (buffer->Width != newWidth || buffer->Height != newHeight)
    [all...]
debug.c 240 write_ppm(const char *filename, const GLubyte *buffer, int width, int height,
249 fprintf(f,"%i %i\n", width,height);
253 for (y=0; y < height; y++) {
255 int yy = invert ? (height - 1 - y) : y;
286 buffer = (GLubyte *) malloc(img->Width * img->Height
298 write_ppm(s, buffer, img->Width, img->Height, 4, 0, 1, 2, GL_FALSE);
335 buffer = (GLubyte *) malloc(rb->Width * rb->Height * 4);
337 ctx->Driver.ReadPixels(ctx, 0, 0, rb->Width, rb->Height,
348 write_ppm(s, buffer, rb->Width, rb->Height, 4, 0, 1, 2, GL_TRUE);
377 texImg->Width, texImg->Height, texImg->Depth
    [all...]
  /external/mesa3d/src/mesa/main/
framebuffer.c 265 * Resize the given framebuffer's renderbuffers to the new width and height.
276 GLuint width, GLuint height)
292 if (rb->Width != width || rb->Height != height) {
293 if (rb->AllocStorage(ctx, rb, rb->InternalFormat, width, height)) {
295 ASSERT(rb->Height == height);
306 fb->Height = height;
356 if (buffer->Width != newWidth || buffer->Height != newHeight)
    [all...]
debug.c 240 write_ppm(const char *filename, const GLubyte *buffer, int width, int height,
249 fprintf(f,"%i %i\n", width,height);
253 for (y=0; y < height; y++) {
255 int yy = invert ? (height - 1 - y) : y;
286 buffer = (GLubyte *) malloc(img->Width * img->Height
298 write_ppm(s, buffer, img->Width, img->Height, 4, 0, 1, 2, GL_FALSE);
335 buffer = (GLubyte *) malloc(rb->Width * rb->Height * 4);
337 ctx->Driver.ReadPixels(ctx, 0, 0, rb->Width, rb->Height,
348 write_ppm(s, buffer, rb->Width, rb->Height, 4, 0, 1, 2, GL_TRUE);
377 texImg->Width, texImg->Height, texImg->Depth
    [all...]
  /hardware/intel/img/psb_video/src/mrst/
lnc_H263ES.c 228 if (ctx->Height <= 400)
230 else if (ctx->Height < 800)
233 ctx->sRCParams.Slices = (ctx->Height + 15) >> (4 + (MBRows >> 1));
272 ASSERT(ctx->Height == pBuffer->picture_height);
276 if ((ctx->Width == 128) && (ctx->Height == 96))
278 else if ((ctx->Width == 176) && (ctx->Height == 144))
280 else if ((ctx->Width == 352) && (ctx->Height == 288))
282 else if ((ctx->Width == 704) && (ctx->Height == 576))
284 else if ((ctx->Width <= 720) && (ctx->Height <= 576))
302 ctx->Height,
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/x86/
variance_sse2.c 72 unsigned int Height,
84 unsigned int Height,
94 unsigned int Height,
104 unsigned int Height,
114 unsigned int Height,
124 unsigned int Height,
134 unsigned int Height,
  /external/libvpx/libvpx/vp8/common/x86/
variance_sse2.c 72 unsigned int Height,
84 unsigned int Height,
94 unsigned int Height,
104 unsigned int Height,
114 unsigned int Height,
124 unsigned int Height,
134 unsigned int Height,
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/x86/
variance_sse2.c 72 unsigned int Height,
84 unsigned int Height,
94 unsigned int Height,
104 unsigned int Height,
114 unsigned int Height,
124 unsigned int Height,
134 unsigned int Height,
  /external/pdfium/fpdfsdk/src/pdfwindow/
PWL_Signature.cpp 46 (FX_INT32)rcClient.Width(), (FX_INT32)rcClient.Height());
64 fVScale = rcClient.Height() / fImageH;
143 if (rcClient.Width() >= rcClient.Height())
150 rcText.bottom = rcText.top - rcClient.Height() / 2.0f;
151 rcDescription.top = rcDescription.bottom + rcClient.Height() / 2.0f;
  /external/llvm/lib/CodeGen/
MachineTraceMetrics.cpp 239 // Check if height resources for MBB are valid and return the TBI.
366 unsigned Height = SuccTBI->InstrHeight;
367 if (!Best || Height < BestHeight)
368 Best = Succ, BestHeight = Height;
503 // The trace leaving I is now known, compute the height resources.
514 // Invalidate height resources of blocks above MBB.
521 << " height.\n");
593 "Trace is broken, height should have been invalidated.");
607 // Compute the depth and height of each instruction based on data dependencies
752 /// 1. The maximum height+depth over all instructions in the trace center block
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_pixel_copy.c 79 GLsizei width, GLsizei height,
161 &dstx, &dsty, &width, &height))
171 read_fb->Width, read_fb->Height,
172 &srcx, &srcy, &width, &height))
181 dsty = fb->Height - dsty - height;
187 srcy = read_fb->Height - srcy - height;
199 width, height, flip,
217 GLsizei width, GLsizei height,
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_pixel_copy.c 79 GLsizei width, GLsizei height,
161 &dstx, &dsty, &width, &height))
171 read_fb->Width, read_fb->Height,
172 &srcx, &srcy, &width, &height))
181 dsty = fb->Height - dsty - height;
187 srcy = read_fb->Height - srcy - height;
199 width, height, flip,
217 GLsizei width, GLsizei height,
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvideoframe.cc 122 return Reset(frame->fourcc, frame->width, frame->height, dw, dh,
130 frame->width != dw || frame->height != dh) {
137 frame->height,
169 size_t WebRtcVideoFrame::GetHeight() const { return frame()->Height(); }
179 buffer += (frame()->Width() * frame()->Height());
188 buffer += frame()->Width() * frame()->Height() + uv_size;
201 buffer += (frame()->Width() * frame()->Height());
210 buffer += frame()->Width() * frame()->Height() + uv_size;
223 frame()->Height(), pixel_width_, pixel_height_, elapsed_time_,
232 Attach(exclusive_buffer, length, frame()->Width(), frame()->Height(),
256 size_t height = frame()->Height(); local
    [all...]

Completed in 778 milliseconds

1 23 4 5 6 7 8 91011>>