Searched refs:scale (Results 251 - 275 of 517) sorted by relevance

<<11121314151617181920>>

/macosx-10.10/ICU-531.30/icuSources/i18n/
H A Ddigitlst.cpp920 decNumber scale; // Dummy decimal number, but with the desired number of
921 uprv_decNumberZero(&scale); // fraction digits.
922 scale.exponent = -maximumFractionDigits;
923 scale.lsu[0] = 1;
925 uprv_decNumberQuantize(fDecNumber, fDecNumber, &scale, &fContext);
H A Dplurrule.cpp323 double scale = 1.0; local
326 scale = scale * 10.0;
328 return scale;
369 // For ranges of samples with fraction decimal digits, scale the number up so that we
372 double scale = scaleForInt(rangeLo); local
374 if (t > scale) {
375 scale = t;
377 rangeLo *= scale;
378 rangeHi *= scale;
[all...]
/macosx-10.10/WebCore-7600.1.25/page/animation/
H A DAnimationBase.cpp539 double AnimationBase::fractionalTime(double scale, double elapsedTime, double offset) const argument
563 if (scale != 1 || offset)
564 fractionalTime = (fractionalTime - offset) * scale;
569 double AnimationBase::progress(double scale, double offset, const TimingFunction* tf) const argument
589 const double fractionalTime = this->fractionalTime(scale, elapsedTime, offset);
/macosx-10.10/bc-21/bc/bc/
H A Dexecute.c286 if (!bc_sqrt (&ex_stack->s_num, scale))
407 &temp_num, scale);
419 ex_stack->s_num, &temp_num, scale) == 0)
439 ex_stack->s_num, &temp_num, scale);
452 ex_stack->s_num, &temp_num, scale);
/macosx-10.10/bless-103/
H A DhandleFolder.c56 static int WriteLabelFile(BLContextPtr context, const char *path, CFDataRef labeldata, int doTypeCreator, int scale);
600 static int WriteLabelFile(BLContextPtr context, const char *path, CFDataRef labeldata, int doTypeCreator, int scale) argument
604 blesscontextprintf(context, kBLLogLevelVerbose, "Putting scale %d label bitmap in %s\n", scale, path);
611 blesscontextprintf(context, kBLLogLevelError, "Could not write scale %d bitmap label file\n", scale);
613 blesscontextprintf(context, kBLLogLevelVerbose, "Scale %d label written\n", scale);
/macosx-10.10/libxslt-13/libxslt/libxslt/
H A Dnumbers.c931 double scale; local
1261 scale = pow(10.0, (double)(format_info.frac_digits + format_info.frac_hash));
1262 number = floor((scale * number + 0.5)) / scale;
1302 number = floor(scale * number + 0.5);
/macosx-10.10/WebCore-7600.1.25/platform/graphics/cg/
H A DImageBufferCG.cpp204 m_context->scale(FloatSize(1, -1));
300 adjustedSrcRect.scale(m_resolutionScale, m_resolutionScale);
307 adjustedSrcRect.scale(m_resolutionScale, m_resolutionScale);
345 srcRect.scale(m_resolutionScale);
357 srcRect.scale(m_resolutionScale);
368 scaledSourceRect.scale(m_resolutionScale);
369 scaledSourceSize.scale(m_resolutionScale);
/macosx-10.10/ksh-23/ksh/src/lib/libast/sfio/
H A Dsfvprintf.c109 int scale; local
226 scale = 0;
692 if(scale)
970 scale = 1024;
982 scale = 1000;
1008 if(scale)
1009 { sp = fmtscale(lv, scale);
1068 if(scale)
1069 { sp = fmtscale(v, scale);
/macosx-10.10/shell_cmds-179/find/
H A Dfunction.c1487 off_t scale; local
1500 scale = 0x1LL;
1503 scale = 0x400LL;
1506 scale = 0x100000LL;
1509 scale = 0x40000000LL;
1512 scale = 0x1000000000LL;
1515 scale = 0x4000000000000LL;
1522 if (new->o_data > QUAD_MAX / scale)
1525 new->o_data *= scale;
/macosx-10.10/WebCore-7600.1.25/Modules/mediacontrols/
H A DmediaControlsiOS.js304 if (this.mostRecentNumberOfTargettedTouches == 2 && event.scale >= 1.0)
312 var velocity = Math.abs(event.scale - 1) / duration;
314 if (event.scale < 1.25 || velocity < 2)
460 var scaleTransform = "scale(" + scaleValue + ")";
/macosx-10.10/WebCore-7600.1.25/rendering/svg/
H A DSVGRenderingContext.cpp246 absoluteTransform.scale(deviceScaleFactor);
264 imageContext->scale(FloatSize(static_cast<float>(clampedSize.width()) / paintRect.width(),
290 imageContext->scale(FloatSize(unclampedImageSize.width() / absoluteTargetRect.width(), unclampedImageSize.height() / absoluteTargetRect.height()));
358 // Invalidate an existing buffer if the scale is not correct.
/macosx-10.10/WebKit2-7600.1.25/UIProcess/ios/
H A DWebPageProxyIOS.mm182 void WebPageProxy::updateVisibleContentRects(const WebCore::FloatRect& exposedRect, const WebCore::FloatRect& unobscuredRect, const WebCore::FloatRect& unobscuredRectInScrollViewCoordinates, const WebCore::FloatRect& customFixedPositionRect, double scale, bool inStableState, bool isChangingObscuredInsetsInteractively, double timestamp, double horizontalVelocity, double verticalVelocity, double scaleChangeRate)
187 VisibleContentRectUpdateInfo visibleContentRectUpdateInfo(exposedRect, unobscuredRect, unobscuredRectInScrollViewCoordinates, customFixedPositionRect, scale, inStableState, isChangingObscuredInsetsInteractively, timestamp, horizontalVelocity, verticalVelocity, scaleChangeRate, toRemoteLayerTreeDrawingAreaProxy(drawingArea())->lastCommittedLayerTreeTransactionID());
280 // We do not want the UIProcess to finish animated resize with the old content size, scale, etc.
671 void WebPageProxy::restorePageState(const WebCore::FloatRect& exposedRect, double scale)
673 m_pageClient.restorePageState(exposedRect, scale);
676 void WebPageProxy::restorePageCenterAndScale(const WebCore::FloatPoint& center, double scale)
678 m_pageClient.restorePageCenterAndScale(center, scale);
/macosx-10.10/WebKit2-7600.1.25/WebProcess/WebPage/ios/
H A DWebPageIOS.mm166 double scale;
168 scale = viewportConfiguration.initialScale();
170 scale = std::max(std::min(currentScale, viewportConfiguration.maximumScale()), viewportConfiguration.minimumScale());
177 scale = std::max(std::min(newScale, viewportConfiguration.maximumScale()), viewportConfiguration.minimumScale());
179 return scale;
204 // When a HistoryItem is cleared, its scale factor and scroll point are set to zero. We should not try to restore the other
209 // We can restore the exposed rect and scale, but we cannot touch the scroll position since the obscured insets
238 unobscuredRectAtNewScale.scale(1 / newScale, 1 / newScale);
749 boundingRectInScrollViewCoordinates.scale(m_page->pageScaleFactor());
762 boundingRectInScrollViewCoordinates.scale(m_pag
[all...]
/macosx-10.10/groff-38/groff/src/preproc/grn/
H A Dmain.cpp11 * lines. Default values (font, size, scale, thickness) may be overridden
18 * and may be abbreviated down to one character (with exception of `scale'
32 * scale, x - Scale is IN ADDITION to the global
33 * scale factor from the default.
35 * `scale' commands. (Optional operand
58 * valid gs (gray scale) indices are
144 /* a logarithmic scale looks better than a linear one for the gray shades */
160 double scale = 1.0; /* no scaling, default */ variable
452 xscale = scale; /* default scale o
[all...]
/macosx-10.10/xnu-2782.1.97/osfmk/i386/commpage/
H A Dcommpage.c524 uint32_t scale,
555 p32->nt_scale = scale;
556 p64->nt_scale = scale;
521 commpage_set_nanotime( uint64_t tsc_base, uint64_t ns_base, uint32_t scale, uint32_t shift ) argument
/macosx-10.10/JavaScriptCore-7600.1.17/assembler/
H A DMacroAssemblerARM.h364 m_assembler.baseIndexTransfer32(ARMAssembler::LoadUint8, dest, address.base, address.index, static_cast<int>(address.scale), address.offset);
375 m_assembler.baseIndexTransfer16(ARMAssembler::LoadInt8, dest, address.base, address.index, static_cast<int>(address.scale), address.offset);
385 m_assembler.baseIndexTransfer16(ARMAssembler::LoadUint16, dest, address.base, address.index, static_cast<int>(address.scale), address.offset);
390 m_assembler.baseIndexTransfer16(ARMAssembler::LoadInt16, dest, address.base, address.index, static_cast<int>(address.scale), address.offset);
400 m_assembler.baseIndexTransfer32(ARMAssembler::LoadUint32, dest, address.base, address.index, static_cast<int>(address.scale), address.offset);
471 m_assembler.baseIndexTransfer32(ARMAssembler::StoreUint8, src, address.base, address.index, static_cast<int>(address.scale), address.offset);
500 m_assembler.baseIndexTransfer16(ARMAssembler::StoreUint16, src, address.base, address.index, static_cast<int>(address.scale), address.offset);
510 m_assembler.baseIndexTransfer32(ARMAssembler::StoreUint32, src, address.base, address.index, static_cast<int>(address.scale), address.offset);
522 m_assembler.baseIndexTransfer32(ARMAssembler::StoreUint32, ARMRegisters::S1, address.base, address.index, static_cast<int>(address.scale), address.offset);
1026 void relativeTableJump(RegisterID index, int scale) argument
[all...]
/macosx-10.10/IOAudioFamily-200.6/
H A DIOAudioTimeIntervalFilter.h232 virtual IOReturn setNewFilter(uint32_t numCoeffs, const uint64_t* filterCoefficients, uint32_t scale);
/macosx-10.10/IOHIDFamily-606.1.7/IOHIDSystem/
H A DIOHIPointing.cpp639 // scale
738 SInt32 scale, Boolean lower )
749 resultY = y3 - IOFixedMultiply( scale, y3 - resultY );
751 resultY = resultY + IOFixedMultiply( scale, y3 - resultY );
1739 SInt32 scale; local
1767 scale = OSReadBigInt32((volatile void *)highTable, 0);
1770 // normalize table's default (scale) to 0.5
1773 0x10000 - scale );
1775 desired += scale;
1777 desired = IOFixedMultiply( desired, scale );
735 Interpolate( SInt32 x1, SInt32 y1, SInt32 x2, SInt32 y2, SInt32 x3, SInt32 y3, SInt32 scale, Boolean lower ) argument
[all...]
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/libraries/liblutil/
H A Dutils.c669 scale( int new, lutil_int_decnum *prev, unsigned char *tmp ) function
820 scale( l, &num, (unsigned char *)tmp );
867 scale[] = { 86400, 3600, 60, 1 }; local
901 t += u * scale[ sofar ];
/macosx-10.10/WebCore-7600.1.25/css/
H A DWebKitCSSMatrix.cpp121 PassRefPtr<WebKitCSSMatrix> WebKitCSSMatrix::scale(double scaleX, double scaleY, double scaleZ) const function in class:WebCore::WebKitCSSMatrix
H A DWebKitCSSMatrix.h121 // the scale values on the left (result = scale(x,y,z) * this)
122 PassRefPtr<WebKitCSSMatrix> scale(double scaleX, double scaleY, double scaleZ) const;
/macosx-10.10/WebCore-7600.1.25/platform/graphics/
H A DFloatPoint3D.h80 void scale(float sx, float sy, float sz) function in class:WebCore::FloatPoint3D
H A DGraphicsContext3DPrivate.cpp108 context->scale(FloatSize(1, -1));
H A DIntRect.cpp125 void IntRect::scale(float s) function in class:WebCore::IntRect
H A DRoundedRect.h66 void scale(float factor);

Completed in 370 milliseconds

<<11121314151617181920>>