Searched refs:growth (Results 1 - 17 of 17) sorted by relevance

/macosx-10.10/tcl-105/tcl/tcl/generic/
H A DtclEnv.c653 const int growth = 5;
656 (env.cacheSize + growth) * sizeof(char *));
659 (size_t) (growth-1) * sizeof(char*));
660 env.cacheSize += growth;
646 const int growth = 5; local
H A DtclStringObj.c139 * When growing strings (during an append, for example), the following growth
163 * The growth algorithm can be tuned by adjusting the following parameters:
188 /* Subsequent appends - apply the growth algorithm. */
195 * Take care computing the amount of modest growth to avoid
201 int growth = (int) ((extra > limit) ? limit : extra); local
202 attempt = needed + growth;
1394 * explanation of this growth algorithm.
1581 * explanation of this growth algorithm.
1586 * Take care computing the amount of modest growth to avoid
1591 int growth
1571 int growth = (int) ((extra > limit) ? limit : extra); local
[all...]
H A DtclExecute.c626 static Tcl_Obj ** GrowEvaluationStack(ExecEnv *eePtr, int growth,
891 int growth, /* How much larger than the current used
897 int needed = growth - (esPtr->endPtr - esPtr->tosPtr);
929 * any) and growth to hold the complete stack requirements: add the marker
936 needed = growth + moveWords + WALLOCALIGN - 1;
963 * We need to allocate a new stack! It needs to store 'growth' words,
883 GrowEvaluationStack( ExecEnv *eePtr, int growth, int move) argument
/macosx-10.10/emacs-93/emacs/lisp/
H A Dmouse.el378 (defun mouse-drag-move-window-bottom (window growth)
384 (adjust-window-trailing-edge window growth nil)
387 (defsubst mouse-drag-move-window-top (window growth)
396 (mouse-drag-move-window-bottom window-above (- growth)))))
411 should-enlarge-minibuffer event mouse y top bot edges wconfig growth)
465 (setq growth (- y bot -1)))
470 (setq growth (- top y))))
474 (when (and (/= growth 0)
482 (mouse-drag-move-window-bottom start-event-window growth))
484 ;(message "growth
[all...]
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DRenderGrid.cpp51 void growUsedBreadth(LayoutUnit growth) argument
53 ASSERT(growth >= 0);
54 m_usedBreadth += growth;
58 void growMaxBreadth(LayoutUnit growth) argument
61 m_maxBreadth = m_usedBreadth + growth;
63 m_maxBreadth += growth;
614 LayoutUnit growth = sizingData.distributeTrackVector[i] - (tracks[i]->*trackGetter)(); local
615 if (growth >= 0)
616 (tracks[i]->*trackGrowthFunction)(growth);
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/modules/tkpiechart/
H A Dpie.tcl239 set growth [expr {$newExtent - $slice::($slice,extent)}]
241 "[expr {$slice::($slice,start) - $growth}] $newExtent" ;# grow clockwise
249 set value [expr {-1 * $growth}] ;# finally move the following slices
/macosx-10.10/tcl-105/tcl84/tcl/generic/
H A DtclStringObj.c136 * When growing strings (during an append, for example), the following growth
161 * The growth algorithm can be tuned by adjusting the following parameters:
185 /* Subsequent appends - apply the growth algorithm. */
192 * Take care computing the amount of modest growth to avoid
198 int growth = (int) ((extra > limit) ? limit : extra); local
199 attempt = needed + growth;
1322 * the top of this file for an explanation of this growth algorithm.
1509 * explanation of this growth algorithm.
1514 * Take care computing the amount of modest growth to avoid
1519 int growth
1500 int growth = (int) ((extra > limit) ? limit : extra); local
[all...]
/macosx-10.10/ncurses-44/ncurses/c++/
H A Dcursesf.h206 // For a dynamic field you may set the maximum growth limit.
207 // A zero means unlimited growth.
208 inline void set_maximum_growth(int growth = 0) {
209 OnError(::set_max_field(field,growth));
/macosx-10.10/pcre-7/pcre/
H A Dpcrecpp_unittest.cc119 const double growth = double(final_size - initial_size) / final_size;
120 printf("Growth: %0.2f%%", growth * 100);
121 CHECK(growth < 0.02); // Allow < 2% growth
/macosx-10.10/ncurses-44/ncurses/form/
H A Dfrm_driver.c98 /* Allow dynamic field growth also when navigating past the end */
616 int growth; local
627 growth = field->cols * amount;
629 growth = Minimum(field->maxgrow - field->dcols, growth);
630 field->dcols += growth;
636 growth = (field->rows + field->nrow) * amount;
638 growth = Minimum(field->maxgrow - field->drows, growth);
639 field->drows += growth;
[all...]
/macosx-10.10/apache-793/httpd/modules/proxy/
H A Dmod_proxy.c411 else if (!strcasecmp(key, "growth")) {
414 return "growth must be between 1 and 100";
415 balancer->growth = ival;
1983 int growth = atoi(arg); local
1984 if (growth < 0 || growth > 1000) {
1987 psf->bgrowth = growth;
H A Dmod_proxy.h449 int growth; /* number of post-config workers can added */ member in struct:proxy_balancer
H A Dmod_proxy_balancer.c824 balancer->max_workers = balancer->workers->nelts + balancer->growth;
H A Dmod_proxy_balancer.c.orig821 balancer->max_workers = balancer->workers->nelts + balancer->growth;
/macosx-10.10/vim-55/runtime/syntax/
H A Dpine.vim297 syn keyword pineOption old-growth
H A Dprogress.vim83 syn keyword ProgressReserved stream-io string-xref system-dialog table term term[inal] text text-cursor text-seg[-growth] this-procedure time title
/macosx-10.10/Heimdal-398.1.2/lib/sqlite/
H A Dsqlite3.c20305 /* When converting from UTF-16, the maximum growth results from
20313 /* When converting from UTF-8 to UTF-16 the maximum growth is caused
128631 float growth; local
128859 float growth = cellGrowth(pRtree, &aCell[ii], &aCell[jj]); local
[all...]

Completed in 600 milliseconds