Searched refs:newBlock (Results 1 - 7 of 7) sorted by relevance

/haiku/src/add-ons/kernel/file_systems/ext2/
H A DExtentStream.cpp243 fsblock_t newBlock = fStream->extent_index[0].PhysicalBlock(); local
246 blockGroup, newBlock, _allocated);
251 ASSERT(_CheckBlock(fStream, newBlock) == B_OK);
253 newBlock);
256 transaction, newBlock);
267 fStream->extent_index[0].SetPhysicalBlock(newBlock);
283 fsblock_t newBlock = path[level]; local
286 blockGroup, newBlock, _allocated);
291 ASSERT(_CheckBlock(fStream, newBlock) == B_OK);
295 stream->extent_index[index].SetPhysicalBlock(newBlock);
324 fsblock_t newBlock; local
[all...]
H A DHTree.h73 void SetBlock(uint32 newBlock) argument
74 { block = B_HOST_TO_LENDIAN_INT32(newBlock); }
/haiku/src/system/kernel/slab/
H A Dallocator.cpp279 void* newBlock = block_alloc(newSize, 0, flags); local
280 if (newBlock == NULL)
283 memcpy(newBlock, address, std::min(oldSize, newSize));
287 return newBlock;
/haiku/src/tests/system/kernel/file_corruption/fs/
H A DDirectory.cpp105 Transaction& transaction, Block& newBlock,
1112 // Some temporary blocks: newBlock is used when a block is split. The
1118 Block newBlock; local
1197 transaction, newBlock, splitIndex);
1201 nextBlockIndexToInsert = newBlock.Index();
1204 (checksumfs_dir_entry_block*)newBlock.Data(),
1229 info.block.TransferFrom(newBlock);
1250 tempBlockUpdateInsert.TransferFrom(newBlock);
1300 transaction, newBlock, splitIndex);
1305 (checksumfs_dir_entry_block*)newBlock
[all...]
H A DFile.cpp632 Block newBlock; local
633 if (!newBlock.GetZero(GetVolume(), allocatedBlock.Index(),
641 "\n", newBlock.Index(), i + 1);
644 memcpy(newBlock.Data(), infos[0].blockData, childCount * 8);
647 infos[0].blockData[0] = newBlock.Index();
/haiku/src/system/libroot/posix/malloc_debug/
H A Dguarded_heap.cpp780 void* newBlock = guarded_heap_allocate(sGuardedHeap, newSize, local
782 if (newBlock == NULL)
785 memcpy(newBlock, address, min_c(oldSize, newSize));
794 return newBlock;
/haiku/src/system/kernel/
H A Dguarded_heap.cpp565 void* newBlock = malloc_etc(newSize, flags); local
566 if (newBlock == NULL)
569 memcpy(newBlock, address, min_c(oldSize, newSize));
573 return newBlock;

Completed in 169 milliseconds