Lines Matching refs:z
111 commonNaNT z;
114 z.sign = a>>31;
115 z.low = 0;
116 z.high = ( (bits64) a )<<41;
117 return z;
205 commonNaNT z;
208 z.sign = a>>63;
209 z.low = 0;
210 z.high = a<<12;
211 return z;
313 commonNaNT z;
316 z.sign = a.high>>15;
317 z.low = 0;
318 z.high = a.low<<1;
319 return z;
331 floatx80 z;
333 z.low = LIT64( 0xC000000000000000 ) | ( a.high>>1 );
334 z.high = ( ( (bits16) a.sign )<<15 ) | 0x7FFF;
335 z.__padding = 0;
336 return z;