Searched refs:currentSize (Results 1 - 10 of 10) sorted by relevance

/haiku/src/kits/shared/
H A DStatusView.cpp18 float currentSize; local
29 currentSize = fontHeight.ascent + fontHeight.descent;
31 if (currentSize > maxSize)
/haiku/src/kits/network/libnetservices2/
H A DHttpBuffer.cpp49 auto currentSize = fBuffer.size(); local
50 auto remainingBufferSize = fBuffer.capacity() - currentSize;
60 bytesRead = source->Read(fBuffer.data() + currentSize, remainingBufferSize);
63 fBuffer.resize(currentSize);
71 fBuffer.resize(currentSize + bytesRead);
/haiku/src/apps/webpositive/
H A DDownloadProgressView.cpp393 int64 currentSize; local
395 if (message->FindInt64("current size", &currentSize) == B_OK
397 _UpdateStatus(currentSize, expectedSize);
706 DownloadProgressView::_UpdateStatus(off_t currentSize, off_t expectedSize) argument
708 fCurrentSize = currentSize;
711 fStatusBar->SetTo(100.0 * currentSize / expectedSize);
722 = (double)(currentSize - fLastSpeedReferenceSize)
724 fLastSpeedReferenceSize = currentSize;
753 BString currentSize = string_for_size((double)fCurrentSize, sizeBuffer, local
757 int currentSizeUnitPos = currentSize
[all...]
H A DDownloadProgressView.h56 void _UpdateStatus(off_t currentSize,
/haiku/src/preferences/appearance/
H A DFontSelectionView.cpp407 float currentSize; local
410 currentSize = fCurrentFont.Size();
414 || currentSize != defaultSize;
/haiku/src/kits/tracker/infowindow/
H A DInfoWindow.cpp543 off_t totalSize = 0, currentSize; local
553 currentSize = 0;
561 &currentSize, &currentFileCount, &currentDirCount);
562 totalSize += currentSize;
/haiku/src/apps/terminal/
H A DAppearPrefView.cpp204 const char* currentSize local
209 || currentSize == NULL || strcmp(currentSize, size) != 0) {
/haiku/src/apps/icon-o-matic/import_export/flat_icon/
H A DFlatIconExporter.cpp650 size_t currentSize = buffer.SizeUsed(); local
718 fGradientSize += buffer.SizeUsed() - currentSize;
/haiku/src/build/libbe/app/
H A DMessage.cpp1467 size_t currentSize = *(uint32 *)pointer + sizeof(uint32); local
1468 result = _ResizeData(offset, -currentSize);
1472 field->data_size -= currentSize;
1583 size_t currentSize = *(uint32 *)pointer; local
1584 int32 change = numBytes - currentSize;
/haiku/src/kits/app/
H A DMessage.cpp1897 size_t currentSize = *(uint32*)pointer + sizeof(uint32); local
1898 result = _ResizeData(offset, -currentSize);
1902 field->data_size -= currentSize;
2017 size_t currentSize = *(uint32*)pointer; local
2018 int32 change = numBytes - currentSize;

Completed in 84 milliseconds