/third_party/mesa3d/src/amd/addrlib/src/core/ |
H A D | addrcommon.h | 692 * GetBit 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()
|
H A D | addrlib2.cpp | 1659 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) |
|
/third_party/skia/third_party/externals/libwebp/extras/ |
H A 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/vixl/test/aarch64/ |
H A D | test-api-aarch64.cc | 169 VIXL_CHECK(x0.GetBit() == (UINT64_C(1) << 0)); in TEST() 170 VIXL_CHECK(x1.GetBit() == (UINT64_C(1) << 1)); in TEST() 171 VIXL_CHECK(x10.GetBit() == (UINT64_C(1) << 10)); in TEST() 174 VIXL_CHECK(lr.GetBit() == (UINT64_C(1) << kLinkRegCode)); in TEST() 177 VIXL_CHECK(xzr.GetBit() == (UINT64_C(1) << kZeroRegCode)); in TEST() 180 VIXL_CHECK(sp.GetBit() == (UINT64_C(1) << kSPRegInternalCode)); in TEST() 181 VIXL_CHECK(sp.GetBit() != xzr.GetBit()); in TEST() 183 // xn.GetBit() == wn.GetBit() a in TEST() [all...] |
H A D | test-assembler-aarch64.cc | 7891 x0.GetBit() | x1.GetBit() | x2.GetBit() | x3.GetBit(); 7893 x10.GetBit() | x11.GetBit() | x12.GetBit() | x13.GetBit(); 7980 Clobber(&masm, x0.GetBit()); 7983 Clobber(&masm, x1.GetBit()); [all...] |
/third_party/vixl/src/aarch64/ |
H A D | macro-assembler-aarch64.cc | 3095 reg_list &= ~(xzr.GetBit() | sp.GetBit()); in Emit() 3108 reg1.GetBit() | reg2.GetBit() | reg3.GetBit() | reg4.GetBit(); in Emit() 3110 include &= ~(xzr.GetBit() | sp.GetBit()); in Emit() 3121 reg1.GetBit() | reg2.GetBit() | reg in Emit() [all...] |
H A D | operands-aarch64.h | 46 : list_(reg1.GetBit() | reg2.GetBit() | reg3.GetBit() | reg4.GetBit()), in CPURegList()
|
H A D | registers-aarch64.h | 120 RegList GetBit() const { in GetBit() function in vixl::aarch64::CPURegister 995 unique_regs |= regs[i].GetBit(); 999 unique_vregs |= regs[i].GetBit(); 1003 unique_pregs |= regs[i].GetBit();
|
H A D | simulator-aarch64.h | 529 bool GetBit(int bit) const { in GetBit() function in vixl::aarch64::SimRegisterBase
|
H A D | simulator-aarch64.cc | 1696 fprintf(stream_, " %c", reg.GetBit(i) ? '1' : '0'); in Simulator() 13985 bool active = pn.GetBit(i); in Simulator()
|
H A D | logic-aarch64.cc | 1642 uint64_t lane_value = pg.GetBit(lane * p_reg_bits_per_lane)
|
/third_party/mesa3d/src/imgui/ |
H A D | imgui_draw.cpp | 1851 if (cfg.MergeMode && dst_tmp.GlyphsSet.GetBit(codepoint)) // Don't overwrite existing glyphs. We could make this an option (e.g. MergeOverwrite) in ImFontAtlasBuildWithStbTruetype() 2379 if (GetBit(n)) in BuildRanges() 2382 while (n < 0x10000 && GetBit(n + 1)) in BuildRanges()
|
H A D | imgui_internal.h | 258 bool GetBit(int n) const { int off = (n >> 5); int mask = 1 << (n & 31); return (Storage[off] & mask) != 0; } in GetBit() function
|
H A D | imgui.h | 1953 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 in GetBit() function
|
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui_draw.cpp | 3084 if (GetBit(n)) in BuildRanges() 3087 while (n < max_codepoint && GetBit(n + 1)) in BuildRanges()
|
H A D | imgui.h | 2587 inline bool GetBit(size_t n) const { int off = (int)(n >> 5); ImU32 mask = 1u << (n & 31); return (UsedChars[off] & mask) != 0; } // Get bit n in the array in GetBit() function
|