Searched refs:width (Results 76 - 100 of 2975) sorted by relevance

1234567891011>>

/external/libcxx/test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/
H A Dput_double.pass.cpp67 ios.width(0);
72 assert(ios.width() == 0);
74 ios.width(25);
80 assert(ios.width() == 0);
82 ios.width(25);
88 assert(ios.width() == 0);
90 ios.width(25);
96 assert(ios.width() == 0);
101 ios.width(0);
106 assert(ios.width()
[all...]
/external/libvncserver/examples/
H A Dpnmshow24.c25 int j,width,height,paddedWidth; local
48 /* get width & height */
49 sscanf(buffer,"%d %d",&width,&height);
50 rfbLog("Got width %d and height %d.\n",width,height);
54 paddedWidth = width;
56 /* if your vncviewer doesn't have problems with a width
58 if(width&3)
59 paddedWidth+=4-(width&3);
77 fread(rfbScreen->frameBuffer,width*
[all...]
/external/libvncserver/test/
H A Dcopyrecttest.c11 for(i=0;i<server->width;i++)
13 server->frameBuffer[(j*server->width+i)*4+0]=i&0xff;
14 server->frameBuffer[(j*server->width+i)*4+1]=j&0xff;
15 server->frameBuffer[(j*server->width+i)*4+2]=(i*j)&0xff;
21 int width=400,height=300,w=20,x,y; local
24 rfbScreenInfoPtr server=rfbGetScreen(&argc,argv,width,height,8,3,4);
27 server->frameBuffer=(char*)malloc(width*height*4);
36 rfbMarkRectAsModified(server,0,0,width,height);
45 x=width*(0.5+cos(phi)*r);
47 if(x>=0 && y>=0 && x+w<=width
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_format_yuv.h127 unsigned width, unsigned height);
132 unsigned width, unsigned height);
137 unsigned width, unsigned height);
142 unsigned width, unsigned height);
151 unsigned width, unsigned height);
156 unsigned width, unsigned height);
161 unsigned width, unsigned height);
166 unsigned width, unsigned height);
176 unsigned width, unsigned height);
180 unsigned width, unsigne
[all...]
H A Du_format_s3tc.h52 int width, int height,
73 util_format_dxt1_rgb_unpack_rgba_8unorm(uint8_t *dst_row, unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height);
76 util_format_dxt1_rgb_pack_rgba_8unorm(uint8_t *dst_row, unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height);
82 util_format_dxt1_rgba_unpack_rgba_8unorm(uint8_t *dst_row, unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height);
85 util_format_dxt1_rgba_pack_rgba_8unorm(uint8_t *dst_row, unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height);
91 util_format_dxt3_rgba_unpack_rgba_8unorm(uint8_t *dst_row, unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height);
94 util_format_dxt3_rgba_pack_rgba_8unorm(uint8_t *dst_row, unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height);
100 util_format_dxt5_rgba_unpack_rgba_8unorm(uint8_t *dst_row, unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height);
103 util_format_dxt5_rgba_pack_rgba_8unorm(uint8_t *dst_row, unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height);
109 util_format_dxt1_srgb_unpack_rgba_8unorm(uint8_t *dst_row, unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigne
[all...]
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
H A Dconvert_from_argb.h26 int width, int height);
32 int width, int height);
38 int width, int height);
44 int width, int height);
50 int width, int height);
56 int width, int height);
62 int width, int height);
68 int width, int height);
74 int width, int height);
82 int width, in
[all...]
H A Dconvert_argb.h38 int width, int height);
46 int width, int height);
54 int width, int height);
62 int width, int height);
70 int width, int height);
76 int width, int height);
85 int width, int height);
92 int width, int height);
99 int width, int height);
105 int width, in
[all...]
/external/chromium-trace/trace-viewer/tracing/tracing/ui/base/
H A Dline_chart.css8 stroke-width: 1.5px;
/external/clang/test/PCH/
H A Dcxx-implicit-moves.cpp10 double width; member in struct:NSSize
22 return s.width;
/external/deqp/framework/common/
H A DtcuRenderTarget.cpp39 RenderTarget::RenderTarget (int width, int height, const PixelFormat& format, int depthBits, int stencilBits, int numSamples) argument
40 : m_width (width)
/external/deqp/modules/egl/
H A DteglGLES1RenderUtil.hpp37 void clear (int x, int y, int width, int height, const tcu::Vec4& color);
38 void readPixels (tcu::Surface& dst, int x, int y, int width, int height);
H A DteglVGRenderUtil.hpp37 void clear (int x, int y, int width, int height, const tcu::Vec4& color);
38 void readPixels (tcu::Surface& dst, int x, int y, int width, int height);
H A DteglGLES2RenderUtil.cpp35 void clear (const glw::Functions& gl, int x, int y, int width, int height, const tcu::Vec4& color) argument
38 gl.scissor(x, y, width, height);
44 void readPixels (const glw::Functions& gl, tcu::Surface& dst, int x, int y, int width, int height) argument
46 dst.setSize(width, height);
47 gl.readPixels(x, y, width, height, GL_RGBA, GL_UNSIGNED_BYTE, dst.getAccess().getDataPtr());
/external/harfbuzz_ng/util/
H A Dhelper-cairo-ansi.cc38 unsigned int width = cairo_image_surface_get_width (surface); local
41 cairo_surface_t *new_surface = cairo_image_surface_create (CAIRO_FORMAT_RGB24, width, height);
72 for (i = 0; i < width; i++)
75 if (i < width)
87 for (i = 0; i < width; i++)
90 if (i < width)
97 if (width && height)
98 ansi_print_image_rgb24 (data, width, height, stride / 4);
/external/mesa3d/src/egl/wayland/wayland-egl/
H A Dwayland-egl.c9 int width, int height,
12 egl_window->width = width;
23 int width, int height)
34 wl_egl_window_resize(egl_window, width, height, 0, 0);
49 int *width, int *height)
51 if (width)
52 *width = egl_window->attached_width;
8 wl_egl_window_resize(struct wl_egl_window *egl_window, int width, int height, int dx, int dy) argument
22 wl_egl_window_create(struct wl_surface *surface, int width, int height) argument
48 wl_egl_window_get_attached_size(struct wl_egl_window *egl_window, int *width, int *height) argument
/external/mesa3d/src/glx/apple/
H A Dapple_xgl_api.h32 void __applegl_glReadPixels(GLint x, GLint y, GLsizei width, GLsizei height,
34 void __applegl_glCopyPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum type);
36 GLsizei width);
41 void __applegl_glViewport(GLint x, GLint y, GLsizei width, GLsizei height);
H A Dapple_xgl_api_viewport.c38 __applegl_glViewport(GLint x, GLint y, GLsizei width, GLsizei height) argument
46 __ogl_framework_api->Viewport(x, y, width, height);
/external/mesa3d/src/mesa/main/
H A Dscissor.c36 _mesa_Scissor( GLint x, GLint y, GLsizei width, GLsizei height ) argument
42 _mesa_debug(ctx, "glScissor %d %d %d %d\n", x, y, width, height);
44 if (width < 0 || height < 0) {
49 _mesa_set_scissor(ctx, x, y, width, height);
57 * \param width width of the scissor box.
68 GLint x, GLint y, GLsizei width, GLsizei height)
72 width == ctx->Scissor.Width &&
79 ctx->Scissor.Width = width;
83 ctx->Driver.Scissor( ctx, x, y, width, heigh
67 _mesa_set_scissor(struct gl_context *ctx, GLint x, GLint y, GLsizei width, GLsizei height) argument
[all...]
H A Dscissor.h35 _mesa_Scissor( GLint x, GLint y, GLsizei width, GLsizei height );
40 GLint x, GLint y, GLsizei width, GLsizei height);
H A Dtexcompress_cpal.h34 GLsizei width, GLsizei height,
39 unsigned width, unsigned height);
/external/skia/src/gpu/
H A DGrStencilAttachment.cpp12 void GrStencilAttachment::ComputeSharedStencilAttachmentKey(int width, int height, int sampleCnt, argument
16 builder[0] = width;
/external/skia/src/opts/
H A DSkBlitMask_opts_arm_neon.h10 SkColor color, int width,
14 SkColor color, int width, SkPMColor);
/external/toybox/toys/pending/
H A Dwatch.c31 unsigned width = 80, len = sizeof("Www Mmm dd hh:mm:ss yyyy") - 1 ; local
47 terminal_size(&width, NULL);
48 if (!width) width = 80; //on serial it may return 0.
50 if (width > (hlen + len)) xprintf("%s", header);
51 if(width >= len)
52 xprintf("%*s\n",width + ((width > (hlen + len))?-hlen:0) + 1, ctime(&t));
/external/libyuv/files/include/libyuv/
H A Dplanar_functions.h27 int width, int height,
37 int width, int height);
45 int width, int height);
52 int width, int height);
60 int width, int height);
70 int width, int height);
76 int width, int height);
83 int width, int height);
90 int width, int height);
100 int width, in
[all...]
/external/webp/src/enc/
H A Dpicture_rescale.c23 // Grab the 'specs' (writer, *opaque, width, height...) from 'src' and copy them
36 uint8_t* dst, int dst_stride, int width, int height) {
38 memcpy(dst, src, width);
56 int width, int height) {
59 if (width <= 0 || height <= 0) return 0;
60 if ((*left) + width > pic->width) return 0;
74 dst->y, dst->y_stride, dst->width, dst->height);
76 dst->u, dst->uv_stride, HALVE(dst->width), HALVE(dst->height));
78 dst->v, dst->uv_stride, HALVE(dst->width), HALV
35 CopyPlane(const uint8_t* src, int src_stride, uint8_t* dst, int dst_stride, int width, int height) argument
54 AdjustAndCheckRectangle(const WebPPicture* const pic, int* const left, int* const top, int width, int height) argument
99 WebPPictureView(const WebPPicture* src, int left, int top, int width, int height, WebPPicture* dst) argument
132 WebPPictureCrop(WebPPicture* pic, int left, int top, int width, int height) argument
209 WebPPictureRescale(WebPPicture* pic, int width, int height) argument
[all...]

Completed in 676 milliseconds

1234567891011>>