Home
last modified time | relevance | path

Searched refs:depth (Results 1 – 25 of 33) sorted by relevance

12

/xen/tools/firmware/vgabios/
A Dvbetables-gen.c10 int depth; member
95 if (pm->depth == 4) in main()
98 pitch = pm->width * ((pm->depth + 7) / 8); in main()
103 if (pm->depth == 4) in main()
141 if (pm->depth == 4) { in main()
150 if (pm->depth == 4) in main()
152 else if (pm->depth == 8) in main()
158 if (pm->depth == 4) in main()
165 switch(pm->depth) { in main()
226 if (pm->depth == 32) in main()
[all …]
/xen/tools/libxl/
A Dlibxl_libfdt_compat.c67 int depth = 0; in fdt_first_subnode() local
69 offset = fdt_next_node(fdt, offset, &depth); in fdt_first_subnode()
70 if (offset < 0 || depth != 1) in fdt_first_subnode()
80 int depth = 1; in fdt_next_subnode() local
87 offset = fdt_next_node(fdt, offset, &depth); in fdt_next_subnode()
88 if (offset < 0 || depth < 1) in fdt_next_subnode()
90 } while (depth > 1); in fdt_next_subnode()
/xen/xen/common/libfdt/
A Dfdt.c179 if (depth) in fdt_next_node()
180 (*depth)++; in fdt_next_node()
184 if (depth && ((--(*depth)) < 0)) in fdt_next_node()
190 || ((nextoffset == -FDT_ERR_TRUNCATED) && !depth)) in fdt_next_node()
202 int depth = 0; in fdt_first_subnode() local
204 offset = fdt_next_node(fdt, offset, &depth); in fdt_first_subnode()
205 if (offset < 0 || depth != 1) in fdt_first_subnode()
213 int depth = 1; in fdt_next_subnode() local
220 offset = fdt_next_node(fdt, offset, &depth); in fdt_next_subnode()
221 if (offset < 0 || depth < 1) in fdt_next_subnode()
[all …]
A Dfdt_ro.c133 int depth; in fdt_subnode_offset_namelen() local
137 for (depth = 0; in fdt_subnode_offset_namelen()
140 if ((depth == 1) in fdt_subnode_offset_namelen()
144 if (depth < 0) in fdt_subnode_offset_namelen()
358 int offset, depth, namelen; in fdt_get_path() local
366 for (offset = 0, depth = 0; in fdt_get_path()
369 while (pdepth > depth) { in fdt_get_path()
376 if (pdepth >= depth) { in fdt_get_path()
389 if (pdepth < (depth + 1)) in fdt_get_path()
410 int offset, depth; in fdt_supernode_atdepth_offset() local
[all …]
A Dfdt_wip.c97 int depth = 0; in _fdt_node_end_offset() local
99 while ((offset >= 0) && (depth >= 0)) in _fdt_node_end_offset()
100 offset = fdt_next_node(fdt, offset, &depth); in _fdt_node_end_offset()
/xen/xen/arch/arm/
A Dbootfdt.c97 int depth = 0; in device_tree_for_each_node() local
107 if ( depth >= DEVICE_TREE_MAX_DEPTH ) in device_tree_for_each_node()
114 as = depth > 0 ? address_cells[depth-1] : DT_ROOT_NODE_ADDR_CELLS_DEFAULT; in device_tree_for_each_node()
115 ss = depth > 0 ? size_cells[depth-1] : DT_ROOT_NODE_SIZE_CELLS_DEFAULT; in device_tree_for_each_node()
117 address_cells[depth] = device_tree_get_u32(fdt, node, in device_tree_for_each_node()
119 size_cells[depth] = device_tree_get_u32(fdt, node, in device_tree_for_each_node()
125 ret = func(fdt, node, name, depth, as, ss, data); in device_tree_for_each_node()
130 node = fdt_next_node(fdt, node, &depth); in device_tree_for_each_node()
131 } while ( node >= 0 && depth > 0 ); in device_tree_for_each_node()
338 rc = process_memory_node(fdt, node, name, depth, in early_scan_node()
[all …]
/xen/tools/libfsimage/reiserfs/
A Dfsys_reiserfs.c683 char* cache = CACHE(depth); in read_tree_node()
685 if (depth < num_cached) in read_tree_node()
698 blockNr, depth); in read_tree_node()
709 INFO->blocks[depth] = blockNr; in read_tree_node()
719 int depth; in next_key() local
747 depth++; in next_key()
749 printf (" depth=%d, i=%d\n", depth, INFO->next_key_nr[depth]); in next_key()
757 cache = CACHE (depth); in next_key()
760 cache = read_tree_node (ffi, INFO->blocks[depth], depth); in next_key()
812 int depth; in search_stat() local
[all …]
/xen/stubdom/vtpmmgr/
A Dvtpm_disk.c23 int vtpm_sync_disk(struct mem_tpm_mgr *mgr, int depth) in vtpm_sync_disk() argument
38 switch (depth) { in vtpm_sync_disk()
71 switch (depth) { in vtpm_sync_disk()
118 int vtpm_sync_group(struct mem_group *group, int depth) in vtpm_sync_group() argument
129 if (depth == GROUP_KEY_UPDATE) { in vtpm_sync_group()
136 depth = CTR_UPDATE; in vtpm_sync_group()
139 return vtpm_sync_disk(g_mgr, depth); in vtpm_sync_group()
A Dvtpm_disk.h225 int vtpm_sync_disk(struct mem_tpm_mgr *mgr, int depth);
226 int vtpm_sync_group(struct mem_group *group, int depth);
/xen/tools/misc/
A Dxenhypfs.c137 static int xenhypfs_tree_sub(char *path, unsigned int depth) in xenhypfs_tree_sub() argument
149 printf("%*s%s%s\n", depth * 2, "", ent[i].name, in xenhypfs_tree_sub()
152 if (asprintf(&p, "%s%s%s", path, (depth == 1) ? "" : "/", in xenhypfs_tree_sub()
157 if (xenhypfs_tree_sub(p, depth + 1)) in xenhypfs_tree_sub()
/xen/xen/arch/x86/oprofile/
A Dbacktrace.c148 unsigned long depth, int mode) in xenoprof_backtrace() argument
153 while (depth-- && valid_hypervisor_stack(head, regs)) in xenoprof_backtrace()
158 while (depth-- && head) in xenoprof_backtrace()
/xen/xen/include/public/io/
A Dfbif.h65 int32_t depth; /* depth in bits */ member
140 uint8_t depth; /* the depth of a pixel (in bits) */ member
/xen/xen/arch/arm/acpi/
A Dboot.c215 const char *uname, int depth, in dt_scan_depth1_nodes() argument
223 if (depth == 1 && (strcmp(uname, "chosen") != 0)) in dt_scan_depth1_nodes()
/xen/stubdom/grub/
A Dconfig.h10 struct fbfront_dev *fb_open(void *fb, int width, int height, int depth);
A Dmini-os.c664 struct fbfront_dev *fb_open(void *fb, int width, int height, int depth) in fb_open() argument
667 int linesize = width * (depth / 8); in fb_open()
679 fb_dev = init_fbfront(NULL, mfns, width, height, depth, linesize, numpages); in fb_open()
/xen/tools/xenstore/
A Dtalloc.c804 void talloc_report_depth(const void *ptr, FILE *f, int depth) in talloc_report_depth() argument
818 fprintf(f, "%*sreference to: %s\n", depth*4, "", name2); in talloc_report_depth()
822 depth*4, "", in talloc_report_depth()
827 talloc_report_depth(TC_PTR_FROM_CHUNK(c), f, depth+1); in talloc_report_depth()
916 …oid talloc_report_depth_str(const void *ptr, char **pps, ssize_t *plen, size_t *pbuflen, int depth) in talloc_report_depth_str() argument
932 "%*sreference to: %s\n", depth*4, "", name2); in talloc_report_depth_str()
939 depth*4, "", in talloc_report_depth_str()
945 talloc_report_depth_str(TC_PTR_FROM_CHUNK(c), pps, plen, pbuflen, depth+1); in talloc_report_depth_str()
A Dtalloc.h113 void talloc_report_depth(const void *ptr, FILE *f, int depth);
/xen/xen/xsm/flask/ss/
A Dpolicydb.c1055 int rc, i, j, depth; in read_cons_helper() local
1079 depth = -1; in read_cons_helper()
1101 if ( depth < 0 ) in read_cons_helper()
1106 if ( depth < 1 ) in read_cons_helper()
1108 depth--; in read_cons_helper()
1113 depth++; in read_cons_helper()
1120 depth++; in read_cons_helper()
1146 if ( depth != 0 ) in read_cons_helper()
1598 int depth = 0; in user_bounds_sanity_check() local
1638 int depth = 0; in role_bounds_sanity_check() local
[all …]
/xen/xen/include/asm-x86/
A Dxenoprof.h66 unsigned long depth, int mode);
/xen/xen/common/efi/
A Dboot.c132 UINTN cols, UINTN rows, UINTN depth);
803 UINTN cols, UINTN rows, UINTN depth) in efi_find_gop_mode() argument
833 (!depth || bpp == depth) ) in efi_find_gop_mode()
1239 UINTN depth, cols, rows, size; in efi_start() local
1241 size = cols = rows = depth = 0; in efi_start()
1355 depth = simple_strtoul(name.cs + 1, &name.cs, 10); in efi_start()
1357 cols = rows = depth = 0; in efi_start()
1369 gop_mode = efi_find_gop_mode(gop, cols, rows, depth); in efi_start()
/xen/stubdom/grub.patches/
A D60ext4.diff301 + int depth;
329 + while((depth = eh->eh_depth) != 0)
350 + /* depth==0, we come to the leaf */
/xen/xen/drivers/passthrough/vtd/
A Ddmar.c317 int depth, cnt, didx = 0, ret; in acpi_parse_dev_scope() local
334 depth = (acpi_scope->length - sizeof(*acpi_scope)) / sizeof(*path); in acpi_parse_dev_scope()
337 while ( --depth > 0 ) in acpi_parse_dev_scope()
/xen/xen/include/xen/
A Ddevice_tree.h162 int node, const char *name, int depth,
/xen/xen/include/xen/libfdt/
A Dlibfdt.h135 int fdt_next_node(const void *fdt, int offset, int *depth);
/xen/docs/misc/
A Defi.pandoc88 ###`video=gfx-<xres>[x<yres>[x<depth>]]`

Completed in 889 milliseconds

12