Home
last modified time | relevance | path

Searched refs:arraySize (Results 1 – 12 of 12) sorted by relevance

/haiku/src/add-ons/kernel/file_systems/ramfs/
H A DAllocationInfo.cpp53 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 DAllocationInfo.h15 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 Ddump_log.cpp129 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 DArgumentVector.cpp177 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 DHeader.cpp161 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 DClientConnection.h177 int32 arraySize,
181 int32 arraySize,
H A DClientConnection.cpp3300 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 DHeap.h278 size_t arraySize = newSize * sizeof(Element*); in _GrowHeap() local
280 = reinterpret_cast<Element**>(realloc(fElements, arraySize)); in _GrowHeap()
H A DMinMaxHeap.h328 size_t arraySize = newSize * sizeof(Element*); in _GrowHeap() local
330 = reinterpret_cast<Element**>(realloc(fMinElements, arraySize)); in _GrowHeap()
/haiku/src/kits/translation/
H A DTranslatorRoster.cpp779 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 DPainter.cpp1994 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 DPainter.h315 int32 arrayOffset, int32 arraySize) const;