Searched refs:arraySize (Results 1 – 12 of 12) sorted by relevance
/haiku/src/add-ons/kernel/file_systems/ramfs/ |
H A D | AllocationInfo.cpp | 53 AllocationInfo::AddNodeTableAllocation(size_t arraySize, size_t vectorSize, in AddNodeTableAllocation() argument 56 fNodeTableArraySize += arraySize; in AddNodeTableAllocation() 63 AllocationInfo::AddDirectoryEntryTableAllocation(size_t arraySize, in AddDirectoryEntryTableAllocation() argument 68 fDirectoryEntryTableArraySize += arraySize; in AddDirectoryEntryTableAllocation()
|
H A D | AllocationInfo.h | 15 void AddNodeTableAllocation(size_t arraySize, size_t vectorSize, 17 void AddDirectoryEntryTableAllocation(size_t arraySize, size_t vectorSize,
|
/haiku/src/tests/add-ons/kernel/file_systems/bfs/dump_log/ |
H A D | dump_log.cpp | 129 int32 arraySize = blockSize / sizeof(off_t); in dumpLogEntry() local 134 arraySize--; in dumpLogEntry() 142 indexOffset += arraySize; in dumpLogEntry() 146 if (arrayIndex >= arraySize) in dumpLogEntry()
|
/haiku/src/kits/shared/ |
H A D | ArgumentVector.cpp | 177 size_t arraySize = (count + 1) * sizeof(char*); in Parse() local 179 arraySize + parser.TotalStringSize()); in Parse()
|
/haiku/src/add-ons/kernel/partitioning_systems/gpt/ |
H A D | Header.cpp | 161 size_t arraySize = _EntryArraySize(); in Header() local 162 fEntries = new (std::nothrow) uint8[arraySize]; in Header() 168 memset(fEntries, 0, arraySize); in Header() 171 uint32 entryBlocks = (arraySize + fBlockSize - 1) / fBlockSize; in Header()
|
/haiku/src/add-ons/kernel/file_systems/netfs/server/ |
H A D | ClientConnection.h | 177 int32 arraySize, 181 int32 arraySize,
|
H A D | ClientConnection.cpp | 3300 ClientConnection::_GetAllClientVolumeIDs(int32* volumeIDs, int32 arraySize, in _GetAllClientVolumeIDs() argument 3306 it.HasNext() && arraySize > count;) { in _GetAllClientVolumeIDs() 3318 int32* volumeIDs, int32 arraySize, ClientVolumeFilter* filter) in _GetContainingClientVolumes() argument 3324 it.HasNext() && arraySize > count;) { in _GetContainingClientVolumes()
|
/haiku/headers/private/kernel/util/ |
H A D | Heap.h | 278 size_t arraySize = newSize * sizeof(Element*); in _GrowHeap() local 280 = reinterpret_cast<Element**>(realloc(fElements, arraySize)); in _GrowHeap()
|
H A D | MinMaxHeap.h | 328 size_t arraySize = newSize * sizeof(Element*); in _GrowHeap() local 330 = reinterpret_cast<Element**>(realloc(fMinElements, arraySize)); in _GrowHeap()
|
/haiku/src/kits/translation/ |
H A D | TranslatorRoster.cpp | 779 int32 arraySize = fTranslators.size(); in GetTranslators() local 780 translator_info* array = new (std::nothrow) translator_info[arraySize]; in GetTranslators() 830 int32 arraySize = fTranslators.size(); in GetAllTranslators() local 831 translator_id* array = new (std::nothrow) translator_id[arraySize]; in GetAllTranslators()
|
/haiku/src/servers/app/drawing/Painter/ |
H A D | Painter.cpp | 1994 uint32* colors, int32 arrayOffset, int32 arraySize) const in _MakeGradient() 2006 if (index > arraySize) in _MakeGradient() 2007 index = arraySize; in _MakeGradient() 2036 int32 stopIndex = min_c(offset, arraySize - 1); in _MakeGradient() 2057 if (index < arraySize) { in _MakeGradient() 2060 for (int32 i = startIndex; i < arraySize; i++) { in _MakeGradient()
|
H A D | Painter.h | 315 int32 arrayOffset, int32 arraySize) const;
|