HomeSort by: relevance | last modified time | path
    Searched defs:depth (Results 1 - 25 of 130) sorted by relevancy

1 2 3 4 5 6

  /src/sys/arch/amiga/dev/
viewioctl.h 49 u_int depth; member in struct:view_size
iteioctl.h 48 u_int depth; /* depth of ite display */ member in struct:itewinsize
  /src/sys/arch/atari/dev/
viewioctl.h 49 u_int depth; member in struct:view_size
iteioctl.h 55 u_int depth; /* depth of ite display */ member in struct:itewinsize
  /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/libfdt/dist/
fdt_wip.c 77 int depth = 0; local
79 while ((offset >= 0) && (depth >= 0))
80 offset = fdt_next_node(fdt, offset, &depth);
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
248 offset = fdt_next_node(fdt, offset, &depth);
249 if (offset < 0 || depth != 1)
257 int depth = 1 local
    [all...]
  /src/tests/lib/libc/gen/
t_getcwd.c 79 short depth; local
84 depth = 2;
108 if (ftse->fts_level > depth) {
  /src/sys/arch/i386/stand/efiboot/
efipxe.c 51 int i, depth; local
67 depth = efi_device_path_depth(efi_bootdp,
69 if (efi_device_path_ncmp(efi_bootdp, dp, depth))
  /src/sys/dev/fdt/
fdt_ddb.c 135 int depth = 0; local
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++) {
fdt_openfirm.c 41 int off, depth; local
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
83 depth = 0;
84 for (off = fdt_next_node(fdt_data, off, &depth);
85 off >= 0 && depth > 0
    [all...]
simplefb.c 134 uint16_t depth; local
161 depth = 32;
164 depth = 32;
167 depth = 32;
170 depth = 16;
198 prop_dictionary_set_uint8(dict, "depth", depth);
213 width, height, depth, addr);
  /src/sys/stand/efiboot/
efipxe.c 51 int i, depth; local
67 depth = efi_device_path_depth(efi_bootdp,
69 if (efi_device_path_ncmp(efi_bootdp, dp, depth))
efifile.c 162 int depth; local
164 depth = efi_device_path_count(dp);
165 if (depth == 0)
169 if (efi_device_path_ncmp(dp, DevicePathFromHandle(efi_vol[vol]), depth) == 0)
  /src/sys/arch/shark/ofw/
chipsfb_ofbus.c 171 int isconsole, width, height, linebytes, depth; local
198 if (OF_getprop(oba->oba_phandle, "depth", &depth, sizeof(depth)) == 4) {
199 depth = be32toh(depth);
201 depth = 8;
206 linebytes = width * (depth >> 3);
212 prop_dictionary_set_uint32(dict, "depth", depth);
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/nouveau/
nouveau_crtc.h 67 int depth; member in struct:nouveau_crtc::__anon5240
  /src/sys/external/bsd/drm2/dist/drm/qxl/
qxl_draw.c 148 /* depth is not actually interesting, we don't mask with it */
149 int depth = fb->format->cpp[0] * 8; local
211 top, width, height, depth, stride);
  /src/sbin/fsck_lfs/
bufcache.c 145 printf("buffer cache: %d hits %d misses (%2.2f%%); hash width %d, depth %d\n",
197 int hash, depth; local
201 depth = 0;
203 if (++depth > max_depth)
204 max_depth = depth;
205 assert(depth <= nbufs);
  /src/sys/arch/arm/clps711x/
clpslcd.c 122 uint32_t syscon, lcdcon, depth, width, height, addr; local
142 depth = CLPSLCD_DEFAULT_DEPTH;
148 LCDCON_VBS(width * height * depth);
149 if (depth == 4)
160 ": %dx%d pixels, %d bpp mono\n", width, height, depth);
163 ri->ri_depth = depth;
221 wsdisp_info->depth = sc->sc_ri.ri_depth;
  /src/sys/arch/arm/fdt/
arm_simplefb.c 194 uint16_t depth; local
217 depth = 32;
220 depth = 32;
223 depth = 32;
226 depth = 16;
249 sc->sc_depth = depth;
  /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
  /src/sys/arch/epoc32/windermere/
wmlcd.c 144 uint32_t lcdctl, width, height, addr, depth; local
169 depth = WMLCD_DEFAULT_DEPTH;
170 if (depth == 2)
176 *(uint16_t *)addr |= (depth >> 1) << 12;
188 ": %dx%d pixels, %d bpp mono\n", width, height, 1 << depth);
191 ri->ri_depth = depth;
249 wsdisp_info->depth = sc->sc_ri.ri_depth;
  /src/sys/arch/powerpc/oea/
ofw_rascons.c 236 int32_t width, height, linebytes, depth; local
246 if (OF_getprop(node, "depth", &depth, 4) != 4)
247 depth = 8; /* XXX */
257 ri->ri_depth = depth;
290 if (depth == 8 && ofw_quiesce) {
  /src/sys/arch/sh3/sh3/
db_trace.c 263 int depth, prdepth, fpdepth; local
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/compiler_rt/dist/lib/lsan/
lsan_common_mac.cc 147 unsigned depth = 1; local
157 err = vm_region_recurse_64(mach_task_self(), &address, &size, &depth,

Completed in 35 milliseconds

1 2 3 4 5 6