Home
last modified time | relevance | path

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

1234567

/titanic_51/usr/src/cmd/fm/modules/common/eversholt/
H A Devnv.c44 outindent(int depth) in outindent() argument
46 while (depth-- > 0) in outindent()
54 evnv_cmpnvl(nvlist_t *nvl1, nvlist_t *nvl2, int depth) in evnv_cmpnvl() argument
77 outindent(depth); in evnv_cmpnvl()
87 outindent(depth); in evnv_cmpnvl()
104 if ((ret = evnv_cmpnvl(l1, l2, depth + 1)) != 0) in evnv_cmpnvl()
113 evnv_cmpnvl(*la1, *la2, depth + 1)) != 0) in evnv_cmpnvl()
127 outindent(depth); in evnv_cmpnvl()
141 outindent(depth); in evnv_cmpnvl()
152 outindent(depth); in evnv_cmpnvl()
[all...]
/titanic_51/usr/src/test/zfs-tests/tests/functional/cli_root/zfs_mount/
H A Dzfs_mount_006_pos.ksh78 typeset -i depth=0
81 while (( depth < MAXDEPTH )); do
82 mtpt=$mtpt/$depth
83 (( depth = depth + 1))
98 (( depth == MAXDEPTH )) && \
111 (( depth == MAXDEPTH )) && \
115 (( depth = depth - 1 ))
/titanic_51/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DFlow.java35 * direction (entry or return) and depth in the call stack. This
77 new String[] {"kind", "depth"})
113 private final int depth; field in Flow
117 * depth. Supports XML persistence.
121 * @param flowDepth current depth in the call stack
132 depth = flowDepth; in Flow()
133 if (depth < 0) { in Flow()
134 throw new IllegalArgumentException("depth is negative"); in Flow()
152 * Gets the current depth in the call stack.
157 * entered two functions but only returned from one, the depth i
[all...]
/titanic_51/usr/src/cmd/backup/dump/
H A Dlftw.c33 * int ftw (path, fn, depth) char *path; int (*fn)(); int depth;
73 * The third argument to ftw does not limit the depth to which
74 * ftw will go. Rather, it limits the depth to which ftw will
114 int depth) in lf_lftw() argument
121 rc = (lf_xftw(path, fn, depth, lstat64)); in lf_lftw()
132 int depth, in lf_xftw() argument
135 lf_xftw(char *path, int (*fn)(), int depth, int (*statfn)()) in lf_xftw()
179 rc = lf_xftw(".", fn, depth-1, statfn); in lf_xftw()
208 rc = lf_xftw(".", fn, depth in lf_xftw()
[all...]
/titanic_51/usr/src/grub/grub-0.97/stage2/
H A Dfsys_reiserfs.c324 /* The current depth of the reiser tree. */
653 printf ("root read_in: block=%d, depth=%d\n", in reiserfs_mount()
689 /* Read in the node at the current path and depth into the node cache.
690 * You must set INFO->blocks[depth] before.
693 read_tree_node (unsigned int blockNr, int depth) in read_tree_node() argument
695 char* cache = CACHE(depth); in read_tree_node()
697 if (depth < num_cached) in read_tree_node()
702 if (blockNr == INFO->blocks[depth]) in read_tree_node()
709 printf (" next read_in: block=%d (depth=%d)\n", in read_tree_node()
710 blockNr, depth); in read_tree_node()
731 int depth; next_key() local
824 int depth; search_stat() local
[all...]
/titanic_51/usr/src/lib/libast/common/cdt/
H A Ddtstat.c30 static void dttstat(Dtstat_t* ds, Dtlink_t* root, int depth, int* level) in dttstat() argument
32 static void dttstat(ds,root,depth,level) in dttstat()
35 int depth;
40 dttstat(ds,root->left,depth+1,level);
42 dttstat(ds,root->right,depth+1,level);
43 if(depth > ds->dt_n)
44 ds->dt_n = depth;
46 level[depth] += 1;
/titanic_51/usr/src/common/smbsrv/
H A Dsmb_match.c39 * Maximum recursion depth for the wildcard match functions.
45 int depth; member
107 priv.depth = 0; in smb_match()
131 * can call itself recursively, though it limits the recursion depth.
148 if (priv->depth >= SMB_MATCH_DEPTH_MAX) in smb_match_private()
188 priv->depth++; in smb_match_private()
190 priv->depth--; in smb_match_private()
202 priv->depth++; in smb_match_private()
204 priv->depth--; in smb_match_private()
/titanic_51/usr/src/cmd/mdb/common/modules/genunix/
H A Dcyclic.c133 int ndx, int l, int r, int depth) in cyclic_dump_node() argument
148 (void) mdb_snprintf(&c[depth][x - 1], n, " %d", me); in cyclic_dump_node()
150 (void) mdb_snprintf(&c[depth][x - 1], n, "%3d", me); in cyclic_dump_node()
152 (void) mdb_snprintf(&c[depth][x - 1], n, "%s%2d%s", in cyclic_dump_node()
158 c[++depth][x] = '|'; in cyclic_dump_node()
159 depth++; in cyclic_dump_node()
162 c[depth][i] = '-'; in cyclic_dump_node()
163 c[depth][l + (r - l) / 4] = '+'; in cyclic_dump_node()
164 c[depth][r - (r - l) / 4 - 1] = '+'; in cyclic_dump_node()
165 c[depth][ in cyclic_dump_node()
197 int depth; cyclic_pretty_dump() local
[all...]
/titanic_51/usr/src/uts/sparc/os/
H A Dbootdev.c104 int depth, old_depth = 0; in i_devi_to_promname() local
125 for (depth = 0; ndi_dev_is_prom_node(pdip) == 0; depth++) { in i_devi_to_promname()
126 if (depth == OBP_STACKDEPTH) { in i_devi_to_promname()
131 pdip = get_parent(pdip, &parinfo[depth]); in i_devi_to_promname()
133 old_depth = depth; in i_devi_to_promname()
140 for (depth = old_depth; depth > 0; depth--) { in i_devi_to_promname()
141 info = &parinfo[depth in i_devi_to_promname()
[all...]
H A Darchdep.c75 * Returns MIN(current stack depth, pcstack_limit).
83 int depth; in getpcstack() local
110 for (depth = 0; depth < npcwin; depth++) { in getpcstack()
111 pcstack[depth] = pcswin[depth]; in getpcstack()
116 while (depth < pcstack_limit) { in getpcstack()
130 pcstack[depth++] = nextpc; in getpcstack()
137 return (depth); in getpcstack()
[all...]
/titanic_51/usr/src/cmd/sgs/unifdef/common/
H A Dunifdef.c73 static int doif(int thissym, int inif, int prevreject, int depth);
79 static int error(int err, int line, int depth);
216 int depth /* depth of ifdef's */ in doif() argument
250 thisreject, depth + 1)) != NO_ERR) in doif()
251 return (error(doret, stline, depth)); in doif()
257 reject, depth + 1)) != NO_ERR) in doif()
258 return (error(doret, stline, depth)); in doif()
263 return (error(ELSE_ERR, linenum, depth)); in doif()
280 return (error(ENDIF_ERR, linenum, depth)); in doif()
584 error(int err,int line,int depth) error() argument
[all...]
/titanic_51/usr/src/cmd/mail/
H A Dgetcomment.c46 int depth = 0; in getcomment() local
57 depth--; in getcomment()
58 if (depth == 0) { in getcomment()
62 depth++; in getcomment()
/titanic_51/usr/src/lib/libbc/libc/gen/common/
H A Dftw.c36 * int ftw (path, fn, depth) char *path; int (*fn)(); int depth;
77 * The third argument to ftw does not limit the depth to which
78 * ftw will go. Rather, it limits the depth to which ftw will
108 ftw(path, fn, depth) in ftw() argument
111 int depth;
198 * If we are about to exceed our depth,
201 if(depth <= 1) {
210 rc = ftw(subpath, fn, depth-1);
213 if(depth >
[all...]
/titanic_51/usr/src/cmd/sort/common/
H A Dinternal.c47 * should have already been sorted to that depth).
52 ssize_t depth, flag_t coll_flags) in offset_is_algorithm() argument
62 if (collate_fcn(X[0], X[i], depth, coll_flags) > 0) { in offset_is_algorithm()
64 ASSERT(collate_fcn(X[0], X[i], depth, coll_flags) <= 0); in offset_is_algorithm()
74 while (collate_fcn(t, X[j - 1], depth, coll_flags) < 0) { in offset_is_algorithm()
185 rqs_algorithm(line_rec_t **X, ssize_t n, ssize_t depth, in rqs_algorithm() argument
208 offset_is_algorithm(X, n, collate_fcn, depth, coll_flags); in rqs_algorithm()
217 v = X[0]->l_collate.usp[depth]; in rqs_algorithm()
224 (p = *(X[l]->l_collate.usp + depth) - v) <= 0) { in rqs_algorithm()
235 (p = *(X[r]->l_collate.usp + depth) in rqs_algorithm()
[all...]
/titanic_51/usr/src/cmd/sgs/rtld.4.x/
H A Ddiv.s79 * $1 -- the current depth, 1<=$1<=4
81 * 4 -- max depth
219 !depth 1, accumulated bits 0
224 !depth 2, accumulated bits 1
229 !depth 3, accumulated bits 3
234 !depth 4, accumulated bits 7
252 !depth 4, accumulated bits 5
273 !depth 3, accumulated bits 1
278 !depth 4, accumulated bits 3
296 !depth
[all...]
H A Drem.s79 * $1 -- the current depth, 1<=$1<=4
81 * 4 -- max depth
218 !depth 1, accumulated bits 0
223 !depth 2, accumulated bits 1
228 !depth 3, accumulated bits 3
233 !depth 4, accumulated bits 7
251 !depth 4, accumulated bits 5
272 !depth 3, accumulated bits 1
277 !depth 4, accumulated bits 3
295 !depth
[all...]
/titanic_51/usr/src/lib/libc/port/gen/
H A D_xftw.c35 * int _xftw(path, fn, depth) char *path; int (*fn)(); int depth;
76 * The third argument to _xftw does not limit the depth to which
77 * _xftw will go. Rather, it limits the depth to which _xftw will
83 * during the call to openat(), therefore if the depth argument
122 int (*fn)(const char *, const struct stat *, int), int depth) in _xftw() argument
128 var.odepth = depth; in _xftw()
129 rc = fwalk(path, fn, depth, &var); in _xftw()
138 int depth, struct Var *vp) in fwalk() argument
229 * If we are about to exceed our depth, in fwalk()
[all...]
/titanic_51/usr/src/cmd/acct/lib/
H A Ddevtolin.c81 search its top level for now (set depth = MAX_SEARCH_DEPTH) */
120 srch_dir(device, path, depth, skip_dirs) in srch_dir() argument
123 int depth; /* current depth */
136 if ((skip_dirs != NULL) && (depth != 0))
174 } else if ((depth < MAX_SRCH_DEPTH) &&
179 found = srch_dir(device, file_name, depth+1, skip_dirs);
/titanic_51/usr/src/lib/efcode/fcdriver/
H A Dbuild_tree.c139 int n, allocd, depth; in build_nodes() local
153 depth = 0; in build_nodes()
156 node_array = REALLOC(node_array, allocd*(depth+1)); in build_nodes()
159 node_array[depth] = pd; in build_nodes()
168 depth++; in build_nodes()
172 for (n = 0; n < (depth-1); n++) { in build_nodes()
178 for (n = 0; n < depth; n++) { in build_nodes()
/titanic_51/usr/src/head/
H A Dftw.h153 #define ftw(path, fn, depth) _xftw(_XFTWVER, (path), (fn), (depth)) argument
157 #define ftw64(path, fn, depth) _xftw64(_XFTWVER, (path), (fn), (depth)) argument
/titanic_51/usr/src/uts/sparc/dtrace/
H A Ddtrace_isa.c87 * in the difference between the stack depth and pcstack_limit with NULLs.
106 int depth = 0; in dtrace_getpcstack() local
146 if (depth < pcstack_limit) in dtrace_getpcstack()
147 pcstack[depth++] = (pc_t)(uintptr_t)pc; in dtrace_getpcstack()
287 while (depth < pcstack_limit) { in dtrace_getpcstack()
300 ASSERT(depth == 0); in dtrace_getpcstack()
302 while (depth < pcstack_limit) in dtrace_getpcstack()
303 pcstack[depth++] = NULL; in dtrace_getpcstack()
342 pcstack[depth++] = (pc_t)fp->fr_savpc; in dtrace_getpcstack()
345 while (depth < pcstack_limi in dtrace_getpcstack()
704 int depth = 0; dtrace_getstackdepth() local
[all...]
/titanic_51/usr/src/uts/intel/dtrace/
H A Ddtrace_isa.c48 int depth = 0; in dtrace_getpcstack() local
61 if (intrpc != NULL && depth < pcstack_limit) in dtrace_getpcstack()
62 pcstack[depth++] = (pc_t)intrpc; in dtrace_getpcstack()
64 while (depth < pcstack_limit) { in dtrace_getpcstack()
93 ASSERT(depth < pcstack_limit); in dtrace_getpcstack()
94 pcstack[depth++] = (pc_t)caller; in dtrace_getpcstack()
98 if (depth < pcstack_limit) in dtrace_getpcstack()
99 pcstack[depth++] = (pc_t)pc; in dtrace_getpcstack()
103 while (depth < pcstack_limit) in dtrace_getpcstack()
104 pcstack[depth in dtrace_getpcstack()
510 int depth = 0; dtrace_getstackdepth() local
[all...]
/titanic_51/usr/src/tools/protocmp/
H A Dlist.c250 int depth = 0; in add_elem() local
255 depth++; in add_elem()
262 if (depth > max_list_depth) in add_elem()
263 max_list_depth = depth; in add_elem()
275 if (depth > max_list_depth) in add_elem()
276 max_list_depth = depth; in add_elem()
/titanic_51/usr/src/lib/libumem/common/
H A Dgetpcstack.c52 * Returns MIN(current stack depth, pcstack_limit).
60 int depth = 0; in getpcstack() local
134 while (depth < pcstack_limit) { in getpcstack()
183 pcstack[depth++] = fp->fr_savpc; in getpcstack()
187 return (depth); in getpcstack()
/titanic_51/usr/src/cmd/scadm/sparc/mpxu/common/
H A Dsmq.c47 smq_init(smq_t *smq, smq_msg_t *msgbuffer, int depth) in smq_init() argument
58 smq->smq_depth = depth; in smq_init()
141 smq_depth(smq_t *smq, int *depth) in smq_depth() argument
146 *depth = smq->smq_depth; in smq_depth()

1234567