Home
last modified time | relevance | path

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

/external/vixl/test/aarch64/
Dtest-api-aarch64.cc90 VIXL_CHECK(x0.GetBit() == (UINT64_C(1) << 0)); in TEST()
91 VIXL_CHECK(x1.GetBit() == (UINT64_C(1) << 1)); in TEST()
92 VIXL_CHECK(x10.GetBit() == (UINT64_C(1) << 10)); in TEST()
95 VIXL_CHECK(lr.GetBit() == (UINT64_C(1) << kLinkRegCode)); in TEST()
98 VIXL_CHECK(xzr.GetBit() == (UINT64_C(1) << kZeroRegCode)); in TEST()
101 VIXL_CHECK(sp.GetBit() == (UINT64_C(1) << kSPRegInternalCode)); in TEST()
102 VIXL_CHECK(sp.GetBit() != xzr.GetBit()); in TEST()
105 VIXL_CHECK(x0.GetBit() == w0.GetBit()); in TEST()
106 VIXL_CHECK(x1.GetBit() == w1.GetBit()); in TEST()
107 VIXL_CHECK(x10.GetBit() == w10.GetBit()); in TEST()
[all …]
Dtest-assembler-aarch64.cc15303 x0.GetBit() | x1.GetBit() | x2.GetBit() | x3.GetBit(); in TEST()
15305 x10.GetBit() | x11.GetBit() | x12.GetBit() | x13.GetBit(); in TEST()
15392 Clobber(&masm, x0.GetBit()); in TEST()
15395 Clobber(&masm, x1.GetBit()); in TEST()
15398 Clobber(&masm, x2.GetBit()); in TEST()
15401 Clobber(&masm, x3.GetBit()); in TEST()
15404 Clobber(&masm, x4.GetBit()); in TEST()
15407 Clobber(&masm, x5.GetBit()); in TEST()
15410 Clobber(&masm, x6.GetBit()); in TEST()
15414 Clobber(&masm, w10.GetBit()); in TEST()
[all …]
/external/mesa3d/src/amd/addrlib/core/
Daddrcommon.h641 static inline UINT_32 GetBit( in GetBit() function
697 mort |= (GetBit(y, i) << (2 * i)); in MortonGen2d()
698 mort |= (GetBit(x, i) << (2 * i + 1)); in MortonGen2d()
722 mort |= (GetBit(z, i) << (3 * i)); in MortonGen3d()
723 mort |= (GetBit(y, i) << (3 * i + 1)); in MortonGen3d()
724 mort |= (GetBit(x, i) << (3 * i + 2)); in MortonGen3d()
746 reverse |= (GetBit(v, num - 1 - i) << i); in ReverseBitVector()
Daddrlib2.cpp1526 microBlockOffset = (GetBit(pIn->x, 0) << 4) | in ComputeSurface2DMicroBlockOffset()
1527 (GetBit(pIn->y, 0) << 5) | in ComputeSurface2DMicroBlockOffset()
1528 (GetBit(pIn->x, 1) << 6) | in ComputeSurface2DMicroBlockOffset()
1529 (GetBit(pIn->y, 1) << 7); in ComputeSurface2DMicroBlockOffset()
1538 (GetBit(pIn->y, 0) << 4) | in ComputeSurface2DMicroBlockOffset()
1549 (GetBit(pIn->x, 0) << 4) | in ComputeSurface2DMicroBlockOffset()
/external/ImageMagick/coders/
Dstegano.c93 #define GetBit(alpha,i) (((size_t) (alpha) >> (size_t) (i)) & 0x01) in ReadSTEGANOImage() macro
202 SetBit(i,GetBit(pixel.red,j)); in ReadSTEGANOImage()
207 SetBit(i,GetBit(pixel.green,j)); in ReadSTEGANOImage()
212 SetBit(i,GetBit(pixel.blue,j)); in ReadSTEGANOImage()
Dotb.c100 #define GetBit(a,i) (((a) >> (i)) & 1L) in ReadOTBImage() macro
146 if (GetBit(info,4) == 0) in ReadOTBImage()
/external/vixl/src/aarch64/
Doperands-aarch64.h80 RegList GetBit() const { in GetBit() function
84 VIXL_DEPRECATED("GetBit", RegList Bit() const) { return GetBit(); }
556 : list_(reg1.GetBit() | reg2.GetBit() | reg3.GetBit() | reg4.GetBit()),
707 return (type_ == other.GetType()) && ((other.GetBit() & list_) != 0); in IncludesAliasOf()
Dmacro-assembler-aarch64.cc2898 list.GetList() & ~(xzr.GetBit() | sp.GetBit())); in Include()
2912 reg1.GetBit() | reg2.GetBit() | reg3.GetBit() | reg4.GetBit(); in Include()
2914 include &= ~(xzr.GetBit() | sp.GetBit()); in Include()
2925 reg1.GetBit() | reg2.GetBit() | reg3.GetBit() | reg4.GetBit(); in Include()
2945 reg1.GetBit() | reg2.GetBit() | reg3.GetBit() | reg4.GetBit(); in Exclude()
2955 reg1.GetBit() | reg2.GetBit() | reg3.GetBit() | reg4.GetBit(); in Exclude()
2971 exclude |= regs[i].GetBit(); in Exclude()
2973 excludefp |= regs[i].GetBit(); in Exclude()
Dassembler-aarch64.cc5955 unique_regs |= regs[i].GetBit(); in AreAliased()
5958 unique_fpregs |= regs[i].GetBit(); in AreAliased()
/external/grpc-grpc/include/grpcpp/impl/codegen/
Dcall.h114 return GetBit(GRPC_WRITE_NO_COMPRESS); in get_no_compression()
139 inline bool get_buffer_hint() const { return GetBit(GRPC_WRITE_BUFFER_HINT); } in get_buffer_hint()
153 inline bool is_corked() const { return GetBit(GRPC_WRITE_BUFFER_HINT); } in is_corked()
179 inline bool is_write_through() const { return GetBit(GRPC_WRITE_THROUGH); } in is_write_through()
197 bool GetBit(const uint32_t mask) const { return (flags_ & mask) != 0; } in GetBit() function
/external/webrtc/webrtc/p2p/base/
Dstun.h352 bool GetBit(size_t index) const;
Dstun.cc652 bool StunUInt32Attribute::GetBit(size_t index) const { in GetBit() function in cricket::StunUInt32Attribute
/external/ImageMagick/MagickCore/
Dfx.c4812 #define GetBit(alpha,i) ((((size_t) (alpha) >> (size_t) (i)) & 0x01) != 0) in SteganoImage() macro
4905 GetBit(GetPixelInfoIntensity(stegano_image,&pixel),i)),q); in SteganoImage()
4911 GetBit(GetPixelInfoIntensity(stegano_image,&pixel),i)),q); in SteganoImage()
4917 GetBit(GetPixelInfoIntensity(stegano_image,&pixel),i)),q); in SteganoImage()