HomeSort by relevance Sort by last modified time
    Searched refs:Width (Results 76 - 100 of 462) sorted by null

1 2 34 5 6 7 8 91011>>

  /device/moto/shamu/camera/QCamera/HAL/core/src/
QCameraHWI_Rdi.cpp 189 uint32_t Width,
199 Width,
  /external/dng_sdk/source/
dng_resample.h 134 uint32 Width () const
218 uint32 Width () const
  /external/mesa3d/src/mesa/drivers/dri/i965/
gen7_misc_state.c 142 dw3 = ((srb->Base.Base.Width + tile_x - 1) << 4) |
201 OUT_BATCH((((drb->Base.Base.Width + tile_x) - 1) << 4) |
255 * The pitch must be set to 2x the value computed based on width, as
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nv20_state_fb.c 60 unsigned pitch = align(fb->Width, 128),
146 PUSH_DATA (push, (fb->Width - 1) << 16);
  /external/mesa3d/src/mesa/state_tracker/
st_atom_framebuffer.c 57 int rtt_width = strb->Base.Width;
64 strb->surface->width != rtt_width ||
86 strb->surface->width, strb->surface->height,
110 framebuffer->width = fb->Width;
113 /*printf("------ fb size %d x %d\n", fb->Width, fb->Height);*/
  /external/mesa3d/src/mesa/swrast/
s_stencil.c 297 const GLint w = rb->Width, h = rb->Height;
330 const GLint w = rb->Width, h = rb->Height;
459 x + n <= 0 || x >= (GLint) rb->Width) {
470 if (x + n > (GLint) rb->Width) {
471 GLint dx = x + n - rb->Width;
504 x + n <= 0 || x >= (GLint) rb->Width) {
514 if (x + n > (GLint) rb->Width) {
515 GLint dx = x + n - rb->Width;
556 GLint x, y, width, height; local
567 width = ctx->DrawBuffer->_Xmax - ctx->DrawBuffer->_Xmin
    [all...]
  /external/pdfium/core/src/fxge/ge/
fx_ge_device.cpp 54 int width,
57 return pDIB->Create(width, height, m_RenderCaps & FXRC_ALPHA_OUTPUT
62 return pDIB->Create(width, height, FXDIB_8bppMask);
65 return pDIB->Create(width, height, m_RenderCaps & FXRC_ALPHA_OUTPUT
70 width, height, m_RenderCaps & FXRC_ALPHA_OUTPUT ? FXDIB_Argb : FXDIB_Rgb);
160 int width = (int)FXSYS_ceil(rect_f.right - rect_f.left); local
161 if (width < 1) {
162 width = 1;
174 if (rect_i.Width() >= width + 1)
    [all...]
  /external/sfntly/cpp/src/sfntly/table/bitmap/
big_glyph_metrics.cc 34 int32_t BigGlyphMetrics::Width() {
84 int32_t BigGlyphMetrics::Builder::Width() {
88 void BigGlyphMetrics::Builder::SetWidth(byte_t width) {
89 InternalWriteData()->WriteByte(Offset::kWidth, width);
  /external/webrtc/webrtc/video/
video_loopback.cc 24 DEFINE_int32(width, 640, "Video width.");
25 size_t Width() {
211 {flags::Width(), flags::Height(), flags::Fps(),
  /frameworks/rs/api/
rs_allocation_data.spec 71 arg: uint32_t width, "Width of the incoming region to update."
81 (width * heigth) cells are copied.
  /external/clang/include/clang/Basic/
Specifiers.h 24 /// \brief Specifies the width of a type, e.g., short, long, or long long.
79 /*DeclSpec::TSW*/ unsigned Width : 2;
  /external/giflib/
quantize.c 48 2D array for each of the RGB colors with size Width by Height. There is no
59 GifQuantizeBuffer(unsigned int Width,
90 for (i = 0; i < (int)(Width * Height); i++) {
125 NewColorSubdiv[0].Count = ((long)Width) * Height; /* Pixels */
161 for (i = 0; i < (int)(Width * Height); i++) {
  /external/libmpeg2/common/arm/
icv_sad_a9.s 61 @* Width (assumed to be 8)
  /external/libvpx/libvpx/vp8/common/
onyxc_int.h 74 int Width;
filter.c 255 * UINT32 width : Block width.
276 unsigned int width,
284 for (j = 0; j < width; j++)
294 src_ptr += src_stride - width;
295 dst_ptr += width;
306 * UINT32 width : Block width.
327 unsigned int width,
336 for (j = 0; j < width; j++
    [all...]
  /external/mesa3d/src/egl/main/
eglsurface.c 82 surf->Width = val;
195 surf->Width = val;
320 surf->Width = 0;
357 *value = surface->Width;
  /external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d10tri/
d3d10tri.cpp 88 virtual void draw(ID3D10Device* ctx, ID3D10RenderTargetView* rtv, unsigned width, unsigned height, double time)
93 vp.Width = (unsigned)width;
  /external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11tri/
d3d11tri.cpp 90 virtual void draw(ID3D11DeviceContext* ctx, ID3D11RenderTargetView* rtv, unsigned width, unsigned height, double time)
95 vp.Width = (float)width;
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_tex_image.c 40 int width, height, depth; local
44 &width, &height, &depth);
49 (width == 1 ||
54 * likely base level width/height/depth for a full mipmap stack
70 width <<= 1;
90 lastLevel = firstLevel + _mesa_logbase2(MAX2(MAX2(width, height), depth));
99 width,
178 src_stride = image->Width;
192 0, 0, dst_x, dst_y, image->Width, image->Height,
211 texImage->Level, texImage->Width, texImage->Height, texImage->Depth)
    [all...]
  /external/mesa3d/src/mesa/main/
renderbuffer.c 53 rb->Width = 0;
  /frameworks/ex/framesequence/jni/
FrameSequence_gif.cpp 143 && covered.Left + covered.Width <= target.Left + target.Width
149 int transparent, int width) {
150 for (; width > 0; width--, src++, dst++) {
157 static void setLineColor(Color8888* dst, Color8888 color, int width) {
158 for (; width > 0; width--, dst++) {
165 copyWidth = imageDesc.Width;
191 const int width = mFrameSequence.getWidth() local
204 const int width = mFrameSequence.getWidth(); local
232 const int width = mFrameSequence.getWidth(); local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
onyxc_int.h 74 int Width;
  /external/llvm/lib/Target/AArch64/InstPrinter/
AArch64InstPrinter.h 86 char SrcRegKind, unsigned Width);
87 template <char SrcRegKind, unsigned Width>
90 printMemExtend(MI, OpNum, O, SrcRegKind, Width);
  /external/llvm/lib/Target/X86/
X86TargetObjectFile.cpp 126 unsigned Width = (AI.getBitWidth() / 8) * 2;
129 assert(Width >= Size && "hex string is too large!");
130 HexString.insert(HexString.begin(), Width - Size, '0');
  /external/opencv3/samples/directx/
d3d10_interop.cpp 30 D3D10WinApp(int width, int height, std::string& window_name, cv::VideoCapture& cap) :
31 D3DSample(width, height, window_name, cap) {}
50 scd.BufferDesc.Width = m_width; // set the back buffer width
90 viewport.Width = m_width;
99 desc.Width = m_width;

Completed in 3404 milliseconds

1 2 34 5 6 7 8 91011>>