Searched refs:scale (Results 1 - 25 of 494) sorted by relevance

1234567891011>>

/macosx-10.9.5/groff-38/groff/font/devlj4/generate/
H A Dspecial.awk6 function scale(num) function
16 ascent["integralcrvmid"] = scale(0.84358)
17 descent["integralcrvmid"] = scale(0.25006)
18 ascent["integralbt"] = scale(0.84358)
19 descent["integralbt"] = scale(0.15164)
20 ascent["lt"] = scale(0.84358)
21 descent["lt"] = scale(0.15164)
22 ascent["parenlefttp"] = scale(0.84358)
23 descent["parenlefttp"] = scale(0.15164)
24 ascent["bracelefttp"] = scale(0.8435
[all...]
/macosx-10.9.5/bc-21/bc/Examples/
H A Dpi.b3 fraction part of PI. It will look at the first scale digits.
14 save_scale = scale;
15 scale += 5;
16 print "\n\nCalculating PI to ",scale," digits. Please wait . . .";
18 scale -= 5;
25 scale = 0;
31 scale = ix;
35 scale = 0;
41 /* Restore the scale. */
42 scale
[all...]
/macosx-10.9.5/CPANInternal-140/Perl4-CoreLibs-0.003/lib/
H A Dbigfloat.pl25 # Also used for default sqrt scale
131 # args are dividend, divisor, scale (optional)
132 # result has at most max(scale, length(dividend), length(divisor)) digits
133 sub main'fdiv #(fnum_str, fnum_str[,scale]) return fnum_str
135 local($x,$y,$scale) = (&'fnorm($_[0]),&'fnorm($_[1]),$_[2]);
141 $scale = $div_scale if (!$scale);
142 $scale = length($xm)-1 if (length($xm)-1 > $scale);
143 $scale
[all...]
H A Dbigrat.pl142 local($x, $scale) = (&'rnorm($_[0]), $_[1]);
149 $scale = 5 if (!$scale);
150 while ($gscale++ < $scale) {
/macosx-10.9.5/bc-21/bc/bc/
H A Dlibmath.b32 scale = 20
49 /* n - the scale to compute the sum. */
50 /* z - orignal scale. */
59 z = scale;
61 scale = scale(x)+1;
65 scale += 1;
69 scale = n;
78 scale = z
95 if (x <= 0) return ((1 - 10^scale)/
[all...]
/macosx-10.9.5/ncurses-42/ncurses/test/
H A Dlinux-color.dat32 scale:255
H A Dxterm-16color.dat37 scale:255
H A Dxterm-88color.dat37 scale:255
/macosx-10.9.5/ICU-511.35/icuSources/test/cintltst/
H A Dutmstest.c100 static void roundTripTest(int64_t value, UDateTimeScale scale) argument
103 int64_t rt = utmscale_toInt64(utmscale_fromInt64(value, scale, &status), scale, &status);
106 log_err("Round-trip error: time scale = %d, value = %lld, round-trip = %lld.\n", scale, value, rt);
110 static void toLimitTest(int64_t toLimit, int64_t fromLimit, UDateTimeScale scale) argument
113 int64_t result = utmscale_toInt64(toLimit, scale, &status);
116 log_err("toLimit failure: scale = %d, toLimit = %lld , utmscale_toInt64(toLimit, scale, &status) = %lld, fromLimit = %lld.\n",
117 scale, toLimi
121 epochOffsetTest(int64_t epochOffset, int64_t units, UDateTimeScale scale) argument
154 int32_t scale; local
167 int32_t scale; local
181 int32_t scale; local
196 int32_t scale; local
256 int32_t scale; local
330 int32_t scale; local
[all...]
/macosx-10.9.5/tcl-102/tk/tk/generic/ttk/
H A DttkScale.c4 * ttk::scale widget.
27 Tcl_Obj *lengthObj; /* length of the long axis of the scale */
43 ScalePart scale; member in struct:__anon13560
51 Tk_Offset(Scale,scale.commandObj), -1,
54 Tk_Offset(Scale,scale.variableObj), -1,
57 Tk_Offset(Scale,scale.orientObj),
58 Tk_Offset(Scale,scale.orient), 0,
62 Tk_Offset(Scale,scale.fromObj), -1, 0, 0, 0},
64 Tk_Offset(Scale,scale.toObj), -1, 0, 0, 0},
66 Tk_Offset(Scale,scale
85 Scale *scale = recordPtr; local
111 Scale *scale = recordPtr; local
124 Scale *scale = recordPtr; local
152 Scale *scale = recordPtr; local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/svg/
H A DSVGZoomEvent.cpp47 void SVGZoomEvent::setPreviousScale(float scale) argument
49 m_previousScale = scale;
62 void SVGZoomEvent::setNewScale(float scale) argument
64 m_newScale = scale;
H A DSVGTransformDistance.cpp76 float scaleX = toSVGTransform.scale().width() - fromSVGTransform.scale().width();
77 float scaleY = toSVGTransform.scale().height() - fromSVGTransform.scale().height();
98 return SVGTransformDistance(m_type, m_angle * scaleFactor, m_cx * scaleFactor, m_cy * scaleFactor, AffineTransform(m_transform).scale(scaleFactor));
136 FloatSize scale = second.scale(); local
137 scale.scale(repeatCount);
138 scale
171 FloatSize scale = transform.scale(); local
[all...]
/macosx-10.9.5/bc-21/bc/Test/
H A Dtestfn.b4 computed at two scales, scale s and then scale t, where t>s.
5 the result from scale t is divided by 1 at scale s and the
8 (called index) and the two original values val1 (scale s) and
9 val2 (scale t) */
20 scale = s;
22 scale = t;
24 scale = s;
45 Percent failed: "; scale
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/qt/
H A DDragImageQt.cpp46 DragImageRef scaleDragImage(DragImageRef image, FloatSize scale) argument
51 int scaledWidth = image->width() * scale.width();
52 int scaledHeight = image->height() * scale.height();
/macosx-10.9.5/WebCore-7537.78.1/history/blackberry/
H A DHistoryItemViewState.h31 , scale(1)
42 double scale; member in struct:WebCore::HistoryItemViewState
/macosx-10.9.5/bc-21/bc/h/
H A Dnumber.h104 _PROTOTYPE(bc_num bc_new_num, (int length, int scale));
112 _PROTOTYPE(void bc_str2num, (bc_num *num, char *str, int scale));
124 _PROTOTYPE(char bc_is_near_zero, (bc_num num, int scale));
132 _PROTOTYPE(void bc_multiply, (bc_num n1, bc_num n2, bc_num *prod, int scale));
134 _PROTOTYPE(int bc_divide, (bc_num n1, bc_num n2, bc_num *quot, int scale));
137 int scale));
140 bc_num *rem, int scale));
143 bc_num *result, int scale));
146 int scale));
148 _PROTOTYPE(int bc_sqrt, (bc_num *num, int scale));
[all...]
/macosx-10.9.5/libutil-34/
H A Dhumanize_number.c54 const char *suffix, int scale, int flags)
71 assert(scale >= 0);
92 #define SCALE2PREFIX(scale) (&prefixes[(scale) << 1])
95 if (scale >= maxscale &&
96 (scale & (HN_AUTOSCALE | HN_GETSCALE)) == 0)
125 if (scale & (HN_AUTOSCALE | HN_GETSCALE)) {
133 if (scale & HN_GETSCALE)
136 for (i = 0; i < scale && i < maxscale; i++)
53 humanize_number(char *buf, size_t len, int64_t bytes, const char *suffix, int scale, int flags) argument
/macosx-10.9.5/WebCore-7537.78.1/platform/gtk/
H A DDragImageGtk.cpp43 DragImageRef scaleDragImage(DragImageRef image, FloatSize scale) argument
48 int newWidth = scale.width() * cairo_image_surface_get_width(image);
49 int newHeight = scale.height() * cairo_image_surface_get_height(image);
53 cairo_scale(context.get(), scale.width(), scale.height());
/macosx-10.9.5/bless-98/test/
H A Dtestgenerateoflabel.c21 int scale; local
43 scale = (argc == 4) ? kBitmapScale_2x : kBitmapScale_1x;
45 err = BLGenerateLabelData(NULL, argv[1], scale, &labelData);
/macosx-10.9.5/xnu-2422.115.4/bsd/dev/
H A Dunix_startup.c164 int scale; local
169 if ((scale = nmbclusters / NMBCLUSTERS) > 1) {
170 tcp_sendspace *= scale;
171 tcp_recvspace *= scale;
313 bsd_scale_setup(int scale) argument
316 if ((scale > 0) && (serverperfmode == 0)) {
317 maxproc *= scale;
321 if ((scale > 0) && (serverperfmode !=0)) {
322 maxproc = 2500 * scale;
326 maxfiles = (150000 * scale);
[all...]
/macosx-10.9.5/WebKit-7537.78.2/blackberry/WebKitSupport/
H A DBackingStoreVisualizationViewportAccessor.cpp41 toDocumentContents(state()->backingStoreOffset(), state()->scale()));
46 return roundToDocumentContents(state()->backingStoreOffset(), state()->scale());
64 double BackingStoreVisualizationViewportAccessor::scale() const function in class:BlackBerry::WebKit::BackingStoreVisualizationViewportAccessor
66 return state()->scale() / std::max(state()->numberOfTilesWide(), state()->numberOfTilesHigh());
/macosx-10.9.5/bless-98/libbless/Misc/
H A DBLGenerateOFLabel.c69 uint16_t width, uint16_t height, int scale, uint16_t *newwidth);
76 int BLGenerateLabelData(BLContextPtr context, const char *label, int scale, CFDataRef *data) argument
78 uint16_t width = 340 * scale;
79 uint16_t height = 12 * scale;
98 err = makeLabelOfSize(label, bitmapData+5, width, height, scale, &newwidth);
105 // cap at 340*scale pixels wide.
232 uint16_t width, uint16_t height, int scale, uint16_t *newwidth) {
284 fontRef = CTFontCreateWithName(CFSTR("Helvetica"), 10.0 * scale, NULL);
304 CGContextSetTextPosition(context, 2.0 * scale, 2.0 * scale);
231 makeLabelOfSize(const char *label, unsigned char *bitmapData, uint16_t width, uint16_t height, int scale, uint16_t *newwidth) argument
366 makeLabelOfSize(const char *label, unsigned char *bitmapData, uint16_t width, uint16_t height, int scale, uint16_t *newwidth) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/audio/
H A DReverb.cpp79 float scale = 1 / power; local
81 scale *= powf(10, GainCalibration * 0.05f); // calibrate to make perceived volume same as unprocessed
85 scale *= GainCalibrationSampleRate / response->sampleRate();
89 scale *= 0.5f;
91 return scale;
96 float scale = 1; local
99 scale = calculateNormalizationScale(impulseResponse);
101 if (scale)
102 impulseResponse->scale(scale);
[all...]
H A DVectorMath.h35 void vsma(const float* sourceP, int sourceStride, const float* scale, float* destP, int destStride, size_t framesToProcess);
37 void vsmul(const float* sourceP, int sourceStride, const float* scale, float* destP, int destStride, size_t framesToProcess);
/macosx-10.9.5/WebCore-7537.78.1/platform/audio/ffmpeg/
H A DFFTFrameFFMPEG.cpp168 // FIXME: if we change the scaling on the Mac then this scale
170 float scale = 0.5f; local
172 VectorMath::vsmul(realP1, 1, &scale, realP1, 1, halfSize);
173 VectorMath::vsmul(imagP1, 1, &scale, imagP1, 1, halfSize);
189 const float scale = 2.0f; local
195 m_realData[i] = scale * p[baseComplexIndex];
196 m_imagData[i] = scale * p[baseComplexIndex + 1];
209 const float scale = 1.0 / m_FFTSize; local
210 VectorMath::vsmul(interleavedData, 1, &scale, data, 1, m_FFTSize);

Completed in 251 milliseconds

1234567891011>>