Searched defs:width (Results 1 - 21 of 21) sorted by relevance

/bionic/libc/upstream-openbsd/lib/libc/stdlib/
H A Dlsearch.c44 lsearch(const void *key, void *base, size_t *nelp, size_t width, argument
48 return(linear_base(key, base, nelp, width, compar, 1));
52 lfind(const void *key, const void *base, size_t *nelp, size_t width, argument
55 return(linear_base(key, base, nelp, width, compar, 0));
59 linear_base(const void *key, const void *base, size_t *nelp, size_t width, argument
64 end = (const char *)base + *nelp * width;
65 for (element = base; element < end; element += width)
82 memcpy((void *)end, key, width);
/bionic/libc/kernel/uapi/drm/
H A Ddrm_sarea.h45 unsigned int width; member in struct:drm_sarea_frame
H A Domap_drm.h45 uint16_t width; member in struct:omap_gem_size::__anon114
H A Dqxl_drm.h101 uint32_t width; member in struct:drm_qxl_alloc_surf
H A Ddrm_mode.h279 __u32 width, height; member in struct:drm_mode_fb_cmd
290 __u32 width, height; member in struct:drm_mode_fb_cmd2
327 __u32 width; member in struct:drm_mode_cursor
339 __u32 width; member in struct:drm_mode_cursor2
370 uint32_t width; member in struct:drm_mode_create_dumb
H A Dr128_drm.h236 unsigned short width, height; member in struct:drm_r128_blit
H A Dvmwgfx_drm.h99 uint32_t width; member in struct:drm_vmw_size
179 uint32_t width; member in struct:drm_vmw_control_stream_arg
H A Di915_drm.h71 int width, height; member in struct:_drm_i915_sarea
H A Dradeon_drm.h629 unsigned int width, height; member in struct:drm_radeon_tex_image
637 int width; member in struct:drm_radeon_texture
/bionic/libc/kernel/uapi/linux/
H A Dv4l2-subdev.h77 __u32 width; member in struct:v4l2_subdev_frame_interval_enum
H A Dv4l2-mediabus.h107 __u32 width; member in struct:v4l2_mbus_framefmt
H A Dkd.h180 unsigned int width, height; member in struct:console_font_op
186 unsigned int width, height; member in struct:console_font
H A Domapfb.h111 __u32 width, height; member in struct:omapfb_update_window
121 __u32 width, height; member in struct:omapfb_update_window_old
224 __u32 width; member in struct:omapfb_display_info
H A Dfb.h272 __u32 width; member in struct:fb_var_screeninfo
346 __u32 width; member in struct:fb_copyarea
356 __u32 width; member in struct:fb_fillrect
366 __u32 width; member in struct:fb_image
H A Domap3isp.h189 __u8 width; member in struct:omap3isp_h3a_af_paxel
H A Dvideodev2.h109 __u32 width; member in struct:v4l2_rect
159 __u32 width; member in struct:v4l2_pix_format
334 __u32 width; member in struct:v4l2_frmsize_discrete
376 __u32 width; member in struct:v4l2_frmivalenum
660 __u32 width; member in struct:v4l2_bt_timings
699 #define V4L2_DV_BT_FRAME_WIDTH(bt) (bt->width + V4L2_DV_BT_BLANKING_WIDTH(bt))
1176 __u32 width; member in struct:v4l2_pix_format_mplane
/bionic/libc/upstream-openbsd/lib/libc/stdio/
H A Dvfscanf.c103 size_t width; /* field width, or 0 */ local
140 width = 0;
195 width = width * 10 + c - '0';
339 if (width == 0)
340 width = 1;
348 while (width != 0) {
366 width--;
386 if ((n = fp->_r) < width) {
[all...]
H A Dvfwscanf.c105 size_t width; /* field width, or 0 */ local
153 width = 0;
209 width = width * 10 + c - '0';
353 if (width == 0)
354 width = 1;
359 while (width-- != 0 &&
375 while (width != 0 &&
377 if (width >
[all...]
H A Dvfprintf.c282 int width; /* width from format (%8d), or 0 */ local
509 width = 0;
533 * ``A negative field width argument is taken as a
534 * - flag followed by a positive field width.''
538 GETASTER(width);
539 if (width >= 0)
541 if (width == INT_MIN)
543 width = -width;
[all...]
H A Dvfwprintf.c287 int width; /* width from format (%8d), or 0 */ local
485 width = 0;
509 * ``A negative field width argument is taken as a
510 * - flag followed by a positive field width.''
514 GETASTER(width);
515 if (width >= 0)
517 if (width == INT_MIN)
519 width = -width;
[all...]
/bionic/libc/bionic/
H A Dlibc_logging.cpp241 int width = -1; local
294 /* parse field width */
297 width = static_cast<int>(parse_decimal(format, &nn));
395 if (slen < width && !padLeft) {
397 SendRepeat(o, padChar, width - slen);
402 if (slen < width && padLeft) {
404 SendRepeat(o, padChar, width - slen);

Completed in 761 milliseconds