Home
last modified time | relevance | path

Searched refs:BlockOffset (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64CompressJumpTables.cpp125 int BlockOffset = BlockInfo[Block->getNumber()]; in compressJumpTable() local
126 assert(BlockOffset % 4 == 0 && "misaligned basic block"); in compressJumpTable()
128 MaxOffset = std::max(MaxOffset, BlockOffset); in compressJumpTable()
129 if (BlockOffset <= MinOffset) { in compressJumpTable()
130 MinOffset = BlockOffset; in compressJumpTable()
/netbsd-src/sys/dev/raidframe/
H A Drf_declusterPQ.c285 RF_StripeNum_t BlockID, BlockOffset, RepIndex; in rf_MapSectorDeclusteredPQ() local
304 BlockOffset = TableOffset - BlockID * info->PUsPerBlock; in rf_MapSectorDeclusteredPQ()
306 RF_ASSERT(BlockOffset < info->groupSize - 2); in rf_MapSectorDeclusteredPQ()
317 BlockOffset++; /* P on last drive, Q on first */ in rf_MapSectorDeclusteredPQ()
319 BlockOffset += ((BlockOffset >= RepIndex) ? 2 : 0); /* skip over PQ */ in rf_MapSectorDeclusteredPQ()
320 RF_ASSERT(BlockOffset < info->groupSize); in rf_MapSectorDeclusteredPQ()
321 *col = info->LayoutTable[BlockID][BlockOffset]; in rf_MapSectorDeclusteredPQ()
332 outSU += info->OffsetTable[BlockID][BlockOffset] * layoutPtr->SUsPerPU; /* offs to the PU */ in rf_MapSectorDeclusteredPQ()
H A Drf_decluster.c325 RF_StripeNum_t BlockID, BlockOffset, RepIndex; in rf_MapSectorDeclustered() local
343 BlockOffset = TableOffset - BlockID * info->PUsPerBlock; in rf_MapSectorDeclustered()
347 BlockOffset += ((BlockOffset >= RepIndex) ? 1 : 0); in rf_MapSectorDeclustered()
348 *col = info->LayoutTable[BlockID][BlockOffset]; in rf_MapSectorDeclustered()
360 outSU += info->OffsetTable[BlockID][BlockOffset] * layoutPtr->SUsPerPU; /* offs to the PU */ in rf_MapSectorDeclustered()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/JITLink/
H A DMachOLinkGraphBuilder.cpp498 JITTargetAddress BlockOffset = BlockStart - NSec.Address; in graphifyRegularSymbols() local
505 << formatv("{0:x16}", BlockOffset) << " with " in graphifyRegularSymbols()
513 ArrayRef<char>(NSec.Data + BlockOffset, BlockSize), in graphifyRegularSymbols()