Searched refs:factor (Results 1 - 25 of 138) sorted by relevance

123456

/macosx-10.9.5/file_cmds-230/csh/
H A Dstrpct.c62 u_long result, factor; local
66 factor = 100L;
68 factor *= 10;
72 if (numerator < (ULONG_MAX / factor)) {
73 numerator *= factor;
76 denominator /= factor;
92 factor /= 100L; /* undo initialization */
95 fmt, result / factor, result % factor);
/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/ext/pb_ds/detail/binary_heap_/
H A Dresize_policy.hpp123 factor = 2 enumerator in enum:pb_ds::detail::resize_policy::__anon9665
170 { return m_next_grow_size* factor; }
177 const size_type half_size = m_next_grow_size / factor;
188 ret *= factor;
199 m_next_grow_size *= factor;
210 m_next_shrink_size /= factor;
215 std::max(m_next_grow_size / factor, static_cast<size_type>(min_size));
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/modules/plotchart/
H A Dscaling.tcl98 # Determine the factor of 10 so that dx falls within the range 1-10
101 set factor [expr {pow(10.0,$expon)}]
103 set dx [expr {$dx/$factor}]
111 set fmin [expr {$xmin/$factor/$step}]
112 set fmax [expr {$xmax/$factor/$step}]
119 set nicemin [expr {$step*$factor*wide($fmin)}]
120 set nicemax [expr {$step*$factor*wide($fmax)}]
123 set nicemax [expr {$nicemax+$step*$factor}]
126 set nicemin [expr {$nicemin-$step*$factor}]
130 return [list $nicemin $nicemax [expr {$step*$factor}]]
[all...]
H A Dplotannot.tcl189 set factor $settings($w,balloonarrowsize)
196 set xnew [expr {$xbase+$xscale*$factor}]
197 set ynew [expr {$ybase+$yscale*$factor}]
264 # factor Factor by which to brighten the colour
270 proc ::Plotchart::BrightenColour {color intensity factor} {
273 set $i [expr {int(255.*($n+($d-$n)*$factor)/$f)}]
360 set factor [expr {($first*$i+$last*($n-$i-1))/double($n)}]
361 set gcolour [BrightenColour $colour $intensity $factor]
/macosx-10.9.5/BerkeleyDB-21/db/test/
H A Dsdbscript.tcl7 # Usage: subdbscript testfile subdbnumber factor
10 # factor: Delete over factor'th + n'th from my subdb.
12 # I.e. if factor is 10, and n is 0, remove entries, 0, 10, 20, ...
13 # if factor is 10 and n is 1, remove entries 1, 11, 21, ...
17 set usage "subdbscript testfile subdbnumber factor"
28 set factor [ lindex $argv 2 ]
38 if { $x >= 0 && [expr $x % $factor] == 0 } {
/macosx-10.9.5/emacs-92/emacs/lisp/progmodes/
H A Debnf-bnf.el85 ;; term = factor
86 ;; | [factor] "+" ;; one-or-more
87 ;; | [factor] "/" [factor] ;; one-or-more
90 ;; factor = [ "$" ] "\"" terminal "\"" ;; terminal
262 ;;; term = factor
263 ;;; | [factor] "+" ;; one-or-more
264 ;;; | [factor] "/" [factor] ;; one-or-more
268 (let ((factor (ebn
[all...]
H A Debnf-ebx.el57 ;; term ::= factor ('*' | '+' | '?')?
59 ;; factor ::= hex-char+
302 ;;; term ::= factor ('*' | '+' | '?')?
306 (let ((factor (ebnf-ebx-factor token)))
307 (when factor
310 (setq factor (ebnf-make-zero-or-more factor)
313 (setq factor (ebnf-make-one-or-more factor)
[all...]
H A Debnf-iso.el56 ;; term = factor, ['-', exception];
58 ;; exception = factor (* without <meta identifier> *);
60 ;; factor = [integer, '*'], primary;
211 ;;; term = factor, ['-', exception];
213 ;;; exception = factor (* without <meta identifier> *);
216 (let ((factor (ebnf-iso-factor token)))
217 (if (not (eq (car factor) 'except))
218 ;; factor
219 factor
[all...]
/macosx-10.9.5/sudo-72/src/
H A Daix.c55 int factor; member in struct:aix_limit
103 rlim.rlim_max = val == -1 ? RLIM64_INFINITY : val * aix_limits[n].factor;
105 rlim.rlim_cur = val == -1 ? RLIM64_INFINITY : val * aix_limits[n].factor;
112 rlim.rlim_cur = val == -1 ? RLIM64_INFINITY : val * aix_limits[n].factor;
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/units/
H A Dunits.tcl90 # targetUnits A units string which may also include a scale factor.
137 # single multiplicitive factor and sorted list of primitive units.
147 # A unit string consists of an optional scale factor followed
148 # by zero or more subunit strings. The scale factor must be
153 # the leading scale factor from the rest of the subunits.
176 # is the multiplicitive factor, and the remaining elements are
220 # Check for leading scale factor
228 # Ensure that scale factor is a nice floating point number
260 # scale factor.
263 # factor
[all...]
/macosx-10.9.5/misc_cmds-32/units/
H A Dunits.c55 double factor; member in struct:unittype
213 theunit->factor = 1.0;
243 printf("\t%.8g", theunit->factor);
344 theunit->factor *= num;
347 theunit->factor /= num;
356 theunit->factor /= num;
359 theunit->factor *= num;
370 theunit->factor *= num;
373 theunit->factor /= num;
649 (have->factor
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/
H A DRoundedRect.cpp42 void RoundedRect::Radii::scale(float factor) argument
44 if (factor == 1)
48 m_topLeft.scale(factor);
51 m_topRight.scale(factor);
54 m_bottomLeft.scale(factor);
57 m_bottomRight.scale(factor);
88 // Considering the inflation factor of shorter size to scale the radii seems appropriate here
89 float factor; local
91 factor = old.width() ? (float)m_rect.width() / old.width() : int(0);
93 factor
[all...]
/macosx-10.9.5/apache-786.1/httpd/modules/metadata/
H A Dmod_expires.c220 int factor = 0; local
277 factor = 0;
279 factor = 60 * 60 * 24 * 365;
282 factor = 60 * 60 * 24 * 30;
285 factor = 60 * 60 * 24 * 7;
288 factor = 60 * 60 * 24;
291 factor = 60 * 60;
294 factor = 60;
297 factor = 1;
304 modifier = modifier + factor * nu
[all...]
H A Dmod_usertrack.c285 time_t factor, modifier = 0; local
321 factor = 0;
323 factor = 60 * 60 * 24 * 365;
325 factor = 60 * 60 * 24 * 30;
327 factor = 60 * 60 * 24 * 7;
329 factor = 60 * 60 * 24;
331 factor = 60 * 60;
333 factor = 60;
335 factor = 1;
339 modifier = modifier + factor * nu
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/math/
H A Delliptic.tcl85 set factor 0.25
90 set sumc [expr {$sumc+$factor*($a-$b)*($a-$b)}]
91 set factor [expr {$factor*2.0}]
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderTextControlMultiLine.cpp70 int factor = static_cast<HTMLTextAreaElement*>(node())->cols(); local
71 return static_cast<LayoutUnit>(ceilf(charWidth * factor)) + scrollbarThickness();
/macosx-10.9.5/IOHIDFamily-503.215.2/IOHIDEventSystemPlugIns/
H A DIOHIDAggdMetricsPlugIn.cpp231 float factor = _factor; local
232 CFNumberGetValue((CFNumberRef)property, kCFNumberFloatType, &factor);
234 if ( factor != _factor ) {
235 _factor = factor;
249 float factor = _factor; local
257 && (factor == 0.0)) {
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DCSSPrimitiveValue.cpp525 // The multiplier and factor is applied to each value in the calc expression individually
528 double factor; local
532 factor = computingFontSize ? style->fontDescription().specifiedSize() : style->fontDescription().computedSize();
539 factor = style->fontMetrics().xHeight();
541 factor = (computingFontSize ? style->fontDescription().specifiedSize() : style->fontDescription().computedSize()) / 2.0;
545 factor = computingFontSize ? rootStyle->fontDescription().specifiedSize() : rootStyle->fontDescription().computedSize();
547 factor = 1.0;
550 factor = style->fontMetrics().zeroWidth();
553 factor = 1.0;
556 factor
600 double factor = 1.0; local
742 double factor = conversionToCanonicalUnitsScaleFactor(sourceUnitType); local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/mac/
H A DWebWindowAnimation.mm44 static NSRect scaledRect(NSRect _initialFrame, NSRect _finalFrame, CGFloat factor)
47 currentRect.origin.x += (NSMinX(_finalFrame) - NSMinX(_initialFrame)) * factor;
48 currentRect.origin.y += (NSMinY(_finalFrame) - NSMinY(_initialFrame)) * factor;
49 currentRect.size.width += (NSWidth(_finalFrame) - NSWidth(_initialFrame)) * factor;
50 currentRect.size.height += (NSHeight(_finalFrame) - NSHeight(_initialFrame)) * factor;
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/pt/tools/
H A Dbench-compare.tcl81 set factor [expr {double($usecbase)/double($usecnew)}]
82 set percent [expr {100 * $factor - 100}]
85 [format %.2f $factor] \
/macosx-10.9.5/Chess-310.5/sjeng/
H A Dnewbook.c590 float factor; local
620 factor = factortable[iters-1];
637 playinc = 0.5f * factor;
639 playinc = 0.25f * factor;
644 playinc = -0.5f * factor;
646 playinc = -0.25f * factor;
651 playinc = -0.3f * factor;
653 playinc = 0.3f * factor;
/macosx-10.9.5/groff-38/groff/src/roff/troff/
H A Ddictionary.h46 double factor; member in class:dictionary
/macosx-10.9.5/BerkeleyDB-21/db/btree/
H A Dbt_stat.c491 double factor; local
503 factor = 1.0;
518 kp->greater += factor * (sp->entries - 1)/sp->entries;
520 kp->less += factor;
522 kp->less += factor * sp->indx / sp->entries;
523 kp->greater += factor *
526 factor *= 1.0/sp->entries;
531 * Otherwise that factor belongs to those greater than the key, unless
535 kp->equal = factor;
538 kp->greater += factor;
[all...]
H A Dbt_compact.c88 u_int32_t factor; local
102 factor = 0;
169 * We want factor to be the target number of free bytes on each page,
176 factor = dbp->pgsize - SIZEOF_PAGE;
178 factor *= c_data->compact_fillpercent;
179 factor /= 100;
182 factor = (dbp->pgsize - SIZEOF_PAGE) - factor;
207 if ((ret = __bam_compact_int(dbc, &current, stop, factor,
387 __bam_compact_int(dbc, start, stop, factor, span
[all...]
/macosx-10.9.5/WebKit-7537.78.2/qt/WidgetApi/
H A Dqwebview.h98 void setZoomFactor(qreal factor);
100 void setTextSizeMultiplier(qreal factor);

Completed in 379 milliseconds

123456