Home | History | Annotate | Download | only in priv

Lines Matching defs:f64

1373    UChar* f64;
1379 f64 = (UChar*)(&dbl);
1380 sign = toUChar( (f64[7] >> 7) & 1 );
1390 bexp = (f64[7] << 4) | ((f64[6] >> 4) & 0x0F);
1395 (f64[6] & 0x0F) == 0
1396 && (f64[5] | f64[4] | f64[3] | f64[2] | f64[1] | f64[0]) == 0
1442 ULong f64;
1443 convert_f80le_to_f64le ( (UChar*)ULong_to_Ptr(addrU), (UChar*)&f64 );
1444 return f64;
1449 void x86g_dirtyhelper_storeF80le ( UInt addrU, ULong f64 )
1451 convert_f64le_to_f80le( (UChar*)&f64, (UChar*)ULong_to_Ptr(addrU) );