HomeSort by: relevance | last modified time | path
    Searched refs:parent (Results 1 - 25 of 4773) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/cddl/osnet/dist/uts/common/fs/zfs/
zfs.conf 28 name="zfs" parent="pseudo";
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.rocm/
precise-memory-fork.c 21 parent (void) function
36 parent ();
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.rocm/
precise-memory-fork.c 21 parent (void) function
36 parent ();
  /src/external/gpl2/dtc/dist/tests/
overlay_overlay_local_merge.dts 13 parent: new-node {
14 parent-property;
18 &parent {
  /src/external/bsd/elftoolchain/dist/libelf/
elf_next.c 49 Elf *parent; local
54 if ((parent = e->e_parent) == NULL) {
59 assert(parent->e_kind == ELF_K_AR);
60 assert(parent->e_cmd == ELF_C_READ);
61 assert(e->e_rawfile > parent->e_rawfile);
63 next = e->e_rawfile - parent->e_rawfile + (off_t) e->e_rawsize;
70 parent->e_u.e_ar.e_next = (next >= (off_t) parent->e_rawsize) ?
77 * This check is performed after updating the parent descriptor's
82 if (next > (off_t) parent->e_rawsize)
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
nested-subp3.c 23 extern void parent (int first, callback_t cb);
34 parent (0, cb);
38 parent (int first, callback_t cb) function
42 /* When reaching this, there are two block instances for PARENT on the
64 parent (1, NULL);
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
nested-subp3.c 23 extern void parent (int first, callback_t cb);
34 parent (0, cb);
38 parent (int first, callback_t cb) function
42 /* When reaching this, there are two block instances for PARENT on the
64 parent (1, NULL);
  /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/arm/
arm-realview-eb-mp.dtsi 58 interrupt-parent = <&intc>;
65 interrupt-parent = <&intc>;
94 interrupt-parent = <&intc>;
101 interrupt-parent = <&intc>;
108 interrupt-parent = <&intc>;
123 interrupt-parent = <&intc>;
128 interrupt-parent = <&intc>;
133 interrupt-parent = <&intc>;
138 interrupt-parent = <&intc>;
144 interrupt-parent = <&intc>
    [all...]
arm-realview-pba8.dts 45 interrupt-parent = <&intc>;
62 interrupt-parent = <&intc>;
67 interrupt-parent = <&intc>;
80 interrupt-parent = <&intc>;
85 interrupt-parent = <&intc>;
90 interrupt-parent = <&intc>;
95 interrupt-parent = <&intc>;
100 interrupt-parent = <&intc>;
105 interrupt-parent = <&intc>;
110 interrupt-parent = <&intc>
    [all...]
arm-realview-eb.dts 68 interrupt-parent = <&intc>;
73 interrupt-parent = <&intc>;
78 interrupt-parent = <&intc>;
83 interrupt-parent = <&intc>;
89 interrupt-parent = <&intc>;
94 interrupt-parent = <&intc>;
99 interrupt-parent = <&intc>;
104 interrupt-parent = <&intc>;
109 interrupt-parent = <&intc>;
114 interrupt-parent = <&intc>
    [all...]
arm-realview-pbx-a9.dts 89 interrupt-parent = <&intc>;
96 interrupt-parent = <&intc>;
102 interrupt-parent = <&intc>;
120 interrupt-parent = <&intc>;
125 interrupt-parent = <&intc>;
130 interrupt-parent = <&intc>;
135 interrupt-parent = <&intc>;
140 interrupt-parent = <&intc>;
145 interrupt-parent = <&intc>;
150 interrupt-parent = <&intc>
    [all...]
  /src/external/bsd/mdocml/dist/
eqn.c 513 * Allocate a box as the last child of the parent node.
516 eqn_box_alloc(struct eqn_node *ep, struct eqn_box *parent)
521 bp->parent = parent;
522 bp->parent->args++;
523 bp->font = bp->parent->font;
526 if (NULL != parent->first) {
527 parent->last->next = bp;
528 bp->prev = parent->last;
530 parent->first = bp
662 struct eqn_box *cur, *nbox, *parent, *split; local
    [all...]
  /src/external/mit/libuv/dist/src/
heap-inl.h 30 struct heap_node* parent; member in struct:heap_node
71 /* Swap parent with child. Child moves closer to the root, parent moves away. */
73 struct heap_node* parent,
78 t = *parent;
79 *parent = *child;
82 parent->parent = child;
84 child->left = parent;
87 child->right = parent;
109 struct heap_node** parent; local
    [all...]
  /src/sys/external/bsd/ipf/netinet/
ipf_rb.h 75 struct _t *parent; \
103 _t *parent, *tmp1, *tmp2; \
105 parent = node->_f.parent; \
110 tmp2->_f.parent = node; \
111 if (parent == & _n##_rb_zero) \
113 else if (parent->_f.right == node) \
114 parent->_f.right = tmp1; \
116 parent->_f.left = tmp1; \
118 tmp1->_f.parent = parent;
    [all...]
  /src/external/bsd/ipf/dist/
ipf_rb.h 18 struct _t *parent; \
42 _t *parent, *tmp1, *tmp2; \
44 parent = node->_f.parent; \
49 tmp2->_f.parent = node; \
50 if (parent == & _n##_rb_zero) \
52 else if (parent->_f.right == node) \
53 parent->_f.right = tmp1; \
55 parent->_f.left = tmp1; \
57 tmp1->_f.parent = parent;
    [all...]
  /src/external/gpl3/binutils/dist/gprofng/src/
gmon_cg_arcs.cc 44 * Return TRUE iff PARENT has an arc to covers the address
48 arc_lookup (Sym *parent, Sym *child)
52 if (!parent || !child)
54 printf ("[arc_lookup] parent == 0 || child == 0\n");
57 DBG (LOOKUPDEBUG, printf ("[arc_lookup] parent %s child %s\n",
58 parent->name, child->name));
59 for (arc = parent->cg.children; arc; arc = arc->next_child)
61 DBG (LOOKUPDEBUG, printf ("[arc_lookup]\t parent %s child %s\n",
62 arc->parent->name, arc->child->name));
77 arc_add (Sym *parent, Sym *child, unsigned long count
    [all...]
cg_arcs.h 26 * With pointers to the symbols of the parent and the child, a count
28 * parent of this child and the next child of this parent.
32 Sym *parent; /* source vertice of arc */ member in struct:arc
34 unsigned long count; /* # of calls from parent to child */
37 struct arc *next_parent; /* next parent of CHILD */
38 struct arc *next_child; /* next child of PARENT */
46 extern void arc_add (Sym * parent, Sym * child, unsigned long count);
47 extern Arc *arc_lookup (Sym * parent, Sym * child);
  /src/external/bsd/nsd/dist/
rbtree.c 21 RBTREE_NULL, /* Parent. */
75 right->left->parent = node;
77 right->parent = node->parent;
79 if (node->parent != RBTREE_NULL) {
80 if (node == node->parent->left) {
81 node->parent->left = right;
83 node->parent->right = right;
89 node->parent = right;
108 left->right->parent = node
206 rbnode_type *parent; local
581 rbnode_type *parent; local
600 rbnode_type *parent; local
    [all...]
  /src/external/bsd/unbound/dist/util/
rbtree.c 54 RBTREE_NULL, /* Parent. */
113 right->left->parent = node;
115 right->parent = node->parent;
117 if (node->parent != RBTREE_NULL) {
118 if (node == node->parent->left) {
119 node->parent->left = right;
121 node->parent->right = right;
127 node->parent = right;
140 left->right->parent = node
235 rbnode_type *parent = RBTREE_NULL; local
573 rbnode_type *parent; local
592 rbnode_type *parent; local
    [all...]
  /src/crypto/external/apache2/openssl/dist/util/
mkdir-p.pl 9 # On some systems, the -p option to mkdir (= also create any missing parent
30 local($parent) = $dir;
31 $parent =~ s|[^/]*\Z(?!\n)||s;
33 do_mkdir_p($parent);
  /src/crypto/external/bsd/openssl/dist/util/
mkdir-p.pl 9 # On some systems, the -p option to mkdir (= also create any missing parent
30 local($parent) = $dir;
31 $parent =~ s|[^/]*\Z(?!\n)||s;
33 do_mkdir_p($parent);
  /src/crypto/external/bsd/openssl.old/dist/util/
mkdir-p.pl 9 # On some systems, the -p option to mkdir (= also create any missing parent
30 local($parent) = $dir;
31 $parent =~ s|[^/]*\Z(?!\n)||s;
33 do_mkdir_p($parent);
  /src/external/gpl3/binutils/dist/gprof/
cg_arcs.h 26 * With pointers to the symbols of the parent and the child, a count
28 * parent of this child and the next child of this parent.
32 Sym *parent; /* source vertice of arc */ member in struct:arc
34 unsigned long count; /* # of calls from parent to child */
37 struct arc *next_parent; /* next parent of CHILD */
38 struct arc *next_child; /* next child of PARENT */
46 extern void arc_add (Sym * parent, Sym * child, unsigned long count);
47 extern Arc *arc_lookup (Sym * parent, Sym * child);
  /src/external/gpl3/binutils.old/dist/gprof/
cg_arcs.h 26 * With pointers to the symbols of the parent and the child, a count
28 * parent of this child and the next child of this parent.
32 Sym *parent; /* source vertice of arc */ member in struct:arc
34 unsigned long count; /* # of calls from parent to child */
37 struct arc *next_parent; /* next parent of CHILD */
38 struct arc *next_child; /* next child of PARENT */
46 extern void arc_add (Sym * parent, Sym * child, unsigned long count);
47 extern Arc *arc_lookup (Sym * parent, Sym * child);
  /src/lib/libc/arch/powerpc/sys/
__vfork14.S 6 * r4 == 0 in parent process, 1 in child process.
7 * r3 == pid of child in parent, pid of parent in child.
13 addi %r4,%r4,-1 # from 1 to 0 in child, 0 to -1 in parent
14 and %r3,%r3,%r4 # return 0 in child, pid in parent

Completed in 38 milliseconds

1 2 3 4 5 6 7 8 91011>>