/src/sys/external/bsd/drm2/dist/drm/ |
drm_fourcc.c | 46 * @depth: bit depth per pixel 48 * Computes a drm fourcc pixel format code for the given @bpp/@depth values. 51 uint32_t drm_mode_legacy_fb_format(uint32_t bpp, uint32_t depth) 57 if (depth == 8) 62 switch (depth) { 75 if (depth == 24) 80 switch (depth) { 107 * @depth: bit depth per pixe [all...] |
/src/sys/dev/fdt/ |
fdt_openfirm.c | 41 int off, depth; local in function:OF_peer 56 depth = 1; 57 for (off = fdt_next_node(fdt_data, off, &depth); 58 off >= 0 && depth >= 0; 59 off = fdt_next_node(fdt_data, off, &depth)) { 60 if (depth == 1) { 72 int off, depth; local in function:OF_child 83 depth = 0; 84 for (off = fdt_next_node(fdt_data, off, &depth); 85 off >= 0 && depth > 0 [all...] |
fdt_ddb.c | 135 int depth = 0; variable in typeref:typename:int 137 node >= 0 && depth >= 0; 138 node = fdt_next_node(fdt, node, &depth)) { 141 if (depth > FDT_MAX_DEPTH) { 142 pr("max depth exceeded: %d\n", depth); 145 pname[depth] = name; 150 if (depth == 0) 152 for (size_t i = 1; i <= depth; i++) {
|
/src/sys/external/bsd/drm2/dist/drm/amd/display/dc/inc/hw/ |
vmid.h | 47 enum dcn_hubbub_page_table_depth depth; member in struct:dcn_vmid_page_table_config
|
/src/sys/external/bsd/compiler_rt/dist/lib/msan/ |
msan_origin.h | 52 // The "zzz" bits of chained origin id are used to store the length (or depth) 111 int depth = prev.isChainedOrigin() ? prev.depth() : 0; local in function:__msan::Origin::CreateChainedOrigin 112 // depth is the length of the chain minus 1. 113 // origin_history_size of 0 means unlimited depth. 115 if (depth + 1 >= flags()->origin_history_size) { 118 ++depth; 119 CHECK(depth < (1 << kDepthBits)); 138 return Origin((1 << kHeapShift) | (depth << kDepthShift) | chained_id); 158 int depth() const function in class:__msan::Origin [all...] |
/src/sys/arch/atari/dev/ |
grfabs.c | 111 grf_alloc_view(dmode_t *d, dimen_t *dim, u_char depth) 114 d = get_best_display_mode(dim, depth, NULL); 116 return ((d->grfabs_funcs->alloc_view)(d, dim, depth)); 121 grf_get_best_mode(dimen_t *dim, u_char depth) 123 return (get_best_display_mode(dim, depth, NULL)); 183 get_best_display_mode(dimen_t *dim, int depth, dmode_t *curr_mode) 197 dd = abs(dm->depth - depth); 219 dd = abs(curr_mode->depth - depth); [all...] |
viewioctl.h | 49 u_int depth; member in struct:view_size
|
grfabs_fal.c | 263 * Calculate the depth of the screen 270 dm->depth = 1; 272 dm->depth = 16; 274 dm->depth = 8; 276 dm->depth = 4; 278 dm->depth = 2; 280 dm->depth = 1; /* 2 color */ 296 dm->size.width = vregs->vd_vert_wrap * 16 / dm->depth; 331 if (dm->depth == 1) { 390 if (v->mode->depth == 2 [all...] |
/src/usr.sbin/altq/tbrconfig/ |
tbrconfig.c | 69 u_int rate, depth; local in function:main 74 depth = 0; 98 depth = autosize_bucket(req.ifname, rate); 100 depth = (u_int)atobytes(argv[2]); 109 else if (depth == 0) 110 depth = size_bucket(req.ifname, rate); 113 req.tb_prof.depth = depth; 146 if (req.tb_prof.depth < 10240) 147 sprintf(size_str, "%u", req.tb_prof.depth); [all...] |
/src/sys/arch/sh3/sh3/ |
db_trace.c | 263 int depth, prdepth, fpdepth; variable in typeref:typename:int 274 depth = 0; 282 DPRINTF(2, "%s:%d: %lx insn=%04x depth=%d\n", 283 __func__, __LINE__, pc, inst, depth); 293 prdepth = depth; 294 depth++; 298 fpdepth = depth; 299 depth++; 303 depth++; 317 depth += -n / 4 [all...] |
/src/sys/external/bsd/libfdt/dist/ |
fdt.c | 204 int fdt_next_node(const void *fdt, int offset, int *depth) 223 if (depth) 224 (*depth)++; 228 if (depth && ((--(*depth)) < 0)) 234 || ((nextoffset == -FDT_ERR_TRUNCATED) && !depth)) 246 int depth = 0; local in function:fdt_first_subnode 248 offset = fdt_next_node(fdt, offset, &depth); 249 if (offset < 0 || depth != 1) 257 int depth = 1 local in function:fdt_next_subnode [all...] |
fdt_wip.c | 77 int depth = 0; local in function:fdt_node_end_offset_ 79 while ((offset >= 0) && (depth >= 0)) 80 offset = fdt_next_node(fdt, offset, &depth);
|
fdt_ro.c | 216 int depth; local in function:fdt_subnode_offset_namelen 220 for (depth = 0; 221 (offset >= 0) && (depth >= 0); 222 offset = fdt_next_node(fdt, offset, &depth)) 223 if ((depth == 1) 227 if (depth < 0) 526 int offset, depth, namelen; local in function:fdt_get_path 534 for (offset = 0, depth = 0; 536 offset = fdt_next_node(fdt, offset, &depth)) { 537 while (pdepth > depth) { 578 int offset, depth; local in function:fdt_supernode_atdepth_offset 845 unsigned depth = 0; local in function:fdt_check_full [all...] |
/src/sys/external/bsd/drm2/dist/drm/r128/ |
r128_ioc32.c | 117 drm_r128_depth_t depth; local in function:compat_r128_depth 122 depth.func = depth32.func; 123 depth.n = depth32.n; 124 depth.x = compat_ptr(depth32.x); 125 depth.y = compat_ptr(depth32.y); 126 depth.buffer = compat_ptr(depth32.buffer); 127 depth.mask = compat_ptr(depth32.mask); 129 return drm_ioctl_kernel(file, r128_cce_depth, &depth, DRM_AUTH);
|
/src/sys/arch/amiga/dev/ |
viewioctl.h | 49 u_int depth; member in struct:view_size
|
grfabs.c | 114 get_best_display_mode(u_long width, u_long height, u_char depth) 125 d = m->get_best_mode(&dim, depth); 158 grf_get_best_mode(monitor_t *m, dimen_t *size, u_char depth) 160 return(m->get_best_mode(size, depth)); 202 grf_alloc_view(dmode_t *d, dimen_t *dim, u_char depth) 205 d = get_best_display_mode(dim->width, dim->height, depth); 207 return(d->alloc_view(d, dim, depth));
|
amidisplaycc.c | 186 int depth; member in struct:amidisplaycc_screen_descr 189 #define ADCC_SCREEN(name, width, height, depth, fontwidth, fontheight) \ 196 (depth > 1 ? WSSCREEN_WSCOLORS : 0) | WSSCREEN_REVERSE | \ 198 depth } 208 /* name, width, height, depth, fontwidth==8, fontheight */ 293 int depth; member in struct:amidisplaycc_screen 597 int depth; local in function:amidisplaycc_putchar 631 depth = scr->depth; 644 for (plane = 0 ; plane < depth ; plane++) 710 int depth; local in function:amidisplaycc_copycols 762 int depth; local in function:amidisplaycc_erasecols 816 int depth; local in function:amidisplaycc_copyrows 935 int depth; local in function:amidisplaycc_eraserows 1259 int depth; local in function:amidisplaycc_alloc_screen [all...] |
/src/sys/dev/rasops/ |
rasops_putchar_width.h | 35 #error "Depth not supported" 193 #define NAME(depth, width) NAME1(depth, width) 194 #define NAME1(depth, width) rasops ## depth ## _putchar ## width 196 #define PUTCHAR(depth) PUTCHAR1(depth) 197 #define PUTCHAR1(depth) rasops ## depth ## _putchar 199 #define MAKESTAMP(depth) MAKESTAMP1(depth [all...] |
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/disp/ |
nouveau_nvkm_engine_disp_headgf119.c | 77 case 6: state->or.depth = 30; break; 78 case 5: state->or.depth = 24; break; 79 case 2: state->or.depth = 18; break; 80 case 0: state->or.depth = 18; break; /*XXX: "default" */ 82 state->or.depth = 18;
|
nouveau_nvkm_engine_disp_headgv100.c | 76 case 5: state->or.depth = 30; break; 77 case 4: state->or.depth = 24; break; 78 case 1: state->or.depth = 18; break; 80 state->or.depth = 18;
|
/src/tests/lib/libc/gen/ |
t_getcwd.c | 79 short depth; local in function:ATF_TC_BODY 84 depth = 2; 108 if (ftse->fts_level > depth) {
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/dispnv50/ |
nouveau_dispnv50_pior507d.c | 36 ctrl |= asyh->or.depth << 16;
|
nouveau_dispnv50_sor507d.c | 36 ctrl |= asyh->or.depth << 16;
|
/src/sys/arch/arm/imx/ |
imx51_ipuv3var.h | 48 int depth; member in struct:imx51_ipuv3_screen 57 int depth; member in struct:lcd_panel_geometry
|
/src/sys/arch/arm/s3c2xx0/ |
s3c24x0_lcd.h | 51 int depth; member in struct:s3c24x0_lcd_screen 109 int depth; /* bits per pixel */ member in struct:s3c24x0_wsscreen_descr
|