Searched refs:roundedSize (Results 1 - 4 of 4) sorted by relevance

/haiku/src/add-ons/kernel/file_systems/nfs/
H A DXDROutPacket.c69 size_t roundedSize = (size + 3) & ~3; local
70 XDROutPacketGrow(packet, roundedSize);
75 memset(&packet->fBuffer[packet->fLength + size], 0, roundedSize - size);
76 packet->fLength += roundedSize;
/haiku/src/add-ons/kernel/bus_managers/usb/
H A DPhysicalMemoryAllocator.cpp71 size_t roundedSize = biggestSize * minCountPerBlock; local
72 fDebugBase = roundedSize;
75 roundedSize += sizeof(fDebugUseMap) * 8 * fDebugChunkSize;
76 roundedSize = (roundedSize + B_PAGE_SIZE - 1) & ~(B_PAGE_SIZE - 1);
79 roundedSize, B_32_BIT_CONTIGUOUS,
87 if (get_memory_map(fLogicalBase, roundedSize, &physicalEntry, 1) < B_OK) {
/haiku/src/libs/compat/openbsd_wlan/net80211/
H A Dieee80211_haiku.cpp227 const int32 roundedSize = roundup(size, 4); local
228 if (remaining < roundedSize)
248 sr->isr_len = roundedSize;
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DInode.cpp2326 off_t roundedSize = round_up(Size(), fVolume->BlockSize());
2328 return Node().data.MaxDirectRange() > roundedSize
2329 || Node().data.MaxIndirectRange() > roundedSize
2330 || Node().data.MaxDoubleIndirectRange() > roundedSize;

Completed in 101 milliseconds