HomeSort by relevance Sort by last modified time
    Searched defs:SetBits (Results 1 - 7 of 7) sorted by null

  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/SPIRV/
bitutils.h 33 // SetBits<T, First, Num> returns an integer of type <T> with bits set
39 struct SetBits {
42 const static T get = (T(1) << First) | SetBits<T, First + 1, Num - 1>::get;
46 struct SetBits<T, Last, 0> {
51 static_assert(SetBits<uint32_t, 0, 0>::get == uint32_t(0x00000000),
52 "SetBits failed");
53 static_assert(SetBits<uint32_t, 0, 1>::get == uint32_t(0x00000001),
54 "SetBits failed");
55 static_assert(SetBits<uint32_t, 31, 1>::get == uint32_t(0x80000000),
56 "SetBits failed")
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/util/
bitutils.h 33 // SetBits<T, First, Num> returns an integer of type <T> with bits set
39 struct SetBits {
42 const static T get = (T(1) << First) | SetBits<T, First + 1, Num - 1>::get;
46 struct SetBits<T, Last, 0> {
51 static_assert(SetBits<uint32_t, 0, 0>::get == uint32_t(0x00000000),
52 "SetBits failed");
53 static_assert(SetBits<uint32_t, 0, 1>::get == uint32_t(0x00000001),
54 "SetBits failed");
55 static_assert(SetBits<uint32_t, 31, 1>::get == uint32_t(0x80000000),
56 "SetBits failed")
    [all...]
  /external/v8/src/base/
atomic-utils.h 131 V8_INLINE void SetBits(T bits, T mask) {
142 SetBits(static_cast<T>(1) << bit, static_cast<T>(1) << bit);
145 V8_INLINE void ClearBit(int bit) { SetBits(0, 1 << bit); }
  /prebuilts/go/darwin-x86/src/math/big/
int.go 83 // SetBits provides raw (unchecked but fast) access to z by setting its
86 // SetBits is intended to support implementation of missing low-level Int
88 func (z *Int) SetBits(abs []Word) *Int {
  /prebuilts/go/linux-x86/src/math/big/
int.go 83 // SetBits provides raw (unchecked but fast) access to z by setting its
86 // SetBits is intended to support implementation of missing low-level Int
88 func (z *Int) SetBits(abs []Word) *Int {
  /external/v8/src/arm64/
simulator-arm64.cc 73 void SimSystemRegister::SetBits(int msb, int lsb, uint32_t bits) {
    [all...]
  /external/vixl/src/aarch64/
simulator-aarch64.cc 40 void SimSystemRegister::SetBits(int msb, int lsb, uint32_t bits) {
    [all...]

Completed in 146 milliseconds