Home | History | Annotate | Download | only in libop

Lines Matching refs:depth

102  * @param max_depth  number of entry in array ctr_arc == depth of tree
103 * @param depth current level we are exploring
126 allocate_counter(counter_arc_head const * ctr_arc, int max_depth, int depth,
131 if (depth == max_depth)
135 if((&ctr_arc[depth].next)->next == &ctr_arc[depth].next) {
136 counter_map[depth] = -1;
137 if (allocate_counter(ctr_arc, max_depth, depth + 1,
142 list_for_each(pos, &ctr_arc[depth].next) {
148 counter_map[depth] = arc->counter;
150 if (allocate_counter(ctr_arc, max_depth, depth + 1,