Lines Matching refs:sam
359 static Bits SignAndMagnitudeToBiased(const Bits &sam) {360 if (kSignBitMask & sam) {361 // sam represents a negative number.362 return ~sam + 1;364 // sam represents a positive number.365 return kSignBitMask | sam;