Searched refs:Size (Results 226 - 250 of 621) sorted by relevance

1234567891011>>

/haiku/src/add-ons/kernel/file_systems/btrfs/
H A DInode.cpp41 fCache = file_cache_create(fVolume->ID(), ID(), Size());
42 fMap = file_map_create(fVolume->ID(), ID(), Size());
58 fCache = file_cache_create(fVolume->ID(), ID(), Size());
59 fMap = file_map_create(fVolume->ID(), ID(), Size());
201 *_length = extent_data->Size() - diff;
223 if (pos >= Size() || length == 0) {
273 *_length = min_c(extent_data->Size() - diff, *_length);
/haiku/src/add-ons/kernel/file_systems/ext2/
H A Dkernel_interface.cpp253 if (!inode->IsSymLink() || inode->Size() >= EXT2_SHORT_SYMLINK_LENGTH) {
428 if (offset >= inode->Size() || size <= blockLength) {
538 if (*offset >= inode->Size())
541 while (*offset < inode->Size()) {
554 if (*offset > inode->Size())
555 *offset = inode->Size();
607 stat->st_size = inode->Size();
637 if ((mask & B_STAT_SIZE) != 0 && inode->Size() != stat->st_size) {
646 (long)inode->Size(), (long)stat->st_size);
648 off_t oldSize = inode->Size();
[all...]
/haiku/src/apps/haikudepot/ui/
H A DPackageListView.cpp109 double Size() const function in class:SizeField
533 if (sizeField1->Size() > sizeField2->Size())
535 else if (sizeField1->Size() < sizeField2->Size())
601 sTextMargin = ceilf(font.Size() * 0.8);
623 Inherited(ceilf(be_plain_font->Size() * 1.8f)),
699 SetField(new SizeField(fPackage->Size()), kSizeColumn);
742 font.SetSize(font.Size() * 0.75f);
863 float scale = be_plain_font->Size() / 1
[all...]
/haiku/src/apps/deskbar/
H A DResourceSet.cpp191 size_t Size() const function in class:TResourcePrivate::TypeItem
605 *outSize = item ? item->Size() : 0;
617 *outSize = item ? item->Size() : 0;
816 BMemoryIO stream(from->Data(), from->Size());
863 BMemoryIO stream(from->Data(), from->Size());
866 stringBlock = new StringBlockTypeItem(from->Data(), from->Size());
/haiku/src/system/boot/loader/file_systems/packagefs/
H A Dpackagefs.cpp155 off_t Size() const function in struct:PackageFS::PackageFile
157 return fData.Size();
528 off_t size = fFile->Size();
588 virtual off_t Size() const function in struct:PackageFS::File
590 return fFile->Size();
654 virtual off_t Size() const function in struct:PackageFS::Symlink
/haiku/src/add-ons/kernel/partitioning_systems/common/
H A DPartitionMap.cpp231 if (location >= midPartition->Offset() + midPartition->Size())
238 location < partition->Offset() + partition->Size());
559 descriptor->size = Size() / BlockSize();
714 descriptor->size = Size() / BlockSize();
897 off_t previousSize = previousPartition->Size()
910 nextOffset = partition->Offset() + partition->Size();
/haiku/src/add-ons/kernel/file_systems/exfat/
H A Dkernel_interface.cpp369 if ((off_t)size <= vecs[index - 1].length || offset >= inode->Size()) {
444 stat->st_size = inode->Size();
445 stat->st_blocks = (inode->Size() + 511) / 512;
474 cookie->last_size = inode->Size();
520 if (inode->Size() != cookie->last_size)
550 *_bufferSize = inode->Size();
/haiku/src/system/kernel/cache/
H A Dfile_map.cpp83 off_t Size() const { return fSize; } function in class:FileMap
418 if (offset >= Size()) {
509 kprintf(" size %" B_PRIdOFF "\n", map->Size());
550 if (minSize > map->Size() || (maxSize != -1 && maxSize < map->Size()))
562 size += map->Size();
/haiku/src/apps/drivesetup/
H A DDiskView.cpp70 font.SetSize(ceilf(font.Size() * 0.85));
74 fGroupLayout->SetInsets(kLayoutInset, kLayoutInset + font.Size(),
77 SetExplicitMinSize(BSize(font.Size() + 20, 30));
352 off_t size = partition->Size();
353 off_t parentSize = partition->Parent()->Size();
406 off_t parentSize = partition->Size();
H A DPartitionList.h78 off_t Size() const function in class:PartitionListRow
/haiku/src/add-ons/kernel/drivers/audio/echo/generic/
H A DCDaffyDuck.cpp51 PVOID CDaffyDuck::operator new( size_t Size )
56 Status = OsAllocateNonPaged(Size,&pMemory);
66 memset( pMemory, 0, Size );
71 } // PVOID CDaffyDuck::operator new( size_t Size )
/haiku/src/kits/debugger/debugger_interface/remote/
H A DRemoteDebugRequest.h124 target_size_t Size() const { return fSize; } function in class:RemoteDebugReadMemoryRequest
150 target_size_t Size() const { return fSize; } function in class:RemoteDebugWriteMemoryRequest
389 target_size_t Size() const { return fSize; } function in class:RemoteDebugReadMemoryResponse
/haiku/src/system/boot/loader/
H A Dpartitions.cpp217 Partition::Size() const function in class:boot::Partition
223 return Node::Size();
455 partition->size = partition->Size();
/haiku/src/add-ons/kernel/file_systems/xfs/
H A DExtent.cpp129 if (fInode->Size() != fInode->DirBlockSize())
159 entry = (void*)(fBlockBuffer + ExtentDataHeader::Size(fInode));
301 ExtentDataHeader::Size(Inode* inode) function in class:ExtentDataHeader
/haiku/src/apps/webpositive/support/
H A DFontSelectionView.cpp78 fSizesMenuField = new BMenuField("size", B_TRANSLATE("Size:"), fSizesMenu,
135 || size == fCurrentFont.Size())
467 snprintf(label, sizeof(label), "%" B_PRId32, (int32)fCurrentFont.Size());
501 if (size == fCurrentFont.Size())
/haiku/headers/libs/agg/
H A Dagg_array.h47 template<class T, unsigned Size> class pod_auto_array
51 typedef pod_auto_array<T, Size> self_type;
56 memcpy(m_array, c, sizeof(T) * Size);
61 memcpy(m_array, c, sizeof(T) * Size);
65 static unsigned size() { return Size; }
73 T m_array[Size];
78 template<class T, unsigned Size> class pod_auto_vector
82 typedef pod_auto_vector<T, Size> self_type;
100 T m_array[Size];
/haiku/headers/os/drivers/pcmcia/
H A Dbulkmem.h75 u_int Size; member in struct:eraseq_entry_t
/haiku/headers/os/net/
H A DNetBuffer.h65 size_t Size() const;
/haiku/headers/private/kernel/boot/net/
H A DiSCSITarget.h90 virtual off_t Size() const;
/haiku/src/apps/sudoku/
H A DSudokuField.h38 uint32 Size() const { return fSize; } function in class:SudokuField
/haiku/src/preferences/mail/
H A DDNSQuery.h39 size_t Size(void) const { return fBuffer.BufferLength(); } function in class:BRawNetBuffer
/haiku/src/tests/kits/app/bmessage/
H A DMessageMessengerItemTest.h82 inline static bool Size(size_t size, BMessenger& t) function in struct:TMessengerAssertPolicy
/haiku/src/tests/kits/interface/layout/widget_layout_test/
H A DView.h31 BSize Size() const;
/haiku/headers/os/interface/
H A DAbstractLayout.h10 #include <Size.h>
/haiku/src/apps/haikudepot/ui_generic/
H A Dsupport.cpp99 font.SetSize(ceilf(font.Size() * 0.8));

Completed in 295 milliseconds

1234567891011>>