• Home
  • Raw
  • Download

Lines Matching refs:TINY

1026     TINY = fromHex('0x0.0000000000001p-1022') # min subnormal  variable in HexFloatTestCase
1041 self.identical(self.TINY, ldexp(1.0, -1074))
1138 TINY = self.TINY;
1288 self.identical(fromHex('0x1.00000000000000001p-1075'), TINY)
1289 self.identical(fromHex('-0x1.1p-1075'), -TINY)
1290 self.identical(fromHex('0x1.fffffffffffffffffp-1075'), TINY)
1295 self.identical(fromHex('0X3p-1076'), TINY)
1296 self.identical(fromHex('0x4p-1076'), TINY)
1297 self.identical(fromHex('0X5p-1076'), TINY)
1298 self.identical(fromHex('0X6p-1076'), 2*TINY)
1299 self.identical(fromHex('0x7p-1076'), 2*TINY)
1300 self.identical(fromHex('0X8p-1076'), 2*TINY)
1301 self.identical(fromHex('0X9p-1076'), 2*TINY)
1302 self.identical(fromHex('0xap-1076'), 2*TINY)
1303 self.identical(fromHex('0Xbp-1076'), 3*TINY)
1304 self.identical(fromHex('0xcp-1076'), 3*TINY)
1305 self.identical(fromHex('0Xdp-1076'), 3*TINY)
1306 self.identical(fromHex('0Xep-1076'), 4*TINY)
1307 self.identical(fromHex('0xfp-1076'), 4*TINY)
1308 self.identical(fromHex('0x10p-1076'), 4*TINY)
1311 self.identical(fromHex('-0x3p-1076'), -TINY)
1312 self.identical(fromHex('-0X4p-1076'), -TINY)
1313 self.identical(fromHex('-0x5p-1076'), -TINY)
1314 self.identical(fromHex('-0x6p-1076'), -2*TINY)
1315 self.identical(fromHex('-0X7p-1076'), -2*TINY)
1316 self.identical(fromHex('-0X8p-1076'), -2*TINY)
1317 self.identical(fromHex('-0X9p-1076'), -2*TINY)
1318 self.identical(fromHex('-0Xap-1076'), -2*TINY)
1319 self.identical(fromHex('-0xbp-1076'), -3*TINY)
1320 self.identical(fromHex('-0xcp-1076'), -3*TINY)
1321 self.identical(fromHex('-0Xdp-1076'), -3*TINY)
1322 self.identical(fromHex('-0xep-1076'), -4*TINY)
1323 self.identical(fromHex('-0Xfp-1076'), -4*TINY)
1324 self.identical(fromHex('-0X10p-1076'), -4*TINY)
1327 self.identical(fromHex('0x0.ffffffffffffd6p-1022'), MIN-3*TINY)
1328 self.identical(fromHex('0x0.ffffffffffffd8p-1022'), MIN-2*TINY)
1329 self.identical(fromHex('0x0.ffffffffffffdap-1022'), MIN-2*TINY)
1330 self.identical(fromHex('0x0.ffffffffffffdcp-1022'), MIN-2*TINY)
1331 self.identical(fromHex('0x0.ffffffffffffdep-1022'), MIN-2*TINY)
1332 self.identical(fromHex('0x0.ffffffffffffe0p-1022'), MIN-2*TINY)
1333 self.identical(fromHex('0x0.ffffffffffffe2p-1022'), MIN-2*TINY)
1334 self.identical(fromHex('0x0.ffffffffffffe4p-1022'), MIN-2*TINY)
1335 self.identical(fromHex('0x0.ffffffffffffe6p-1022'), MIN-2*TINY)
1336 self.identical(fromHex('0x0.ffffffffffffe8p-1022'), MIN-2*TINY)
1337 self.identical(fromHex('0x0.ffffffffffffeap-1022'), MIN-TINY)
1338 self.identical(fromHex('0x0.ffffffffffffecp-1022'), MIN-TINY)
1339 self.identical(fromHex('0x0.ffffffffffffeep-1022'), MIN-TINY)
1340 self.identical(fromHex('0x0.fffffffffffff0p-1022'), MIN-TINY)
1341 self.identical(fromHex('0x0.fffffffffffff2p-1022'), MIN-TINY)
1342 self.identical(fromHex('0x0.fffffffffffff4p-1022'), MIN-TINY)
1343 self.identical(fromHex('0x0.fffffffffffff6p-1022'), MIN-TINY)
1353 self.identical(fromHex('0x1.0000000000000ap-1022'), MIN+TINY)
1354 self.identical(fromHex('0x1.0000000000000cp-1022'), MIN+TINY)
1355 self.identical(fromHex('0x1.0000000000000ep-1022'), MIN+TINY)
1356 self.identical(fromHex('0x1.00000000000010p-1022'), MIN+TINY)
1357 self.identical(fromHex('0x1.00000000000012p-1022'), MIN+TINY)
1358 self.identical(fromHex('0x1.00000000000014p-1022'), MIN+TINY)
1359 self.identical(fromHex('0x1.00000000000016p-1022'), MIN+TINY)
1360 self.identical(fromHex('0x1.00000000000018p-1022'), MIN+2*TINY)
1425 for x in [NAN, INF, self.MAX, self.MIN, self.MIN-self.TINY, self.TINY, 0.0]: