MCPcopy Create free account
hub / github.com/OpenDDS/OpenDDS / to_uint

Function to_uint

dds/DCPS/XTypes/TypeAssignability.cpp:322–328  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

320
321namespace {
322 ACE_CDR::ULong to_uint(const NameHash& nh)
323 {
324 return static_cast<ACE_CDR::ULong>(nh[0]) << 24 |
325 static_cast<ACE_CDR::ULong>(nh[1]) << 16 |
326 static_cast<ACE_CDR::ULong>(nh[2]) << 8 |
327 static_cast<ACE_CDR::ULong>(nh[3]);
328 }
329}
330
331/**

Callers 4

assignable_structMethod · 0.85
assignable_unionMethod · 0.85
assignable_enumMethod · 0.85
struct_rule_enum_keyMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected