Searched refs:GetBit (Results 1 – 13 of 13) sorted by relevance
/third_party/mesa3d/src/amd/addrlib/src/core/ |
D | addrcommon.h | 698 static inline UINT_32 GetBit( in GetBit() function 754 mort |= (GetBit(y, i) << (2 * i)); in MortonGen2d() 755 mort |= (GetBit(x, i) << (2 * i + 1)); in MortonGen2d() 779 mort |= (GetBit(z, i) << (3 * i)); in MortonGen3d() 780 mort |= (GetBit(y, i) << (3 * i + 1)); in MortonGen3d() 781 mort |= (GetBit(x, i) << (3 * i + 2)); in MortonGen3d() 803 reverse |= (GetBit(v, num - 1 - i) << i); in ReverseBitVector()
|
D | addrlib2.cpp | 1659 microBlockOffset = (GetBit(pIn->x, 0) << 4) | in ComputeSurface2DMicroBlockOffset() 1660 (GetBit(pIn->y, 0) << 5) | in ComputeSurface2DMicroBlockOffset() 1661 (GetBit(pIn->x, 1) << 6) | in ComputeSurface2DMicroBlockOffset() 1662 (GetBit(pIn->y, 1) << 7); in ComputeSurface2DMicroBlockOffset() 1671 (GetBit(pIn->y, 0) << 4) | in ComputeSurface2DMicroBlockOffset() 1682 (GetBit(pIn->x, 0) << 4) | in ComputeSurface2DMicroBlockOffset()
|
/third_party/skia/third_party/externals/libwebp/extras/ |
D | quality_estimate.c | 26 static WEBP_INLINE uint32_t GetBit(const uint8_t* const data, size_t nb, in GetBit() function 41 #define GET_BIT(n) GetBit(data, (n), size, &bit_pos)
|
/third_party/flutter/skia/third_party/externals/libwebp/extras/ |
D | quality_estimate.c | 26 static WEBP_INLINE uint32_t GetBit(const uint8_t* const data, size_t nb, in GetBit() function 41 #define GET_BIT(n) GetBit(data, (n), size, &bit_pos)
|
/third_party/flutter/skia/third_party/externals/imgui/misc/freetype/ |
D | imgui_freetype.cpp | 345 …if (cfg.MergeMode && dst_tmp.GlyphsSet.GetBit(codepoint)) // Don't overwrite existin… in ImFontAtlasBuildWithFreeType()
|
/third_party/mesa3d/src/imgui/ |
D | imgui_draw.cpp | 1851 …if (cfg.MergeMode && dst_tmp.GlyphsSet.GetBit(codepoint)) // Don't overwrite existing glyphs. We… in ImFontAtlasBuildWithStbTruetype() 2379 if (GetBit(n)) in BuildRanges() 2382 while (n < 0x10000 && GetBit(n + 1)) in BuildRanges()
|
D | imgui_internal.h | 258 …bool GetBit(int n) const { int off = (n >> 5); int mask = 1 << (n & 31); return (St… in GetBit() function
|
D | imgui.h | 1953 …bool GetBit(int n) const { int off = (n >> 5); int mask = 1 << (n & 31); return (UsedCh… in GetBit() function
|
/third_party/flutter/skia/third_party/externals/imgui/ |
D | imgui_draw.cpp | 1840 …if (cfg.MergeMode && dst_tmp.GlyphsSet.GetBit(codepoint)) // Don't overwrite existing glyphs. We… in ImFontAtlasBuildWithStbTruetype() 2365 if (GetBit(n)) in BuildRanges() 2368 while (n < 0x10000 && GetBit(n + 1)) in BuildRanges()
|
D | imgui_internal.h | 251 …bool GetBit(int n) const { int off = (n >> 5); int mask = 1 << (n & 31); return (St… in GetBit() function
|
D | imgui.h | 1944 …bool GetBit(int n) const { int off = (n >> 5); int mask = 1 << (n & 31); return (UsedCh… in GetBit() function
|
/third_party/skia/third_party/externals/imgui/ |
D | imgui_draw.cpp | 3084 if (GetBit(n)) in BuildRanges() 3087 while (n < max_codepoint && GetBit(n + 1)) in BuildRanges()
|
D | imgui.h | 2587 …inline bool GetBit(size_t n) const { int off = (int)(n >> 5); ImU32 mask = 1u << (n & 31); re… in GetBit() function
|