Lines Matching refs:TINY

1058     TINY = fromHex('0x0.0000000000001p-1022') # min subnormal
1073 self.identical(self.TINY, ldexp(1.0, -1074))
1170 TINY = self.TINY
1319 self.identical(fromHex('0x1.00000000000000001p-1075'), TINY)
1320 self.identical(fromHex('-0x1.1p-1075'), -TINY)
1321 self.identical(fromHex('0x1.fffffffffffffffffp-1075'), TINY)
1326 self.identical(fromHex('0X3p-1076'), TINY)
1327 self.identical(fromHex('0x4p-1076'), TINY)
1328 self.identical(fromHex('0X5p-1076'), TINY)
1329 self.identical(fromHex('0X6p-1076'), 2*TINY)
1330 self.identical(fromHex('0x7p-1076'), 2*TINY)
1331 self.identical(fromHex('0X8p-1076'), 2*TINY)
1332 self.identical(fromHex('0X9p-1076'), 2*TINY)
1333 self.identical(fromHex('0xap-1076'), 2*TINY)
1334 self.identical(fromHex('0Xbp-1076'), 3*TINY)
1335 self.identical(fromHex('0xcp-1076'), 3*TINY)
1336 self.identical(fromHex('0Xdp-1076'), 3*TINY)
1337 self.identical(fromHex('0Xep-1076'), 4*TINY)
1338 self.identical(fromHex('0xfp-1076'), 4*TINY)
1339 self.identical(fromHex('0x10p-1076'), 4*TINY)
1342 self.identical(fromHex('-0x3p-1076'), -TINY)
1343 self.identical(fromHex('-0X4p-1076'), -TINY)
1344 self.identical(fromHex('-0x5p-1076'), -TINY)
1345 self.identical(fromHex('-0x6p-1076'), -2*TINY)
1346 self.identical(fromHex('-0X7p-1076'), -2*TINY)
1347 self.identical(fromHex('-0X8p-1076'), -2*TINY)
1348 self.identical(fromHex('-0X9p-1076'), -2*TINY)
1349 self.identical(fromHex('-0Xap-1076'), -2*TINY)
1350 self.identical(fromHex('-0xbp-1076'), -3*TINY)
1351 self.identical(fromHex('-0xcp-1076'), -3*TINY)
1352 self.identical(fromHex('-0Xdp-1076'), -3*TINY)
1353 self.identical(fromHex('-0xep-1076'), -4*TINY)
1354 self.identical(fromHex('-0Xfp-1076'), -4*TINY)
1355 self.identical(fromHex('-0X10p-1076'), -4*TINY)
1358 self.identical(fromHex('0x0.ffffffffffffd6p-1022'), MIN-3*TINY)
1359 self.identical(fromHex('0x0.ffffffffffffd8p-1022'), MIN-2*TINY)
1360 self.identical(fromHex('0x0.ffffffffffffdap-1022'), MIN-2*TINY)
1361 self.identical(fromHex('0x0.ffffffffffffdcp-1022'), MIN-2*TINY)
1362 self.identical(fromHex('0x0.ffffffffffffdep-1022'), MIN-2*TINY)
1363 self.identical(fromHex('0x0.ffffffffffffe0p-1022'), MIN-2*TINY)
1364 self.identical(fromHex('0x0.ffffffffffffe2p-1022'), MIN-2*TINY)
1365 self.identical(fromHex('0x0.ffffffffffffe4p-1022'), MIN-2*TINY)
1366 self.identical(fromHex('0x0.ffffffffffffe6p-1022'), MIN-2*TINY)
1367 self.identical(fromHex('0x0.ffffffffffffe8p-1022'), MIN-2*TINY)
1368 self.identical(fromHex('0x0.ffffffffffffeap-1022'), MIN-TINY)
1369 self.identical(fromHex('0x0.ffffffffffffecp-1022'), MIN-TINY)
1370 self.identical(fromHex('0x0.ffffffffffffeep-1022'), MIN-TINY)
1371 self.identical(fromHex('0x0.fffffffffffff0p-1022'), MIN-TINY)
1372 self.identical(fromHex('0x0.fffffffffffff2p-1022'), MIN-TINY)
1373 self.identical(fromHex('0x0.fffffffffffff4p-1022'), MIN-TINY)
1374 self.identical(fromHex('0x0.fffffffffffff6p-1022'), MIN-TINY)
1384 self.identical(fromHex('0x1.0000000000000ap-1022'), MIN+TINY)
1385 self.identical(fromHex('0x1.0000000000000cp-1022'), MIN+TINY)
1386 self.identical(fromHex('0x1.0000000000000ep-1022'), MIN+TINY)
1387 self.identical(fromHex('0x1.00000000000010p-1022'), MIN+TINY)
1388 self.identical(fromHex('0x1.00000000000012p-1022'), MIN+TINY)
1389 self.identical(fromHex('0x1.00000000000014p-1022'), MIN+TINY)
1390 self.identical(fromHex('0x1.00000000000016p-1022'), MIN+TINY)
1391 self.identical(fromHex('0x1.00000000000018p-1022'), MIN+2*TINY)
1455 self.identical(fromHex('0x.81p-1074'), TINY)
1458 self.identical(fromHex('0x8.1p-1078'), TINY)
1460 self.identical(fromHex('0x81p-1082'), TINY)
1470 for x in [NAN, INF, self.MAX, self.MIN, self.MIN-self.TINY, self.TINY, 0.0]: