Home
last modified time | relevance | path

Searched refs:GetBit (Results 1 – 13 of 13) sorted by relevance

/third_party/mesa3d/src/amd/addrlib/src/core/
Daddrcommon.h698 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()
Daddrlib2.cpp1659 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/
Dquality_estimate.c26 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/
Dquality_estimate.c26 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/
Dimgui_freetype.cpp345 …if (cfg.MergeMode && dst_tmp.GlyphsSet.GetBit(codepoint)) // Don't overwrite existin… in ImFontAtlasBuildWithFreeType()
/third_party/mesa3d/src/imgui/
Dimgui_draw.cpp1851 …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()
Dimgui_internal.h258 …bool GetBit(int n) const { int off = (n >> 5); int mask = 1 << (n & 31); return (St… in GetBit() function
Dimgui.h1953 …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/
Dimgui_draw.cpp1840 …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()
Dimgui_internal.h251 …bool GetBit(int n) const { int off = (n >> 5); int mask = 1 << (n & 31); return (St… in GetBit() function
Dimgui.h1944 …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/
Dimgui_draw.cpp3084 if (GetBit(n)) in BuildRanges()
3087 while (n < max_codepoint && GetBit(n + 1)) in BuildRanges()
Dimgui.h2587 …inline bool GetBit(size_t n) const { int off = (int)(n >> 5); ImU32 mask = 1u << (n & 31); re… in GetBit() function