Searched refs:_other (Results 1 – 3 of 3) sorted by relevance
125 unsigned _other[6]; in __fnldcw() member
136 unsigned _other[5]; in fpresetsticky() member
4359 Option( Option const& _other ) in Option() argument4360 : nullableValue( _other ? new( storage ) T( *_other ) : nullptr ) in Option()4367 Option& operator= ( Option const& _other ) { in operator =() argument4368 if( &_other != this ) { in operator =()4370 if( _other ) in operator =()4371 nullableValue = new( storage ) T( *_other ); in operator =()