Home
last modified time | relevance | path

Searched refs:_other (Results 1 – 3 of 3) sorted by relevance

/freebsd/sys/x86/include/
H A Dx86_ieeefp.h125 unsigned _other[6]; in __fnldcw() member
/freebsd/sys/i386/include/
H A Dieeefp.h136 unsigned _other[5]; in fpresetsticky() member
/freebsd/contrib/bsnmp/tests/
H A Dcatch.hpp4359 Option( Option const& _other ) in Option() argument
4360 : nullableValue( _other ? new( storage ) T( *_other ) : nullptr ) in Option()
4367 Option& operator= ( Option const& _other ) { in operator =() argument
4368 if( &_other != this ) { in operator =()
4370 if( _other ) in operator =()
4371 nullableValue = new( storage ) T( *_other ); in operator =()