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

12 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/mesa/drivers/dri/i965/
gen6_scissor_state.c 58 * width/height at the bounds, the subtraction of 1 from
78 scissor->ymin = ctx->DrawBuffer->Height - ctx->DrawBuffer->_Ymax;
79 scissor->ymax = ctx->DrawBuffer->Height - ctx->DrawBuffer->_Ymin - 1;
  /external/mesa3d/src/mesa/state_tracker/
st_atom_viewport.c 54 yBias = (GLfloat)ctx->DrawBuffer->Height;
69 GLfloat half_height = (GLfloat)ctx->Viewport.Height * 0.5f;
st_atom_stipple.c 50 * to the window height.
78 ctx->DrawBuffer->Height);
85 /** Update the stipple when the pattern or window height changes */
  /external/sfntly/cpp/src/sfntly/table/bitmap/
big_glyph_metrics.h 52 int32_t Height();
53 void SetHeight(byte_t height);
82 int32_t Height();
small_glyph_metrics.h 48 int32_t Height();
49 void SetHeight(byte_t height);
69 int32_t Height();
  /external/chromium_org/third_party/webrtc/video/
loopback.cc 37 DEFINE_int32(height, 480, "Video height.");
38 size_t Height() { return static_cast<size_t>(FLAGS_height); }
58 "Local Preview", flags::Width(), flags::Height()));
60 "Loopback Video", flags::Width(), flags::Height()));
83 stream->height = flags::Height();
98 flags::Height(),
  /external/llvm/include/llvm/CodeGen/
MachineTraceMetrics.h 37 // dependencies only. We also compute the resource height, which is the number
123 /// For virtual registers: Minimum height of the defining instruction.
124 /// For regunits: Height of the highest user in the trace.
125 unsigned Height;
127 LiveInReg(unsigned Reg, unsigned Height = 0) : Reg(Reg), Height(Height) {}
165 /// Returns true if the height resources have been computed from the trace
172 /// Invalidate height resources when a block below this one has changed.
196 // Data-dependency-related information. Per-instruction depth and height
    [all...]
  /device/moto/shamu/camera/QCamera/HAL2/core/inc/
QCameraStream.h 140 uint32_t Height,
179 uint32_t Height,
202 uint32_t Height,
243 uint32_t Height,
252 uint32_t Height,
280 uint32_t Height,
289 uint32_t Height,
  /external/chromium_org/third_party/mesa/src/src/egl/main/
eglmode.c 94 mode->Height = EGL_DONT_CARE;
117 mode->Height = attrib_list[++i];
118 if (mode->Height <= 0) {
119 _eglError(EGL_BAD_PARAMETER, "eglChooseModeMESA(height)");
165 if (min->Height != EGL_DONT_CARE && c->Height < min->Height)
190 return m->Height;
eglmode.h 49 EGLint Width, Height; /* size in pixels */
  /external/mesa3d/src/egl/main/
eglmode.c 94 mode->Height = EGL_DONT_CARE;
117 mode->Height = attrib_list[++i];
118 if (mode->Height <= 0) {
119 _eglError(EGL_BAD_PARAMETER, "eglChooseModeMESA(height)");
165 if (min->Height != EGL_DONT_CARE && c->Height < min->Height)
190 return m->Height;
eglmode.h 49 EGLint Width, Height; /* size in pixels */
  /external/pdfium/core/src/fxge/Microsoft SDK/include/
GdiPlusMetaHeader.h 122 INT Height;
157 rect->Height = Height;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplusmetaheader.h 85 INT Height;
103 rect->Height = Height;
  /device/moto/shamu/camera/QCamera/HAL/core/src/
QCameraHWI_Still.cpp 44 uint32_t Height,
54 Height,
147 uint32_t Height,
157 Height,
  /external/chromium_org/chrome/test/chromedriver/
basic_types.cc 18 WebSize::WebSize() : width(0), height(0) {}
20 WebSize::WebSize(int width, int height) : width(width), height(height) {}
26 WebRect::WebRect(int x, int y, int width, int height)
27 : origin(x, y), size(width, height) {}
40 int WebRect::Height() const { return size.height; }
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
onyxd.h 32 int Height;
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_tex_copy.c 46 GLsizei width, GLsizei height)
82 assert(timg->base.Base.Height >= dsty + height);
91 fprintf(stderr, "from (%dx%d) width %d, height %d, offset %d, pitch %d\n",
92 x, y, rrb->base.Base.Width, rrb->base.Base.Height, (uint32_t) src_offset, rrb->pitch/rrb->cpp);
129 rrb->base.Base.Width, rrb->base.Base.Height, x, y,
132 timg->base.Base.Width, timg->base.Base.Height,
133 dstx, dsty, width, height, flip_y);
142 GLsizei width, GLsizei height)
151 radeon_renderbuffer(rb), x, y, width, height)) {
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
viewport.c 46 _mesa_Viewport(GLint x, GLint y, GLsizei width, GLsizei height)
50 _mesa_set_viewport(ctx, x, y, width, height);
61 * \param height height of the viewport rectangle.
65 GLsizei width, GLsizei height)
68 _mesa_debug(ctx, "glViewport %d %d %d %d\n", x, y, width, height);
70 if (width < 0 || height < 0) {
72 "glViewport(%d, %d, %d, %d)", x, y, width, height);
76 /* clamp width and height to the implementation dependent range */
78 height = MIN2(height, (GLsizei) ctx->Const.MaxViewportHeight)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_atom_stipple.c 50 * to the window height.
78 ctx->DrawBuffer->Height);
85 /** Update the stipple when the pattern or window height changes */
  /external/libvpx/libvpx/vp8/common/
onyxd.h 32 int Height;
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_tex_copy.c 46 GLsizei width, GLsizei height)
82 assert(timg->base.Base.Height >= dsty + height);
91 fprintf(stderr, "from (%dx%d) width %d, height %d, offset %d, pitch %d\n",
92 x, y, rrb->base.Base.Width, rrb->base.Base.Height, (uint32_t) src_offset, rrb->pitch/rrb->cpp);
129 rrb->base.Base.Width, rrb->base.Base.Height, x, y,
132 timg->base.Base.Width, timg->base.Base.Height,
133 dstx, dsty, width, height, flip_y);
142 GLsizei width, GLsizei height)
151 radeon_renderbuffer(rb), x, y, width, height)) {
    [all...]
  /external/mesa3d/src/mesa/main/
viewport.c 46 _mesa_Viewport(GLint x, GLint y, GLsizei width, GLsizei height)
50 _mesa_set_viewport(ctx, x, y, width, height);
61 * \param height height of the viewport rectangle.
65 GLsizei width, GLsizei height)
68 _mesa_debug(ctx, "glViewport %d %d %d %d\n", x, y, width, height);
70 if (width < 0 || height < 0) {
72 "glViewport(%d, %d, %d, %d)", x, y, width, height);
76 /* clamp width and height to the implementation dependent range */
78 height = MIN2(height, (GLsizei) ctx->Const.MaxViewportHeight)
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
onyxd.h 32 int Height;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dxgitype.h 57 UINT Height;

Completed in 646 milliseconds

12 3 4 5 6 7 8 91011>>