Searched refs:totalBytes (Results 1 - 25 of 45) sorted by relevance

12

/macosx-10.10/Security-57031.1.35/Security/sec/SecurityTool/
H A Ddigest_calc.c44 size_t nr = 0, totalBytes = 0; local
83 totalBytes = 0;
84 while((nr = pread(fd, data, sizeof(data), totalBytes)) > 0){
86 totalBytes += nr;
/macosx-10.10/Security-57031.1.35/SecurityTests/clxutils/simpleUrlAccess/
H A DsimpleUrlAccess.c59 Size totalBytes; local
69 totalBytes = GetHandleSize(h);
70 if(totalBytes == 0) {
75 while(bytesWritten < totalBytes) {
76 thisWrite = totalBytes - bytesWritten;
94 totalBytes += thisWrite;
95 if(totalBytes == bytesWritten) {
/macosx-10.10/libutil-38/
H A Dwipefs.cpp51 extMan->AddByteRangeExtent(extMan->totalBytes - size, size);
60 extMan->AddByteRangeExtent(extMan->totalBytes - 1024, 1024);
75 extMan->AddByteRangeExtent(extMan->totalBytes - 32 * 1024, 32 * 1024);
77 extMan->AddByteRangeExtent(extMan->totalBytes / 2 - 32 * 1024, 64 * 1024);
100 extMan->AddByteRangeExtent(extMan->totalBytes - blockSize, blockSize);
101 extMan->AddByteRangeExtent(extMan->totalBytes - 256 * blockSize, blockSize);
117 extMan->AddByteRangeExtent(extMan->totalBytes - 512 * 1024, 512 * 1024);
127 extMan->AddByteRangeExtent(extMan->totalBytes - 512 * 33, 512 * 33);
249 extent.length = handle->extMan.totalBytes;
269 off_t byteOffset, totalBytes; local
[all...]
H A DExtentManager.h52 ExtentManager() : blockSize(0), totalBytes(0), totalBlocks(0) {};
69 off_t totalBytes; member in class:ExtentManager
H A DExtentManager.cpp34 totalBytes = theTotalBytes;
35 totalBlocks = howmany(totalBytes, blockSize);
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/efl/
H A DSnapshotImageGL.cpp53 int totalBytes = width * height * 4; local
55 for (int i = 0; i < totalBytes; i += 4)
/macosx-10.10/WebCore-7600.1.25/platform/graphics/
H A DGraphicsContext3DPrivate.cpp100 int totalBytes = width * height * 4; local
102 auto pixels = std::make_unique<unsigned char[]>(totalBytes);
112 m_context->readRenderingResults(pixels.get(), totalBytes);
115 for (int i = 0; i < totalBytes; i += 4)
/macosx-10.10/WebCore-7600.1.25/platform/graphics/cg/
H A DIOSurfacePool.cpp85 size_t surfaceBytes = surface->totalBytes();
96 size_t surfaceBytes = surface->totalBytes();
164 if (surface->totalBytes() > m_maximumBytesCached)
267 m_inUseBytesCached -= surface->totalBytes();
338 size_t surfaceBytes = surface->totalBytes();
356 inUseSize += surface->totalBytes();
/macosx-10.10/JavaScriptCore-7600.1.17/assembler/
H A DMacroAssemblerX86.h309 const int totalBytes = opcodeBytes + modRMBytes + immediateBytes; local
310 ASSERT(totalBytes >= maxJumpReplacementSize());
311 return label.labelAtOffset(-totalBytes);
320 const int totalBytes = opcodeBytes + modRMBytes + offsetBytes + immediateBytes; local
321 ASSERT(totalBytes >= maxJumpReplacementSize());
322 return label.labelAtOffset(-totalBytes);
331 const int totalBytes = opcodeBytes + modRMBytes + offsetBytes + immediateBytes; local
332 ASSERT(totalBytes >= maxJumpReplacementSize());
333 return label.labelAtOffset(-totalBytes);
/macosx-10.10/WebCore-7600.1.25/fileapi/
H A DFileReaderLoader.h79 unsigned totalBytes() const { return m_totalBytes; } function in class:WebCore::FileReaderLoader
/macosx-10.10/WebCore-7600.1.25/platform/graphics/cocoa/
H A DIOSurface.h72 size_t totalBytes() const { return m_totalBytes; } function in class:WebCore::final
/macosx-10.10/WebCore-7600.1.25/platform/graphics/wince/
H A DMediaPlayerPrivateWinCE.h75 unsigned totalBytes() const;
/macosx-10.10/CommonCrypto-60061/cn_tool/
H A Dmain.c119 uint64_t totalBytes; member in struct:_cnContext
407 PRINT(" %llu", context->totalBytes);
428 context->totalBytes = sLen;
440 context->totalBytes += nr;
529 context->totalBytes = sLen;
571 context->totalBytes += bytesRead;
588 PRINT("\n%llu", context->totalBytes);
647 context->totalBytes = 0;
/macosx-10.10/Security-57031.1.35/SecurityTests/cspxutils/hashTime/
H A DhashTime.cpp217 float totalBytes = params->loops * bytesPerLoop; local
223 ((float)totalBytes / 1024.0) / timeSpent);
290 float totalBytes = params->loops * bytesPerLoop; local
296 ((float)totalBytes / 1024.0) / timeSpent);
389 float totalBytes = params->loops * bytesPerLoop; local
395 ((float)totalBytes / 1024.0) / timeSpent);
477 float totalBytes = params->loops * bytesPerLoop; local
483 ((float)totalBytes / 1024.0) / timeSpent);
/macosx-10.10/Security-57031.1.35/SecurityTests/cspxutils/hashTimeLibCrypt/
H A DhashTimeLibCrypt.cpp154 float totalBytes = params->loops * bytesPerLoop; local
160 ((float)totalBytes / 1024.0) / timeSpent);
/macosx-10.10/Security-57031.1.35/SecurityTests/cspxutils/hashTimeSA/
H A DhashTimeSA.cpp152 float totalBytes = params->loops * bytesPerLoop; local
158 ((float)totalBytes / 1024.0) / timeSpent);
251 float totalBytes = params->loops * bytesPerLoop; local
257 ((float)totalBytes / 1024.0) / timeSpent);
/macosx-10.10/WebKit-7600.1.25/mac/Plugins/
H A DWebNetscapePluginStream.mm508 int32_t totalBytes = [m_deliveryData.get() length];
511 while (totalBytesDelivered < totalBytes) {
525 deliveryBytes = std::min(deliveryBytes, totalBytes - totalBytesDelivered);
542 if (totalBytesDelivered < totalBytes) {
543 NSMutableData *newDeliveryData = [[NSMutableData alloc] initWithCapacity:totalBytes - totalBytesDelivered];
544 [newDeliveryData appendBytes:(char *)[m_deliveryData.get() bytes] + totalBytesDelivered length:totalBytes - totalBytesDelivered];
/macosx-10.10/zlib-55/zlib/contrib/minizip/
H A Dmztools.c43 uLong totalBytes = 0; local
119 totalBytes += dataSize;
274 *bytesRecovered = totalBytes;
/macosx-10.10/WebCore-7600.1.25/plugins/
H A DPluginStream.cpp344 int32_t totalBytes = m_deliveryData->size();
349 while (totalBytesDelivered < totalBytes) {
356 deliveryBytes = min(deliveryBytes, totalBytes - totalBytesDelivered);
378 if (totalBytesDelivered < totalBytes) {
379 int remainingBytes = totalBytes - totalBytesDelivered;
/macosx-10.10/WebCore-7600.1.25/platform/graphics/avfoundation/cf/
H A DMediaPlayerPrivateAVFoundationCF.h95 virtual unsigned long long totalBytes() const;
/macosx-10.10/WebCore-7600.1.25/platform/graphics/opengl/
H A DGraphicsContext3DOpenGLES.cpp69 int totalBytes = width * height * 4; local
71 for (int i = 0; i < totalBytes; i += 4)
/macosx-10.10/WebCore-7600.1.25/loader/cache/
H A DMemoryCache.h139 // - totalBytes: The maximum number of bytes that the cache should consume overall.
140 void setCapacities(unsigned minDeadBytes, unsigned maxDeadBytes, unsigned totalBytes);
/macosx-10.10/WebCore-7600.1.25/platform/graphics/gstreamer/
H A DMediaPlayerPrivateGStreamer.h95 unsigned totalBytes() const;
/macosx-10.10/WebCore-7600.1.25/platform/graphics/mac/
H A DMediaPlayerPrivateQTKit.h126 unsigned totalBytes() const;
/macosx-10.10/WebCore-7600.1.25/platform/graphics/avfoundation/
H A DMediaPlayerPrivateAVFoundation.h206 unsigned long long fileSize() const { return totalBytes(); }
242 virtual unsigned long long totalBytes() const = 0;

Completed in 481 milliseconds

12