Searched refs:AddrGetBits (Results 1 – 1 of 1) sorted by relevance
/external/mesa3d/src/amd/addrlib/r800/ |
D | ciaddrlib.cpp | 87 static UINT_64 AddrGetBits( in AddrGetBits() function 120 ret = AddrGetBits(bits, lsb - 1, 0) // low bits in AddrRemoveBits() 121 | (AddrGetBits(bits, 8 * sizeof(bits) - 1, msb + 1) << lsb); //high bits in AddrRemoveBits() 146 ret = AddrGetBits(bits, lsb - 1, 0) // old low bitss in AddrInsertBits() 147 | (AddrGetBits(newBits, msb - lsb, 0) << lsb) //new bits in AddrInsertBits() 148 | (AddrGetBits(bits, 8 * sizeof(bits) - 1, lsb) << (msb + 1)); //old high bits in AddrInsertBits() 1697 UINT_64 bankDataBits = AddrGetBits(offset, msb, lsb); in HwlComputeMetadataNibbleAddress() 1705 UINT_64 pipeDataBits = AddrGetBits(offset, msb, lsb); in HwlComputeMetadataNibbleAddress()
|