Lines Matching refs:lsb

104     UINT_32 lsb)    ///< Least signicant bit  in GetBits()  argument
108 if (msb >= lsb) in GetBits()
110 ret = (bits >> lsb) & (Mask(1 + msb - lsb)); in GetBits()
128 UINT_32 lsb) ///< Least signicant bit in RemoveBits() argument
132 if (msb >= lsb) in RemoveBits()
134 ret = GetBits(bits, lsb - 1, 0) // low bits in RemoveBits()
135 | (GetBits(bits, 8 * sizeof(bits) - 1, msb + 1) << lsb); //high bits in RemoveBits()
154 UINT_32 lsb) ///< Least signicant bit in InsertBits() argument
158 if (msb >= lsb) in InsertBits()
160 ret = GetBits(bits, lsb - 1, 0) // old low bitss in InsertBits()
161 | (GetBits(newBits, msb - lsb, 0) << lsb) //new bits in InsertBits()
162 | (GetBits(bits, 8 * sizeof(bits) - 1, lsb) << (msb + 1)); //old high bits in InsertBits()
1989 UINT_32 lsb = pipeBits + pipeInterleaveBits; in HwlComputeMetadataNibbleAddress() local
1990 UINT_32 msb = bankBits - 1 + lsb; in HwlComputeMetadataNibbleAddress()
1992 UINT_64 bankDataBits = GetBits(offset, msb, lsb); in HwlComputeMetadataNibbleAddress()
1997 lsb = pipeInterleaveBits; in HwlComputeMetadataNibbleAddress()
1998 msb = pipeBits - 1 + lsb; in HwlComputeMetadataNibbleAddress()
2000 UINT_64 pipeDataBits = GetBits(offset, msb, lsb); in HwlComputeMetadataNibbleAddress()
2005 lsb = pipeInterleaveBits; in HwlComputeMetadataNibbleAddress()
2008 UINT_64 offsetWithoutPipeBankBits = RemoveBits(offset, msb, lsb); in HwlComputeMetadataNibbleAddress()
2018 lsb = 0; in HwlComputeMetadataNibbleAddress()
2022 lsb = Log2(blocksInTile); in HwlComputeMetadataNibbleAddress()
2024 msb = bankBits - 1 + lsb; in HwlComputeMetadataNibbleAddress()
2026 UINT_64 blockInBankpipeWithBankBits = InsertBits(blockInBankpipe, bankDataBits, msb, lsb); in HwlComputeMetadataNibbleAddress()
2035 lsb = pipeInterleaveBits + 1; ///<+1 due to Nibble address now gives interleave bits extra lsb. in HwlComputeMetadataNibbleAddress()
2036 msb = pipeBits - 1 + lsb; in HwlComputeMetadataNibbleAddress()
2037 UINT_64 metadataAddress = InsertBits(metaAddressInPipe, pipeDataBits, msb, lsb); in HwlComputeMetadataNibbleAddress()