Home | History | Annotate | Download | only in Support

Lines Matching refs:NewValue

220   void operator=(value_type newValue) {
222 (void*)Value.buffer, newValue);
225 packed_endian_specific_integral &operator+=(value_type newValue) {
226 *this = *this + newValue;
230 packed_endian_specific_integral &operator-=(value_type newValue) {
231 *this = *this - newValue;
235 packed_endian_specific_integral &operator|=(value_type newValue) {
236 *this = *this | newValue;
240 packed_endian_specific_integral &operator&=(value_type newValue) {
241 *this = *this & newValue;
257 void operator=(value_type NewValue) {
258 endian::write<value_type, endian, alignment>(Ptr, NewValue);