Home
last modified time | relevance | path

Searched refs:GetBits (Results 1 – 5 of 5) sorted by relevance

/third_party/mesa3d/src/amd/addrlib/src/core/
Daddrlib2.cpp1666 microBlockOffset = GetBits(pIn->x, 0, 3, log2ElementBytes) | in ComputeSurface2DMicroBlockOffset()
1667 GetBits(pIn->y, 1, 2, 3 + log2ElementBytes) | in ComputeSurface2DMicroBlockOffset()
1668 GetBits(pIn->x, 3, 1, 5 + log2ElementBytes) | in ComputeSurface2DMicroBlockOffset()
1669 GetBits(pIn->y, 3, 1, 6 + log2ElementBytes); in ComputeSurface2DMicroBlockOffset()
1670 microBlockOffset = GetBits(microBlockOffset, 0, 4, 0) | in ComputeSurface2DMicroBlockOffset()
1672 GetBits(microBlockOffset, 4, 3, 5); in ComputeSurface2DMicroBlockOffset()
1677 microBlockOffset = GetBits(pIn->y, 0, 3, log2ElementBytes) | in ComputeSurface2DMicroBlockOffset()
1678 GetBits(pIn->x, 1, 2, 3 + log2ElementBytes) | in ComputeSurface2DMicroBlockOffset()
1679 GetBits(pIn->x, 3, 1, 5 + log2ElementBytes) | in ComputeSurface2DMicroBlockOffset()
1680 GetBits(pIn->y, 3, 1, 6 + log2ElementBytes); in ComputeSurface2DMicroBlockOffset()
[all …]
Daddrcommon.h725 static inline UINT_32 GetBits( in GetBits() function
/third_party/mesa3d/src/amd/addrlib/src/r800/
Dciaddrlib.cpp100 static UINT_64 GetBits( in GetBits() function
133 ret = GetBits(bits, lsb - 1, 0) // low bits in RemoveBits()
134 | (GetBits(bits, 8 * sizeof(bits) - 1, msb + 1) << lsb); //high bits in RemoveBits()
159 ret = GetBits(bits, lsb - 1, 0) // old low bitss in InsertBits()
160 | (GetBits(newBits, msb - lsb, 0) << lsb) //new bits in InsertBits()
161 | (GetBits(bits, 8 * sizeof(bits) - 1, lsb) << (msb + 1)); //old high bits in InsertBits()
2010 UINT_64 bankDataBits = GetBits(offset, msb, lsb); in HwlComputeMetadataNibbleAddress()
2018 UINT_64 pipeDataBits = GetBits(offset, msb, lsb); in HwlComputeMetadataNibbleAddress()
/third_party/skia/third_party/externals/libwebp/examples/
Dwebpinfo.c213 static int GetBits(const uint8_t* const data, size_t data_size, size_t nb, in GetBits() function
231 if (!GetBits(data, data_size, nb, val, bit_pos)) return 0; in GetSignedBits()
232 if (!GetBits(data, data_size, 1, &sign, bit_pos)) return 0; in GetSignedBits()
239 if (!GetBits(data, data_size, n, &(v), bit_pos)) { \
/third_party/node/src/crypto/
Dcrypto_common.cc482 Local<Value> GetBits(Environment* env, const BIGNUM* n) { in GetBits() function
1313 !Set<Value>(context, info, env->bits_string(), GetBits(env, n)) || in X509ToObject()