Searched refs:maxdepth (Results 1 - 25 of 38) sorted by relevance

12

/macosx-10.10/tcl-105/tk84/tk/generic/
H A DtkUndo.c162 TkUndoRedoStack * TkUndoInitStack ( interp, maxdepth )
164 int maxdepth; /* The maximum stack depth */
171 stack->maxdepth = maxdepth;
189 void TkUndoSetDepth ( stack, maxdepth )
191 int maxdepth; /* The maximum stack depth */
197 stack->maxdepth = maxdepth;
199 if ((stack->maxdepth > 0) && (stack->depth > stack->maxdepth)) {
[all...]
H A DtkUndo.h51 int maxdepth; member in struct:TkUndoRedoStack
69 int maxdepth));
72 int maxdepth));
/macosx-10.10/tcl-105/tk/tk/generic/
H A DtkUndo.h88 int maxdepth; member in struct:TkUndoRedoStack
105 MODULE_SCOPE TkUndoRedoStack *TkUndoInitStack(Tcl_Interp *interp, int maxdepth);
106 MODULE_SCOPE void TkUndoSetDepth(TkUndoRedoStack *stack, int maxdepth);
H A DtkUndo.c350 int maxdepth) /* The maximum stack depth */
358 stack->maxdepth = maxdepth;
384 int maxdepth) /* The maximum stack depth */
386 stack->maxdepth = maxdepth;
388 if (stack->maxdepth>0 && stack->depth>stack->maxdepth) {
399 while ((elem != NULL) && (sepNumber <= stack->maxdepth)) {
434 stack->depth = stack->maxdepth;
340 TkUndoInitStack( Tcl_Interp *interp, int maxdepth) argument
373 TkUndoSetDepth( TkUndoRedoStack *stack, int maxdepth) argument
[all...]
/macosx-10.10/tcl-105/tcl_ext/tclxml/tclxslt/
H A Dtclxsltproc74 [list maxdepth.arg {} {increase the maximum depth}] \
102 maxdepth 0
141 --maxdepth {
142 set Config(maxdepth) [lindex $argv [expr $idx + 1]]
/macosx-10.10/postfix-255/postfix/examples/chroot-setup/
H A DLINUX240 # restrict find to maxdepth 1 (faster)
55 lr=`find "$dir" -maxdepth 1 -name "$pat"`
/macosx-10.10/shell_cmds-179/find/
H A Dmain.c72 int mindepth = -1, maxdepth = -1; /* minimum and maximum depth */ variable
H A Dextern.h119 extern int mindepth, maxdepth;
H A Dfind.c269 if (maxdepth != -1 && entry->fts_level >= maxdepth) {
/macosx-10.10/JavaScriptCore-7600.1.17/
H A Dcreate_hash_table166 my $maxdepth = 0;
184 $maxdepth = $depth if ( $depth > $maxdepth);
/macosx-10.10/emacs-93/emacs/lisp/gnus/
H A Dnnweb.el560 (defun nnweb-parse-find (type parse &optional maxdepth)
563 (nnweb-parse-find-1 type parse maxdepth)))
565 (defun nnweb-parse-find-1 (type contents maxdepth)
566 (when (or (null maxdepth)
567 (not (zerop maxdepth)))
575 (and maxdepth (1- maxdepth)))))))))
/macosx-10.10/Chess-310.6/sjeng/
H A Dextvars.h39 extern int xb_mode, maxdepth;
H A Dsjeng.c54 int xb_mode, maxdepth; variable
197 maxdepth = 40;
880 sscanf(input+3, "%d", &maxdepth);
881 printf("New max depth set to: %d\n", maxdepth);
H A Dsearch.c316 if (depth <= 0 || ply > maxdepth)
565 /* perform check extensions if we haven't gone past maxdepth: */
566 if (ply < maxdepth+1 && incheck && ((ply <= i_depth*2) || (depth == 0)))
572 else if ((ply < maxdepth+1) && (ply > 2) && (ply < (i_depth*2))
584 if (depth <= 0 || ply >= maxdepth)
590 score = qsearch (alpha, beta, maxdepth);
1685 for (i_depth = 1; i_depth <= maxdepth; i_depth++) {
/macosx-10.10/hfs-285/fsck_hfs/dfalib/
H A DVolumeBitmapCheck.c112 static void BMS_MaxDepth(BMS_Node * root, int depth, int *maxdepth);
181 int maxdepth = 0; local
183 BMS_MaxDepth(gBMS_Root, 0, &maxdepth);
185 gFullSegments, gSegmentNodes, maxdepth);
1469 BMS_MaxDepth(BMS_Node * root, int depth, int *maxdepth) argument
1473 if (depth > *maxdepth)
1474 *maxdepth = depth;
1475 BMS_MaxDepth(root->left, depth, maxdepth);
1476 BMS_MaxDepth(root->right, depth, maxdepth);
/macosx-10.10/uucp-11/
H A DMakefile71 for newfile in $(shell find $(AEP_TarDir)/new -maxdepth 1 -type f); do \
/macosx-10.10/emacs-93/emacs/src/
H A Dw32menu.c445 single_keymap_panes (keymap, pane_name, prefix, notreal, maxdepth)
450 int maxdepth;
456 if (maxdepth <= 0)
469 &pending_maps, notreal, maxdepth);
480 &pending_maps, notreal, maxdepth);
496 XCDR (eltcdr), notreal, maxdepth - 1);
512 single_menu_item (key, item, pending_maps_ptr, notreal, maxdepth)
515 int maxdepth, notreal;
535 single_keymap_panes (map, Qnil, key, 1, maxdepth - 1);
562 single_keymap_panes (map, Qnil, key, 0, maxdepth
465 &pending_maps, notreal, maxdepth); local
[all...]
H A Dbytecode.c410 (bytestr, vector, maxdepth)
411 Lisp_Object bytestr, vector, maxdepth;
442 CHECK_NUMBER (maxdepth);
458 stack.bottom = (Lisp_Object *) alloca (XFASTINT (maxdepth)
466 stacke = stack.bottom - 1 + XFASTINT (maxdepth);
406 Lisp_Object bytestr, vector, maxdepth; variable
437 CHECK_NUMBER (maxdepth); variable
H A Dmacmenu.c471 int maxdepth, notreal;
487 single_keymap_panes (keymap, pane_name, prefix, notreal, maxdepth)
492 int maxdepth;
498 skp.maxdepth = maxdepth;
501 if (maxdepth <= 0)
520 XCDR (eltcdr), notreal, maxdepth - 1);
559 single_keymap_panes (map, Qnil, key, 1, skp->maxdepth - 1);
586 single_keymap_panes (map, Qnil, key, 0, skp->maxdepth - 1);
467 int maxdepth, notreal; member in struct:skp
H A Dxmenu.c475 int maxdepth, notreal;
492 single_keymap_panes (keymap, pane_name, prefix, notreal, maxdepth)
497 int maxdepth;
503 skp.maxdepth = maxdepth;
507 if (maxdepth <= 0)
534 XCDR (eltcdr), notreal, maxdepth - 1);
576 single_keymap_panes (map, Qnil, key, 1, skp->maxdepth - 1);
673 single_keymap_panes (map, Qnil, key, 0, skp->maxdepth - 1);
470 int maxdepth, notreal; member in struct:skp
/macosx-10.10/pyobjc-45/2.5/
H A DMakefile145 for e in `find "$(OBJROOT)/$(Project)" -name Examples ! -empty -maxdepth 2`; do \
/macosx-10.10/pyobjc-45/2.6/
H A DMakefile148 for e in `find "$(OBJROOT)/$(Project)" -name Examples ! -empty -maxdepth 2`; do \
/macosx-10.10/pyobjc-45/
H A DMakefile153 for e in `find "$(OBJROOT)/$(Project)" -name Examples ! -empty -maxdepth 2`; do \
/macosx-10.10/xnu-2782.1.97/bsd/hfs/
H A Dhfs_hotfiles.c2264 hf_maxdepth(hotfile_entry_t * root, int depth, int *maxdepth) argument
2268 if (depth > *maxdepth)
2269 *maxdepth = depth;
2270 hf_maxdepth(root->left, depth, maxdepth);
2271 hf_maxdepth(root->right, depth, maxdepth);
/macosx-10.10/CPANInternal-159.1/JSON-XS-3.01/
H A DXS.xs214 json_atof_scan1 (const char *s, NV *accum, int *expo, int postdp, int maxdepth)
221 if (expect_false (--maxdepth <= 0))
234 json_atof_scan1 (s, accum, expo, 1, maxdepth);
270 json_atof_scan1 (s, accum, expo, postdp, maxdepth);
931 U32 maxdepth; // recursion depth limit

Completed in 490 milliseconds

12