reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
215 explicit packed_endian_specific_integral(value_type val) { *this = val; } 217 operator value_type() const { 218 return endian::read<value_type, endian, alignment>( 222 void operator=(value_type newValue) { 223 endian::write<value_type, endian, alignment>( 227 packed_endian_specific_integral &operator+=(value_type newValue) { 232 packed_endian_specific_integral &operator-=(value_type newValue) { 237 packed_endian_specific_integral &operator|=(value_type newValue) { 242 packed_endian_specific_integral &operator&=(value_type newValue) { 249 alignas(ALIGN) char buffer[sizeof(value_type)]; 256 operator value_type() const { 257 return endian::read<value_type, endian, alignment>(Ptr); 260 void operator=(value_type NewValue) { 261 endian::write<value_type, endian, alignment>(Ptr, NewValue);lib/ObjectYAML/MinidumpYAML.cpp
21 typename EndianType::value_type Default) { 64 typename EndianType::value_type Default) {