Searched refs:totalSize (Results 1 - 25 of 55) sorted by relevance

123

/haiku/headers/os/media/
H A DRealtimeAlloc.h19 status_t rtm_create_pool(rtm_pool** _pool, size_t totalSize,
22 status_t rtm_create_pool(rtm_pool** _pool, size_t totalSize, const char* name);
/haiku/src/kits/debugger/dwarf/
H A DTypeUnit.cpp13 off_t totalSize, off_t abbreviationOffset, off_t typeOffset,
16 BaseUnit(headerOffset, contentOffset, totalSize, abbreviationOffset,
12 TypeUnit(off_t headerOffset, off_t contentOffset, off_t totalSize, off_t abbreviationOffset, off_t typeOffset, uint8 addressSize, bool isBigEndian, uint64 signature, bool isDwarf64) argument
H A DBaseUnit.cpp16 off_t totalSize, off_t abbreviationOffset, uint8 addressSize,
21 fTotalSize(totalSize),
15 BaseUnit(off_t headerOffset, off_t contentOffset, off_t totalSize, off_t abbreviationOffset, uint8 addressSize, bool isBigEndian, bool isDwarf64) argument
H A DCompilationUnit.cpp31 off_t totalSize, off_t abbreviationOffset, uint8 addressSize,
34 BaseUnit(headerOffset, contentOffset, totalSize, abbreviationOffset,
30 CompilationUnit(off_t headerOffset, off_t contentOffset, off_t totalSize, off_t abbreviationOffset, uint8 addressSize, bool isBigEndian, bool isDwarf64) argument
H A DBaseUnit.h32 off_t totalSize,
H A DCompilationUnit.h25 off_t totalSize,
H A DTypeUnit.h22 off_t totalSize,
/haiku/src/add-ons/kernel/network/dns_resolver/server/
H A Dmain.cpp50 uint32 totalSize = addrsSize + namesSize + socksSize; local
51 char* reply = reinterpret_cast<char*>(malloc(totalSize));
96 *_totalSize = totalSize;
118 uint32 totalSize;
120 result = Serialize(&reply, &totalSize, ai);
124 result = write_port(gReplyPort, MsgReply, reply, totalSize);
/haiku/headers/private/storage/
H A DPef.h34 uint32 totalSize; member in struct:PEFSectionHeader
/haiku/src/tools/restest/
H A DPef.h34 uint32 totalSize; member in struct:PEFSectionHeader
/haiku/src/apps/debuganalyzer/gui/chart/
H A DLegendChartAxis.h40 float totalSize, double scale);
41 inline void _FilterLegends(int32 totalSize, int32 spacing,
H A DLegendChartAxis.cpp52 float totalSize, double scale)
55 if (position + legendSize > totalSize)
56 position = totalSize - legendSize;
64 LegendChartAxis::_FilterLegends(int32 totalSize, int32 spacing, argument
87 double scale = (double)totalSize / rangeSize;
98 (float)totalSize, scale);;
105 (float)totalSize, scale);;
276 float totalSize = floorf(fFrame.Size().*sizeField) + 1; local
280 double scale = (double)totalSize / rangeSize;
324 (float)totalSize, scal
51 _LegendPosition(double value, float legendSize, float totalSize, double scale) argument
[all...]
/haiku/src/bin/package/
H A DPackageWriterListener.cpp74 uint64 tocSize, uint32 packageAttributesSize, uint64 totalSize)
85 printf("total size: %10" B_PRIu64 "\n", totalSize);
73 OnPackageSizeInfo(uint32 headerSize, uint64 heapSize, uint64 tocSize, uint32 packageAttributesSize, uint64 totalSize) argument
H A DPackageWriterListener.h33 uint64 totalSize);
/haiku/src/system/boot/loader/net/
H A DEthernet.cpp153 size_t totalSize = headerBuffer.TotalSize(); local
159 memset((uint8*)fSendBuffer + totalSize, 0, paddingSize);
160 totalSize += paddingSize;
164 ssize_t bytesSent = fInterface->Send(fSendBuffer, totalSize);
167 if (bytesSent != (ssize_t)totalSize)
/haiku/src/kits/media/experimental/
H A DAdapterIO.cpp71 status_t EvaluatePosition(off_t position, off_t totalSize) argument
79 if (totalSize > 0 && position > totalSize) {
454 off_t totalSize = 0; local
455 if (GetSize(&totalSize) != B_OK)
459 " S %" B_PRId64 "\n", totalSize, pos, size);
461 status_t err = fBuffer->EvaluatePosition(pos, totalSize);
/haiku/src/kits/tracker/
H A DStatusWindow.h70 off_t totalSize,
109 void InitStatus(int32 totalItems, off_t totalSize,
H A DFSUtils.h68 virtual void Init(int32 totalItems, off_t totalSize,
124 off_t totalSize);
128 virtual void Init(int32 totalItems, off_t totalSize,
/haiku/headers/os/package/hpkg/
H A DRepositoryWriter.h49 uint64 totalSize) = 0;
H A DPackageWriter.h42 uint64 totalSize) = 0;
/haiku/src/libs/gnu/
H A Dxattr.cpp240 size_t totalSize = 0; local
250 totalSize += nameLength + 1;
263 if (size != 0 && totalSize > size) {
268 return totalSize;
/haiku/headers/private/package/hpkg/
H A DReaderImplBase.h496 uint64 totalSize = B_BENDIAN_TO_HOST_INT64(header.total_size); local
497 if (fileSize >= 0 && totalSize != (uint64)fileSize) {
500 B_PRIdOFF ")\n", fFileType, totalSize, fileSize);
507 if (compressedHeapSize > totalSize
508 || heapOffset > totalSize - compressedHeapSize) {
512 compressedHeapSize, totalSize, heapOffset);
/haiku/src/bin/package_repo/
H A Dcommand_create.cpp89 uint64 totalSize)
104 printf("total size: %10" B_PRIu64 "\n", totalSize);
87 OnRepositoryDone(uint32 headerSize, uint32 repositoryInfoSize, uint32 licenseCount, uint32 packageCount, uint32 packageAttributesSize, uint64 totalSize) argument
/haiku/src/tests/system/kernel/cache/
H A Dpages_io_test.cpp529 size_t totalSize = size; local
600 totalSize += bytes;
608 *_numBytes = totalSize;
615 status = get_file_map(ref, offset + totalSize, bytesLeft, fileVecs,
628 offset + totalSize, numBytes,
639 *_numBytes = totalSize;
/haiku/src/kits/network/libnetapi/
H A DSocketMessenger.cpp307 ssize_t totalSize = flatSize + sizeof(ssize_t); local
309 char* buffer = new(std::nothrow) char[totalSize];
320 ssize_t size = fSocket.Write(buffer, totalSize);

Completed in 239 milliseconds

123