HomeSort by: relevance | last modified time | path
    Searched defs:GetBits (Results 1 - 10 of 10) sorted by relevancy

  /xsrc/external/mit/xf86-video-mach64/dist/src/
atiutil.h 51 #define GetBits(__Value, _Mask) (((__Value) & (_Mask)) / UnitOf(_Mask))
54 #define MaxBits(__Mask) GetBits(__Mask, __Mask)
57 #define GetByte(_Value, _Byte) GetBits(_Value, _ByteMask(_Byte))
61 #define GetWord(_Value, _Word) GetBits(_Value, _WordMask(_Word))
  /xsrc/external/mit/xorg-server/dist/miext/shadow/
shplanar.c 70 #define GetBits(p,o,d) {\
81 #define GetBits(p,o,d) {\
154 GetBits(plane, 0, s1);
155 GetBits(plane, 1, s2);
156 GetBits(plane, 2, s3);
157 GetBits(plane, 3, s4);
shplanar8.c 71 #define GetBits(p,o,d) { \
84 #define GetBits(p,o,d) { \
156 GetBits(plane, 0, s1);
157 GetBits(plane, 2, s2);
158 GetBits(plane, 4, s3);
159 GetBits(plane, 6, s4);
  /xsrc/external/mit/xorg-server.old/dist/miext/shadow/
shplanar.c 70 #define GetBits(p,o,d) {\
81 #define GetBits(p,o,d) {\
158 GetBits(plane,0,s1);
159 GetBits(plane,1,s2);
160 GetBits(plane,2,s3);
161 GetBits(plane,3,s4);
shplanar8.c 71 #define GetBits(p,o,d) { \
84 #define GetBits(p,o,d) { \
160 GetBits(plane,0,s1);
161 GetBits(plane,2,s2);
162 GetBits(plane,4,s3);
163 GetBits(plane,6,s4);
  /xsrc/external/mit/MesaLib/dist/src/amd/addrlib/src/core/
addrcommon.h 672 * GetBits
688 static inline UINT_32 GetBits(
  /xsrc/external/mit/MesaLib.old/dist/src/amd/addrlib/src/core/
addrcommon.h 651 * GetBits
667 static inline UINT_32 GetBits(
  /xsrc/external/mit/MesaLib.old/dist/src/amd/addrlib/src/core/core/
addrcommon.h 651 * GetBits
667 static inline UINT_32 GetBits(
  /xsrc/external/mit/MesaLib/dist/src/amd/addrlib/src/r800/
ciaddrlib.cpp 93 * GetBits
101 static UINT_64 GetBits(
134 ret = GetBits(bits, lsb - 1, 0) // low bits
135 | (GetBits(bits, 8 * sizeof(bits) - 1, msb + 1) << lsb); //high bits
160 ret = GetBits(bits, lsb - 1, 0) // old low bitss
161 | (GetBits(newBits, msb - lsb, 0) << lsb) //new bits
162 | (GetBits(bits, 8 * sizeof(bits) - 1, lsb) << (msb + 1)); //old high bits
2011 UINT_64 bankDataBits = GetBits(offset, msb, lsb);
2019 UINT_64 pipeDataBits = GetBits(offset, msb, lsb);
  /xsrc/external/mit/MesaLib.old/dist/src/amd/addrlib/src/r800/
ciaddrlib.cpp 93 * GetBits
101 static UINT_64 GetBits(
134 ret = GetBits(bits, lsb - 1, 0) // low bits
135 | (GetBits(bits, 8 * sizeof(bits) - 1, msb + 1) << lsb); //high bits
160 ret = GetBits(bits, lsb - 1, 0) // old low bitss
161 | (GetBits(newBits, msb - lsb, 0) << lsb) //new bits
162 | (GetBits(bits, 8 * sizeof(bits) - 1, lsb) << (msb + 1)); //old high bits
1996 UINT_64 bankDataBits = GetBits(offset, msb, lsb);
2004 UINT_64 pipeDataBits = GetBits(offset, msb, lsb);

Completed in 13 milliseconds