Searched refs:GetBit (Results 1 - 15 of 15) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/amd/addrlib/src/core/
H A Daddrcommon.h634 * GetBit
640 static inline UINT_32 GetBit( function in namespace:Addr
696 mort |= (GetBit(y, i) << (2 * i));
697 mort |= (GetBit(x, i) << (2 * i + 1));
721 mort |= (GetBit(z, i) << (3 * i));
722 mort |= (GetBit(y, i) << (3 * i + 1));
723 mort |= (GetBit(x, i) << (3 * i + 2));
745 reverse |= (GetBit(v, num - 1 - i) << i);
H A Daddrlib2.cpp1529 microBlockOffset = (GetBit(pIn->x, 0) << 4) |
1530 (GetBit(pIn->y, 0) << 5) |
1531 (GetBit(pIn->x, 1) << 6) |
1532 (GetBit(pIn->y, 1) << 7);
1541 (GetBit(pIn->y, 0) << 4) |
1552 (GetBit(pIn->x, 0) << 4) |
/xsrc/external/mit/MesaLib.old/dist/src/amd/addrlib/src/core/core/
H A Daddrcommon.h634 * GetBit
640 static inline UINT_32 GetBit( function in namespace:Addr
696 mort |= (GetBit(y, i) << (2 * i));
697 mort |= (GetBit(x, i) << (2 * i + 1));
721 mort |= (GetBit(z, i) << (3 * i));
722 mort |= (GetBit(y, i) << (3 * i + 1));
723 mort |= (GetBit(x, i) << (3 * i + 2));
745 reverse |= (GetBit(v, num - 1 - i) << i);
H A Daddrlib2.cpp1529 microBlockOffset = (GetBit(pIn->x, 0) << 4) |
1530 (GetBit(pIn->y, 0) << 5) |
1531 (GetBit(pIn->x, 1) << 6) |
1532 (GetBit(pIn->y, 1) << 7);
1541 (GetBit(pIn->y, 0) << 4) |
1552 (GetBit(pIn->x, 0) << 4) |
/xsrc/external/mit/MesaLib/dist/src/amd/addrlib/src/core/
H A Daddrcommon.h655 * GetBit
661 static inline UINT_32 GetBit( function in namespace:Addr
717 mort |= (GetBit(y, i) << (2 * i));
718 mort |= (GetBit(x, i) << (2 * i + 1));
742 mort |= (GetBit(z, i) << (3 * i));
743 mort |= (GetBit(y, i) << (3 * i + 1));
744 mort |= (GetBit(x, i) << (3 * i + 2));
766 reverse |= (GetBit(v, num - 1 - i) << i);
H A Daddrlib2.cpp1659 microBlockOffset = (GetBit(pIn->x, 0) << 4) |
1660 (GetBit(pIn->y, 0) << 5) |
1661 (GetBit(pIn->x, 1) << 6) |
1662 (GetBit(pIn->y, 1) << 7);
1671 (GetBit(pIn->y, 0) << 4) |
1682 (GetBit(pIn->x, 0) << 4) |
/xsrc/external/mit/bitmap/dist/
H A DGraphics.c70 #define GetBit(image, x, y)\ macro
81 return GetBit(BW->bitmap.image, x, y);
138 if (GetBit(BW->bitmap.image, x, y) != value)\
262 if (GetBit(BW->bitmap.image, x, y)) DrawSquare(BW, x, y);
476 ((GetBit(BW->bitmap.image, x, y) !=\
588 pixel = GetBit(BW->bitmap.image, x, y);
628 first = up = GetBit(BW->bitmap.image, x, to_y);
630 down = GetBit(BW->bitmap.image, x, y);
674 first = down = GetBit(BW->bitmap.image, x, from_y);
676 up = GetBit(B
[all...]
/xsrc/external/mit/xorg-server.old/dist/xfixes/
H A Dcursor.c278 GetBit (unsigned char *line, int x) function in typeref:typename:int
349 if (GetBit (mskLine, x))
351 if (GetBit (srcLine, x))
/xsrc/external/mit/xorg-server/dist/xfixes/
H A Dcursor.c282 GetBit(unsigned char *line, int x) function in typeref:typename:int
346 if (GetBit(mskLine, x)) {
347 if (GetBit(srcLine, x))
/xsrc/external/mit/MesaLib.old/dist/src/imgui/
H A Dimgui_draw.cpp1851 if (cfg.MergeMode && dst_tmp.GlyphsSet.GetBit(codepoint)) // Don't overwrite existing glyphs. We could make this an option (e.g. MergeOverwrite)
2379 if (GetBit(n))
2382 while (n < 0x10000 && GetBit(n + 1))
H A Dimgui.h1953 bool GetBit(int n) const { int off = (n >> 5); int mask = 1 << (n & 31); return (UsedChars[off] & mask) != 0; } // Get bit n in the array function in struct:ImFontGlyphRangesBuilder
H A Dimgui_internal.h258 bool GetBit(int n) const { int off = (n >> 5); int mask = 1 << (n & 31); return (Storage[off] & mask) != 0; } function in struct:ImBoolVector
/xsrc/external/mit/MesaLib/dist/src/imgui/
H A Dimgui_draw.cpp1851 if (cfg.MergeMode && dst_tmp.GlyphsSet.GetBit(codepoint)) // Don't overwrite existing glyphs. We could make this an option (e.g. MergeOverwrite)
2379 if (GetBit(n))
2382 while (n < 0x10000 && GetBit(n + 1))
H A Dimgui.h1953 bool GetBit(int n) const { int off = (n >> 5); int mask = 1 << (n & 31); return (UsedChars[off] & mask) != 0; } // Get bit n in the array function in struct:ImFontGlyphRangesBuilder
H A Dimgui_internal.h258 bool GetBit(int n) const { int off = (n >> 5); int mask = 1 << (n & 31); return (Storage[off] & mask) != 0; } function in struct:ImBoolVector

Completed in 55 milliseconds