Searched refs:root (Results 1 - 25 of 498) sorted by relevance

1234567891011>>

/src/distrib/syspkg/sets/etc/etc-root-root/
H A DMakefile3 PKGBASE=etc-root-root
/src/sys/arch/playstation2/conf/
H A Dbuild.playstation2.sh5 root=/usr/pkg
8 EXTERNAL_TOOLCHAIN=${root}; export EXTERNAL_TOOLCHAIN
9 LD=${root}/bin/${target}-ld; export LD
10 CC=${root}/bin/${target}-gcc; export CC
11 CXX=${root}/bin/${target}-g++; export CXX
12 AS=${root}/bin/${target}-as; export AS
13 CPP=${root}/bin/${target}-cpp; export CPP
14 RANLIB=${root}/bin/${target}-ranlib; export RANLIB
15 AR=${root}/bin/${target}-ar; export AR
16 NM=${root}/bi
[all...]
/src/lib/libc/stdlib/
H A Dtwalk.c28 trecurse(const node_t *root, /* Root of the tree to be walked */ argument
31 _DIAGASSERT(root != NULL);
34 if (root->llink == NULL && root->rlink == NULL)
35 (*action)(root, leaf, level);
37 (*action)(root, preorder, level);
38 if (root->llink != NULL)
39 trecurse(root->llink, action, level + 1);
40 (*action)(root, postorder, level);
41 if (root
[all...]
/src/usr.bin/menuc/
H A Davl.c92 int insert_id (id_rec **root, id_rec *new_id) argument
96 /* If root is NULL, this where it is to be inserted. */
97 if (*root == NULL)
99 *root = new_id;
107 if (strcmp (new_id->id, (*root)->id) < 0)
110 if (insert_id (&((*root)->left), new_id))
113 (*root)->balance--;
115 switch ((*root)->balance)
122 A = *root;
123 B = (*root)
[all...]
/src/sys/external/bsd/drm2/dist/drm/i915/
H A Di915_syncmap.h35 void i915_syncmap_init(struct i915_syncmap **root);
36 int i915_syncmap_set(struct i915_syncmap **root, u64 id, u32 seqno);
37 bool i915_syncmap_is_later(struct i915_syncmap **root, u64 id, u32 seqno);
38 void i915_syncmap_free(struct i915_syncmap **root);
/src/distrib/syspkg/sets/base/base-adosfs-root/
H A DMakefile3 PKGBASE=base-adosfs-root
/src/distrib/syspkg/sets/base/base-bind-root/
H A DMakefile3 PKGBASE=base-bind-root
/src/distrib/syspkg/sets/base/base-cron-root/
H A DMakefile3 PKGBASE=base-cron-root
/src/distrib/syspkg/sets/base/base-crypto-root/
H A DMakefile3 PKGBASE=base-crypto-root
/src/distrib/syspkg/sets/base/base-ext2fs-root/
H A DMakefile3 PKGBASE=base-ext2fs-root
/src/distrib/syspkg/sets/base/base-filecorefs-root/
H A DMakefile3 PKGBASE=base-filecorefs-root
/src/distrib/syspkg/sets/base/base-games-root/
H A DMakefile3 PKGBASE=base-games-root
/src/distrib/syspkg/sets/base/base-krb5-root/
H A DMakefile3 PKGBASE=base-krb5-root
/src/distrib/syspkg/sets/base/base-lpr-root/
H A DMakefile3 PKGBASE=base-lpr-root
/src/distrib/syspkg/sets/base/base-mail-root/
H A DMakefile3 PKGBASE=base-mail-root
/src/distrib/syspkg/sets/base/base-miscfs-root/
H A DMakefile3 PKGBASE=base-miscfs-root
/src/distrib/syspkg/sets/base/base-netutil-root/
H A DMakefile3 PKGBASE=base-netutil-root
/src/distrib/syspkg/sets/base/base-nfsclient-root/
H A DMakefile3 PKGBASE=base-nfsclient-root
/src/distrib/syspkg/sets/base/base-nis-root/
H A DMakefile3 PKGBASE=base-nis-root
/src/distrib/syspkg/sets/base/base-ntfs-root/
H A DMakefile3 PKGBASE=base-ntfs-root
/src/distrib/syspkg/sets/base/base-postfix-root/
H A DMakefile3 PKGBASE=base-postfix-root
/src/distrib/syspkg/sets/base/base-router-root/
H A DMakefile3 PKGBASE=base-router-root
/src/distrib/syspkg/sets/base/base-sendmail-root/
H A DMakefile3 PKGBASE=base-sendmail-root
/src/distrib/syspkg/sets/base/base-slip-root/
H A DMakefile3 PKGBASE=base-slip-root
/src/distrib/syspkg/sets/base/base-sys-root/
H A DMakefile3 PKGBASE=base-sys-root

Completed in 20 milliseconds

1234567891011>>