Lines Matching defs:absZ0
144 | Takes the 128-bit fixed-point value formed by concatenating `absZ0' and
155 static int64 roundAndPackInt64( flag zSign, bits64 absZ0, bits64 absZ1 )
178 ++absZ0;
179 if ( absZ0 == 0 ) goto overflow;
180 absZ0 &= ~ ( ( (bits64) ( absZ1<<1 ) == 0 ) & roundNearestEven );
182 z = absZ0;
197 static uint64 roundAndPackUInt64( bits64 absZ0, bits64 absZ1 )
215 ++absZ0;
216 if ( absZ0 == 0 ) {
220 absZ0 &= ~ ( ( (bits64) ( absZ1<<1 ) == 0 ) & roundNearestEven );
222 z = absZ0;