root 57 compat/common/compat_util.h #define CHECK_ALT_EXIST(p, sgp, root, path) \
root 58 compat/common/compat_util.h emul_find(p, sgp, root, path, &(path), 0)
root 60 compat/common/compat_util.h #define CHECK_ALT_CREAT(p, sgp, root, path) \
root 61 compat/common/compat_util.h emul_find(p, sgp, root, path, &(path), 1)
root 333 dev/acpi/acpidebug.c struct aml_scope *root;
root 337 dev/acpi/acpidebug.c for (root=aml_lastscope; root && root->pos; root=root->parent) {
root 338 dev/acpi/acpidebug.c db_printf("%.4x Called: %s\n", aml_pc(root->pos),
root 339 dev/acpi/acpidebug.c aml_nodename(root->node));
root 340 dev/acpi/acpidebug.c for (idx = 0; idx<root->nargs; idx++) {
root 342 dev/acpi/acpidebug.c db_aml_showvalue(&root->args[idx]);
root 344 dev/acpi/acpidebug.c for (idx = 0; root->locals && idx < AML_MAX_LOCAL; idx++) {
root 345 dev/acpi/acpidebug.c if (root->locals[idx].type) {
root 347 dev/acpi/acpidebug.c db_aml_showvalue(&root->locals[idx]);
root 400 dev/acpi/acpidebug.c db_aml_disasm(struct aml_node *root, uint8_t *start, uint8_t *end,
root 413 dev/acpi/acpidebug.c scope = aml_pushscope(NULL, start, end, root);
root 493 dev/acpi/acpiec.c struct aml_node *root;
root 502 dev/acpi/acpiec.c root = aml_searchname(sc->sc_devnode, "_REG");
root 503 dev/acpi/acpiec.c if (root == NULL) {
root 508 dev/acpi/acpiec.c if (aml_evalnode(sc->sc_acpi, root, 2, arg, NULL) != 0) {
root 298 dev/acpi/dsdt.c struct aml_scope *root;
root 307 dev/acpi/dsdt.c for (root = aml_lastscope; root && root->pos; root = root->parent) {
root 308 dev/acpi/dsdt.c printf("%.4x Called: %s\n", aml_pc(root->pos),
root 309 dev/acpi/dsdt.c aml_nodename(root->node));
root 310 dev/acpi/dsdt.c for (idx = 0; idx < root->nargs; idx++) {
root 312 dev/acpi/dsdt.c aml_showvalue(&root->args[idx], 0);
root 314 dev/acpi/dsdt.c for (idx = 0; root->locals && idx < AML_MAX_LOCAL; idx++) {
root 315 dev/acpi/dsdt.c if (root->locals[idx].type) {
root 317 dev/acpi/dsdt.c aml_showvalue(&root->locals[idx], 0);
root 675 dev/acpi/dsdt.c __aml_search(struct aml_node *root, uint8_t *nameseg)
root 677 dev/acpi/dsdt.c if (root == NULL)
root 679 dev/acpi/dsdt.c for (root = root->child; root; root = root->sibling) {
root 680 dev/acpi/dsdt.c if (!memcmp(root->name, nameseg, AML_NAMESEG_LEN))
root 681 dev/acpi/dsdt.c return root;
root 741 dev/acpi/dsdt.c aml_createname(struct aml_node *root, const void *vname, struct aml_value *value)
root 748 dev/acpi/dsdt.c root = &aml_root;
root 751 dev/acpi/dsdt.c while (*name == AMLOP_PARENTPREFIX && root) {
root 752 dev/acpi/dsdt.c root = root->parent;
root 757 dev/acpi/dsdt.c return root;
root 771 dev/acpi/dsdt.c while (count-- && root) {
root 773 dev/acpi/dsdt.c if ((node = __aml_search(root, name)) == NULL) {
root 777 dev/acpi/dsdt.c for (pp = &root->child; *pp; pp = &(*pp)->sibling)
root 779 dev/acpi/dsdt.c node->parent = root;
root 783 dev/acpi/dsdt.c root = node;
root 796 dev/acpi/dsdt.c aml_searchname(struct aml_node *root, const void *vname)
root 803 dev/acpi/dsdt.c root = &aml_root;
root 806 dev/acpi/dsdt.c while (*name == AMLOP_PARENTPREFIX && root) {
root 807 dev/acpi/dsdt.c root = root->parent;
root 815 dev/acpi/dsdt.c return root;
root 827 dev/acpi/dsdt.c while (*name && (root = __aml_search(root, name)) != NULL) {
root 830 dev/acpi/dsdt.c return root;
root 833 dev/acpi/dsdt.c while (root && (node = __aml_search(root, name)) == NULL) {
root 834 dev/acpi/dsdt.c root = root->parent;
root 839 dev/acpi/dsdt.c while (count-- && (root = __aml_search(root, name)) != NULL) {
root 842 dev/acpi/dsdt.c return root;
root 2307 dev/acpi/dsdt.c aml_getpciaddr(struct acpi_softc *sc, struct aml_node *root)
root 2314 dev/acpi/dsdt.c if (!aml_evalname(dsdt_softc, root, "_ADR", 0, NULL, &tmpres)) {
root 2318 dev/acpi/dsdt.c dnprintf(20, "got _adr [%s]\n", aml_nodename(root));
root 2325 dev/acpi/dsdt.c if (!aml_evalname(dsdt_softc, root, "_BBN", 0, NULL, &tmpres)) {
root 2329 dev/acpi/dsdt.c dnprintf(20, "got _bbn [%s]\n", aml_nodename(root));
root 2331 dev/acpi/dsdt.c dnprintf(20, "got pciaddr: %s:%llx\n", aml_nodename(root), pciaddr);
root 65 isofs/cd9660/cd9660_extern.h char root[ISODCL (157, 190)];
root 358 isofs/cd9660/cd9660_vfsops.c bcopy (rootp, isomp->root, sizeof isomp->root);
root 426 isofs/cd9660/cd9660_vfsops.c bcopy(rootp, isomp->root, sizeof isomp->root);
root 602 isofs/cd9660/cd9660_vfsops.c (struct iso_directory_record *)imp->root;
root 44 lib/libz/inftrees.c unsigned root; /* number of index bits for root table */
root 114 lib/libz/inftrees.c root = *bits;
root 117 lib/libz/inftrees.c if (root > max) root = max;
root 129 lib/libz/inftrees.c if (root < min) root = min;
root 206 lib/libz/inftrees.c curr = root; /* current table index bits */
root 209 lib/libz/inftrees.c used = 1U << root; /* use root table entries */
root 261 lib/libz/inftrees.c if (len > root && (huff & mask) != low) {
root 264 lib/libz/inftrees.c drop = root;
root 287 lib/libz/inftrees.c (*table)[low].bits = (unsigned char)root;
root 306 lib/libz/inftrees.c len = root;
root 328 lib/libz/inftrees.c *bits = root;
root 62 sys/tree.h #define SPLAY_INITIALIZER(root) \
root 65 sys/tree.h #define SPLAY_INIT(root) do { \
root 66 sys/tree.h (root)->sph_root = NULL; \
root 296 sys/tree.h #define RB_INITIALIZER(root) \
root 299 sys/tree.h #define RB_INIT(root) do { \
root 300 sys/tree.h (root)->rbh_root = NULL; \
root 55 xfs/xfs_fs.h struct xfs_node *root;
root 72 xfs/xfs_message.c if (xfs[fd].root != NULL) {
root 76 xfs/xfs_message.c error = new_xfs_node(&xfs[fd], &message->node, &xfs[fd].root, p);
root 79 xfs/xfs_message.c NNPFS_MAKE_VROOT(xfs[fd].root->vn);
root 222 xfs/xfs_node-bsd.c if (xfsp->root) {
root 225 xfs/xfs_node-bsd.c vgone(XNODE_TO_VNODE(xfsp->root));
root 226 xfs/xfs_node-bsd.c xfsp->root = NULL;
root 137 xfs/xfs_vfsops-common.c xfs[minor(dev)].root = 0;
root 266 xfs/xfs_vfsops-common.c if (xfsp->root != NULL) {
root 267 xfs/xfs_vfsops-common.c *vpp = XNODE_TO_VNODE(xfsp->root);