Home
last modified time | relevance | path

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

/third_party/mesa3d/src/amd/addrlib/src/core/
Daddrcommon.h661 static inline UINT_32 GetBit( in GetBit() function
717 mort |= (GetBit(y, i) << (2 * i)); in MortonGen2d()
718 mort |= (GetBit(x, i) << (2 * i + 1)); in MortonGen2d()
742 mort |= (GetBit(z, i) << (3 * i)); in MortonGen3d()
743 mort |= (GetBit(y, i) << (3 * i + 1)); in MortonGen3d()
744 mort |= (GetBit(x, i) << (3 * i + 2)); in MortonGen3d()
766 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/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/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/grpc/include/grpcpp/impl/codegen/
Dcall_op_set.h110 return GetBit(GRPC_WRITE_NO_COMPRESS); in get_no_compression()
135 inline bool get_buffer_hint() const { return GetBit(GRPC_WRITE_BUFFER_HINT); } in get_buffer_hint()
149 inline bool is_corked() const { return GetBit(GRPC_WRITE_BUFFER_HINT); } in is_corked()
175 inline bool is_write_through() const { return GetBit(GRPC_WRITE_THROUGH); } in is_write_through()
188 bool GetBit(const uint32_t mask) const { return (flags_ & mask) != 0; } in GetBit() function
/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