/external/parameter-framework/asio-1.10.6/include/asio/ip/ |
D | address_v4.hpp | 89 ASIO_DECL unsigned long to_ulong() const; 144 return a1.to_ulong() < a2.to_ulong(); in operator <() 150 return a1.to_ulong() > a2.to_ulong(); in operator >() 156 return a1.to_ulong() <= a2.to_ulong(); in operator <=() 162 return a1.to_ulong() >= a2.to_ulong(); in operator >=()
|
/external/parameter-framework/asio-1.10.6/include/asio/ip/impl/ |
D | address_v4.ipp | 66 unsigned long address_v4::to_ulong() const 122 return (to_ulong() & 0xFF000000) == 0x7F000000; 127 return to_ulong() == 0; 132 return (to_ulong() & 0x80000000) == 0; 137 return (to_ulong() & 0xC0000000) == 0x80000000; 142 return (to_ulong() & 0xE0000000) == 0xC0000000; 147 return (to_ulong() & 0xF0000000) == 0xE0000000; 152 return address_v4(addr.to_ulong() | (mask.to_ulong() ^ 0xFFFFFFFF));
|
/external/angle/src/libANGLE/ |
D | angletypes_unittest.cpp | 51 ASSERT_EQ(blendStateExt.mMaxEnabledMask.to_ulong(), 1u); in TEST() 61 ASSERT_EQ(blendStateExt.mMaxEnabledMask.to_ulong(), 0xFu); in TEST() 71 ASSERT_EQ(blendStateExt.mMaxEnabledMask.to_ulong(), 0xFFu); in TEST() 85 ASSERT_EQ(blendStateExt.mEnabledMask.to_ulong(), 7u); in TEST() 88 ASSERT_EQ(blendStateExt.mEnabledMask.to_ulong(), 5u); in TEST() 120 ASSERT_EQ(diff.to_ulong(), 23u); in TEST() 149 ASSERT_EQ(diff.to_ulong(), 40u); in TEST() 199 ASSERT_EQ(diff.to_ulong(), 169u); in TEST()
|
D | ProgramExecutable.cpp | 457 stream->writeInt(static_cast<uint32_t>(mAttributesTypeMask.to_ulong())); in save() 458 stream->writeInt(static_cast<uint32_t>(mAttributesMask.to_ulong())); in save() 459 stream->writeInt(static_cast<uint32_t>(mActiveAttribLocationsMask.to_ulong())); in save()
|
D | validationES.cpp | 448 auto drawBufferMask = framebuffer->getDrawBufferMask().to_ulong(); in ValidateFragmentShaderColorBufferMaskMatch() 449 auto fragmentOutputMask = program->getActiveOutputVariables().to_ulong(); in ValidateFragmentShaderColorBufferMaskMatch() 459 return ValidateComponentTypeMasks(program->getDrawBufferTypeMask().to_ulong(), in ValidateFragmentShaderColorBufferTypeMatch() 460 framebuffer->getDrawBufferTypeMask().to_ulong(), in ValidateFragmentShaderColorBufferTypeMatch() 461 program->getActiveOutputVariables().to_ulong(), in ValidateFragmentShaderColorBufferTypeMatch() 462 framebuffer->getDrawBufferMask().to_ulong()); in ValidateFragmentShaderColorBufferTypeMatch() 476 unsigned long stateCurrentValuesTypeBits = glState.getCurrentValuesTypeMask().to_ulong(); in ValidateVertexShaderAttributeTypeMatch() 477 unsigned long vaoAttribTypeBits = vao->getAttributesTypeMask().to_ulong(); in ValidateVertexShaderAttributeTypeMatch() 478 unsigned long vaoAttribEnabledMask = vao->getAttributesMask().to_ulong(); in ValidateVertexShaderAttributeTypeMatch() 485 return ValidateComponentTypeMasks(executable.getAttributesTypeMask().to_ulong(), in ValidateVertexShaderAttributeTypeMatch() [all …]
|
D | angletypes.h | 748 uint32_t mask_bits = static_cast<uint32_t>((mask.to_ulong() >> index) & 0x10001); in GetComponentTypeMask()
|
D | Program.cpp | 4660 stream.writeInt(static_cast<int>(mState.mDrawBufferTypeMask.to_ulong())); in serialize() 4661 stream.writeInt(static_cast<int>(mState.mActiveOutputVariables.to_ulong())); in serialize()
|
/external/libcxx/test/std/utilities/template.bitset/bitset.members/ |
D | to_ulong.pass.cpp | 38 assert(j == v.to_ulong()); in test_to_ulong() 46 …assert(v.to_ulong() == (val & mask)); // we shouldn't return bit patterns from outside the limits … in test_to_ulong()
|
/external/llvm-project/libcxx/test/std/utilities/template.bitset/bitset.members/ |
D | to_ulong.pass.cpp | 39 assert(j == v.to_ulong()); in test_to_ulong() 47 …assert(v.to_ulong() == (val & mask)); // we shouldn't return bit patterns from outside the limits … in test_to_ulong()
|
/external/llvm-project/libcxx/include/ |
D | bitset | 70 unsigned long to_ulong() const; 191 _LIBCPP_INLINE_VISIBILITY unsigned long to_ulong() const 192 {return to_ulong(integral_constant<bool, _Size < sizeof(unsigned long) * CHAR_BIT>());} 206 unsigned long to_ulong(false_type) const; 208 unsigned long to_ulong(true_type) const; 332 __bitset<_N_words, _Size>::to_ulong(false_type) const 337 __throw_overflow_error("bitset to_ulong overflow error"); 345 __bitset<_N_words, _Size>::to_ulong(true_type) const 490 unsigned long to_ulong() const; 559 __bitset<1, _Size>::to_ulong() const [all …]
|
/external/libcxx/include/ |
D | bitset | 71 unsigned long to_ulong() const; 192 _LIBCPP_INLINE_VISIBILITY unsigned long to_ulong() const 193 {return to_ulong(integral_constant<bool, _Size < sizeof(unsigned long) * CHAR_BIT>());} 207 unsigned long to_ulong(false_type) const; 209 unsigned long to_ulong(true_type) const; 333 __bitset<_N_words, _Size>::to_ulong(false_type) const 338 __throw_overflow_error("bitset to_ulong overflow error"); 346 __bitset<_N_words, _Size>::to_ulong(true_type) const 491 unsigned long to_ulong() const; 560 __bitset<1, _Size>::to_ulong() const [all …]
|
/external/libcxx/test/std/utilities/template.bitset/bitset.operators/ |
D | stream_in.pass.cpp | 25 assert(b.to_ulong() == 0x5A); in main()
|
/external/angle/src/libANGLE/capture/ |
D | frame_capture_utils.cpp | 704 json->addScalar("CurrentValuesTypeMask", state.getCurrentValuesTypeMask().to_ulong()); in SerializeContextState() 714 state.getTexturesIncompatibleWithSamplers().to_ulong()); in SerializeContextState() 771 json->addScalar("EnabledClipDistances", state.getEnabledClipDistances().to_ulong()); in SerializeContextState() 773 state.getBlendFuncConstantAlphaDrawBuffers().to_ulong()); in SerializeContextState() 775 state.getBlendFuncConstantColorDrawBuffers().to_ulong()); in SerializeContextState() 1067 json->addScalar("ActiveShaders", activeVariable.activeShaders().to_ulong()); in SerializeActiveVariable() 1110 programState.getActiveUniformBlockBindingsMask().to_ulong()); in SerializeProgramState() 1116 json->addScalar("ActiveOutputVariables", programState.getActiveOutputVariables().to_ulong()); in SerializeProgramState() 1118 json->addScalar("DrawBufferTypeMask", programState.getDrawBufferTypeMask().to_ulong()); in SerializeProgramState() 1295 json->addScalar("BoundAttributesMask", vertexBinding.getBoundAttributesMask().to_ulong()); in SerializeVertexBindingsVector() [all …]
|
/external/webrtc/modules/rtp_rtcp/source/ |
D | active_decode_targets_helper.h | 47 return last_active_decode_targets_.to_ulong(); in ActiveDecodeTargetsBitmask()
|
D | active_decode_targets_helper_unittest.cc | 258 EXPECT_EQ(helper.ActiveDecodeTargetsBitmask(), some.to_ulong()); in TEST() 269 EXPECT_EQ(helper.ActiveDecodeTargetsBitmask(), kAll.to_ulong()); in TEST()
|
/external/curl/lib/ |
D | getinfo.c | 175 unsigned long *to_ulong; in getinfo_long() member 240 *lptr.to_ulong = data->info.httpauthavail; in getinfo_long() 244 *lptr.to_ulong = data->info.proxyauthavail; in getinfo_long()
|
/external/llvm-project/libcxx/test/std/utilities/template.bitset/bitset.operators/ |
D | stream_in.pass.cpp | 28 assert(b.to_ulong() == 0x5A); in main()
|
/external/OpenCL-CTS/test_conformance/subgroups/ |
D | subgroup_common_templates.h | 48 mask.s0 = (mask128 & uint_mask).to_ulong(); in generate_bit_mask() 50 mask.s1 = (mask128 & uint_mask).to_ulong(); in generate_bit_mask() 52 mask.s2 = (mask128 & uint_mask).to_ulong(); in generate_bit_mask() 54 mask.s3 = (mask128 & uint_mask).to_ulong(); in generate_bit_mask()
|
/external/parameter-framework/asio-1.10.6/include/asio/ip/detail/impl/ |
D | endpoint.ipp | 78 addr.to_v4().to_ulong()));
|
/external/angle/src/common/ |
D | bitset_utils.h | 154 constexpr unsigned long to_ulong() const { return static_cast<unsigned long>(mBits); } in to_ulong() function 630 unsigned long to_ulong() const 637 return static_cast<unsigned long>(mBaseBitSetArray[0].to_ulong());
|
/external/angle/src/libANGLE/renderer/vulkan/ |
D | VertexArrayVk.cpp | 510 (*attribBits)[INDEX].to_ulong() == \ in syncState()
|
D | UtilsVk.cpp | 2212 static_cast<uint32_t>(framebuffer->getState().getEnabledDrawBuffers().to_ulong()); in blitResolveImpl()
|
/external/llvm/lib/Target/X86/ |
D | X86ISelLowering.cpp | 5459 unsigned ZMask = Zeroable.to_ulong(); in LowerBuildVectorv4x32()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86ISelLowering.cpp | 7914 unsigned ZMask = Zeroable.to_ulong(); in LowerBuildVectorv4x32()
|
/external/llvm-project/llvm/lib/Target/X86/ |
D | X86ISelLowering.cpp | 8205 unsigned ZMask = Zeroable.to_ulong(); in LowerBuildVectorv4x32()
|