Searched refs:logicalSize (Results 1 - 25 of 28) sorted by last modified time

12

/macosx-10.10/xnu-2782.1.97/bsd/hfs/
H A Dhfs_vfsops.c917 forkp->ff_size = SWAP_BE64 (vhp->extentsFile.logicalSize);
929 forkp->ff_size = SWAP_BE64 (vhp->catalogFile.logicalSize);
941 forkp->ff_size = SWAP_BE64 (vhp->attributesFile.logicalSize);
953 forkp->ff_size = SWAP_BE64 (vhp->allocationFile.logicalSize);
3926 volumeHeader->extentsFile.logicalSize = SWAP_BE64 (fp->ff_size);
3941 volumeHeader->catalogFile.logicalSize = SWAP_BE64 (fp->ff_size);
3956 volumeHeader->allocationFile.logicalSize = SWAP_BE64 (fp->ff_size);
3972 volumeHeader->attributesFile.logicalSize = SWAP_BE64 (fp->ff_size);
3987 volumeHeader->startupFile.logicalSize = SWAP_BE64 (fp->ff_size);
H A Dhfs_vfsutils.c547 cfork.cf_size = SWAP_BE64 (vhp->extentsFile.logicalSize);
587 cfork.cf_size = SWAP_BE64 (vhp->catalogFile.logicalSize);
634 cfork.cf_size = SWAP_BE64 (vhp->allocationFile.logicalSize);
664 cfork.cf_size = SWAP_BE64 (vhp->attributesFile.logicalSize);
716 cfork.cf_size = SWAP_BE64 (vhp->startupFile.logicalSize);
H A Dhfs_xattr.c591 *ap->a_size = recp->forkData.theFork.logicalSize;
614 attrlen = recp->forkData.theFork.logicalSize;
662 result = read_attr_data(hfsmp, uio, recp->forkData.theFork.logicalSize, recp->forkData.theFork.extents);
1189 recp->forkData.theFork.logicalSize = attrsize;
H A Dhfs_catalog.c402 datafp->cf_size = recp->hfsPlusFile.dataFork.logicalSize;
418 rsrcfp->cf_size = recp->hfsPlusFile.resourceFork.logicalSize;
1024 forkp->cf_size = recp->hfsPlusFile.resourceFork.logicalSize;
1043 forkp->cf_size = recp->hfsPlusFile.dataFork.logicalSize;
1992 file->resourceFork.logicalSize = forkp->cf_size;
2002 file->dataFork.logicalSize = forkp->cf_size;
2700 rsrcforkp->logicalSize = kHFSAliasSize;
2708 rsrcforkp->logicalSize = 0;
2851 cep->ce_datasize = rec->hfsPlusFile.dataFork.logicalSize;
2853 cep->ce_rsrcsize = rec->hfsPlusFile.resourceFork.logicalSize;
[all...]
H A Dhfs_endian.c69 src->logicalSize = SWAP_BE64 (src->logicalSize);
H A Dhfs_format.h245 u_int64_t logicalSize; /* fork's logical size in bytes */ member in struct:HFSPlusForkData
526 u_int32_t logicalSize; member in struct:HFSPlusAttrInlineData
/macosx-10.10/WebCore-7600.1.25/platform/graphics/cg/
H A DImageBufferCG.cpp116 static FloatSize scaleSizeToUserSpace(const FloatSize& logicalSize, const IntSize& backingStoreSize, const IntSize& internalSize) argument
120 return FloatSize(logicalSize.width() * xMagnification, logicalSize.height() * yMagnification);
242 RetainPtr<CGContextRef> context = adoptCF(CGBitmapContextCreate(0, logicalSize().width(), logicalSize().height(), 8, 4 * logicalSize().width(), deviceRGBColorSpaceRef(), kCGImageAlphaPremultipliedLast));
244 CGContextClipToRect(context.get(), FloatRect(FloatPoint::zero(), logicalSize()));
245 FloatSize imageSizeInUserSpace = scaleSizeToUserSpace(logicalSize(), m_data.m_backingStoreSize, internalSize());
399 FloatSize scaledDestSize = scaleSizeToUserSpace(coordinateSystem == LogicalCoordinateSystem ? logicalSize() : internalSize(), m_data.m_backingStoreSize, internalSize());
498 premultipliedData = getPremultipliedImageData(IntRect(IntPoint(0, 0), logicalSize()));
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/
H A DGraphicsContext.cpp634 drawImageBuffer(image, colorSpace, FloatRect(destination, image->logicalSize()), FloatRect(FloatPoint(), image->logicalSize()), imagePaintingOptions);
641 drawImageBuffer(image, colorSpace, destination, FloatRect(FloatPoint(), FloatSize(image->logicalSize())), imagePaintingOptions);
H A DShadowBlur.cpp75 if (m_imageBuffer && m_imageBuffer->logicalSize().width() >= size.width() && m_imageBuffer->logicalSize().height() >= size.height())
H A DImageBuffer.h94 const IntSize& logicalSize() const { return m_logicalSize; } function in class:WebCore::ImageBuffer
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DRenderGrid.cpp477 Length logicalSize = direction == ForColumns ? style().logicalWidth() : style().logicalHeight();
478 if (logicalSize.isIntrinsicOrAuto()) {
H A DFilterEffectRenderer.cpp332 IntSize logicalSize(m_sourceDrawingRegion.width(), m_sourceDrawingRegion.height());
333 if (!sourceImage() || sourceImage()->logicalSize() != logicalSize)
334 setSourceImage(ImageBuffer::create(logicalSize, filterScale(), ColorSpaceDeviceRGB, renderingMode()));
/macosx-10.10/WebCore-7600.1.25/html/
H A DHTMLCanvasElement.cpp520 FloatSize HTMLCanvasElement::convertLogicalToDevice(const FloatSize& logicalSize) const
522 float width = ceilf(logicalSize.width() * m_deviceScaleFactor);
523 float height = ceilf(logicalSize.height() * m_deviceScaleFactor);
570 FloatSize logicalSize = size(); local
571 FloatSize deviceSize = convertLogicalToDevice(logicalSize);
/macosx-10.10/WebCore-7600.1.25/html/canvas/
H A DWebGLRenderingContext.cpp6040 if (buf->logicalSize() != size)
H A DCanvasRenderingContext2D.cpp1874 FloatSize logicalSize(fabs(sw), fabs(sh));
1875 if (!logicalSize.isExpressibleAsIntSize())
1878 IntSize size = expandedIntSize(logicalSize);
2015 destRect.intersect(IntRect(IntPoint(), coordinateSystem == ImageBuffer::LogicalCoordinateSystem ? buffer->logicalSize() : buffer->internalSize()));
/macosx-10.10/WebCore-7600.1.25/rendering/svg/
H A DRenderSVGResourcePattern.cpp113 const IntSize tileImageSize = tileImage->logicalSize();
/macosx-10.10/WebCore-7600.1.25/platform/graphics/filters/
H A DFEBlend.cpp81 filterContext->drawImageBuffer(imageBuffer, ColorSpaceDeviceRGB, drawingRegionOfInputImage(in->absolutePaintRect()), IntRect(IntPoint(), imageBuffer->logicalSize()), ImagePaintingOptions(CompositeSourceOver, m_mode));
H A DFEComposite.cpp306 filterContext->drawImageBuffer(imageBuffer2, ColorSpaceDeviceRGB, drawingRegionOfInputImage(in2->absolutePaintRect()), IntRect(IntPoint(), imageBuffer2->logicalSize()), CompositeDestinationOut);
310 filterContext->drawImageBuffer(imageBuffer, ColorSpaceDeviceRGB, drawingRegionOfInputImage(in->absolutePaintRect()), IntRect(IntPoint(), imageBuffer->logicalSize()), CompositeSourceAtop);
314 filterContext->drawImageBuffer(imageBuffer, ColorSpaceDeviceRGB, drawingRegionOfInputImage(in->absolutePaintRect()), IntRect(IntPoint(), imageBuffer->logicalSize()), CompositeXOR);
/macosx-10.10/hfs-285/newfs_hfs/
H A Dmakehfs.c99 UInt32 logicalSize; member in struct:filefork
692 hp->allocationFile.logicalSize = defaults->allocationClumpSize;
742 hp->extentsFile.logicalSize = defaults->extentsClumpSize;
760 hp->attributesFile.logicalSize = defaults->attributesClumpSize;
784 hp->catalogFile.logicalSize = defaults->catalogClumpSize;
1698 cfp->dataFork.logicalSize = SWAP_BE64 (dp->journalSize);
1736 cfp->dataFork.logicalSize = SWAP_BE64(dp->blockSize);;
/macosx-10.10/hfs-285/CopyHFSMeta/
H A Dutil.c458 if (vop->vdp->priHeader.catalogFile.logicalSize) {
478 if (vop->vdp->priHeader.attributesFile.logicalSize) {
/macosx-10.10/hfs-285/fsck_hfs/dfalib/
H A DSUtils.c2306 volumeHeader->extentsFile.logicalSize = fcb->fcbLogicalSize;
2311 volumeHeader->catalogFile.logicalSize = fcb->fcbLogicalSize;
2316 volumeHeader->allocationFile.logicalSize = fcb->fcbLogicalSize;
2323 volumeHeader->attributesFile.logicalSize = fcb->fcbLogicalSize;
H A DCatalogCheck.c913 if (file->dataFork.logicalSize > bytes) {
915 file->dataFork.logicalSize, bytes);
933 if (file->resourceFork.logicalSize > bytes) {
935 file->resourceFork.logicalSize, bytes);
1024 if (file->dataFork.logicalSize > PATH_MAX) {
1025 fsckPrint(gScavGlobals->context, E_BadSymLinkLength, file->fileID, (unsigned int)file->dataFork.logicalSize, (unsigned int)PATH_MAX);
1038 plog("Unable to allocate %llu bytes for reading symlink", file->dataFork.logicalSize);
1045 while (nread < file->dataFork.logicalSize) {
1057 if (dataLen != file->dataFork.logicalSize) {
1058 fsckPrint(gScavGlobals->context, E_BadSymLinkLength, file->fileID, (unsigned int)dataLen, (unsigned int)file->dataFork.logicalSize);
[all...]
H A DSVerify1.c1055 GPtr->calculatedExtentsFCB->fcbLogicalSize = volumeHeader->extentsFile.logicalSize; // Set Extents tree's LEOF
1399 GPtr->calculatedCatalogFCB->fcbLogicalSize = volumeHeader->catalogFile.logicalSize;
1633 fcb->fcbLogicalSize = volumeHeader->allocationFile.logicalSize;
1645 fcb->fcbLogicalSize = volumeHeader->startupFile.logicalSize;
2096 GPtr->calculatedAttributesFCB->fcbLogicalSize = (UInt64) volumeHeader->attributesFile.logicalSize; // Set Attributes tree's LEOF
2259 * logicalSize - logical size of the attribute
2265 u_int64_t logicalSize, u_int32_t calculatedTotalBlocks)
2268 GPtr->lastAttrInfo.logicalSize = logicalSize;
2302 if (GPtr->lastAttrInfo.logicalSize > byte
2264 setLastAttrAllocInfo(SGlobPtr GPtr, u_int32_t totalBlocks, u_int64_t logicalSize, u_int32_t calculatedTotalBlocks) argument
[all...]
H A DScavenger.h641 u_int64_t logicalSize; member in struct:attributeInfo
H A DSRepair.c2456 if (rec.hfsPlusFile.resourceFork.logicalSize > bytes) {
2457 rec.hfsPlusFile.resourceFork.logicalSize = bytes;
2469 if (rec.hfsPlusFile.dataFork.logicalSize > bytes) {
2470 rec.hfsPlusFile.dataFork.logicalSize = bytes;
2475 (p->incorrect == rec.hfsPlusFile.resourceFork.logicalSize)) {
2477 rec.hfsPlusFile.resourceFork.logicalSize = p->correct;
2481 (p->incorrect == rec.hfsPlusFile.dataFork.logicalSize)) {
2483 rec.hfsPlusFile.dataFork.logicalSize = p->correct;
2811 if (record.forkData.theFork.logicalSize > bytes) {
2812 record.forkData.theFork.logicalSize
[all...]

Completed in 275 milliseconds

12