Lines Matching refs:TINY
1013 TINY = fromHex('0x0.0000000000001p-1022') # min subnormal variable in HexFloatTestCase
1028 self.identical(self.TINY, ldexp(1.0, -1074))
1125 TINY = self.TINY;
1274 self.identical(fromHex('0x1.00000000000000001p-1075'), TINY)
1275 self.identical(fromHex('-0x1.1p-1075'), -TINY)
1276 self.identical(fromHex('0x1.fffffffffffffffffp-1075'), TINY)
1281 self.identical(fromHex('0X3p-1076'), TINY)
1282 self.identical(fromHex('0x4p-1076'), TINY)
1283 self.identical(fromHex('0X5p-1076'), TINY)
1284 self.identical(fromHex('0X6p-1076'), 2*TINY)
1285 self.identical(fromHex('0x7p-1076'), 2*TINY)
1286 self.identical(fromHex('0X8p-1076'), 2*TINY)
1287 self.identical(fromHex('0X9p-1076'), 2*TINY)
1288 self.identical(fromHex('0xap-1076'), 2*TINY)
1289 self.identical(fromHex('0Xbp-1076'), 3*TINY)
1290 self.identical(fromHex('0xcp-1076'), 3*TINY)
1291 self.identical(fromHex('0Xdp-1076'), 3*TINY)
1292 self.identical(fromHex('0Xep-1076'), 4*TINY)
1293 self.identical(fromHex('0xfp-1076'), 4*TINY)
1294 self.identical(fromHex('0x10p-1076'), 4*TINY)
1297 self.identical(fromHex('-0x3p-1076'), -TINY)
1298 self.identical(fromHex('-0X4p-1076'), -TINY)
1299 self.identical(fromHex('-0x5p-1076'), -TINY)
1300 self.identical(fromHex('-0x6p-1076'), -2*TINY)
1301 self.identical(fromHex('-0X7p-1076'), -2*TINY)
1302 self.identical(fromHex('-0X8p-1076'), -2*TINY)
1303 self.identical(fromHex('-0X9p-1076'), -2*TINY)
1304 self.identical(fromHex('-0Xap-1076'), -2*TINY)
1305 self.identical(fromHex('-0xbp-1076'), -3*TINY)
1306 self.identical(fromHex('-0xcp-1076'), -3*TINY)
1307 self.identical(fromHex('-0Xdp-1076'), -3*TINY)
1308 self.identical(fromHex('-0xep-1076'), -4*TINY)
1309 self.identical(fromHex('-0Xfp-1076'), -4*TINY)
1310 self.identical(fromHex('-0X10p-1076'), -4*TINY)
1313 self.identical(fromHex('0x0.ffffffffffffd6p-1022'), MIN-3*TINY)
1314 self.identical(fromHex('0x0.ffffffffffffd8p-1022'), MIN-2*TINY)
1315 self.identical(fromHex('0x0.ffffffffffffdap-1022'), MIN-2*TINY)
1316 self.identical(fromHex('0x0.ffffffffffffdcp-1022'), MIN-2*TINY)
1317 self.identical(fromHex('0x0.ffffffffffffdep-1022'), MIN-2*TINY)
1318 self.identical(fromHex('0x0.ffffffffffffe0p-1022'), MIN-2*TINY)
1319 self.identical(fromHex('0x0.ffffffffffffe2p-1022'), MIN-2*TINY)
1320 self.identical(fromHex('0x0.ffffffffffffe4p-1022'), MIN-2*TINY)
1321 self.identical(fromHex('0x0.ffffffffffffe6p-1022'), MIN-2*TINY)
1322 self.identical(fromHex('0x0.ffffffffffffe8p-1022'), MIN-2*TINY)
1323 self.identical(fromHex('0x0.ffffffffffffeap-1022'), MIN-TINY)
1324 self.identical(fromHex('0x0.ffffffffffffecp-1022'), MIN-TINY)
1325 self.identical(fromHex('0x0.ffffffffffffeep-1022'), MIN-TINY)
1326 self.identical(fromHex('0x0.fffffffffffff0p-1022'), MIN-TINY)
1327 self.identical(fromHex('0x0.fffffffffffff2p-1022'), MIN-TINY)
1328 self.identical(fromHex('0x0.fffffffffffff4p-1022'), MIN-TINY)
1329 self.identical(fromHex('0x0.fffffffffffff6p-1022'), MIN-TINY)
1339 self.identical(fromHex('0x1.0000000000000ap-1022'), MIN+TINY)
1340 self.identical(fromHex('0x1.0000000000000cp-1022'), MIN+TINY)
1341 self.identical(fromHex('0x1.0000000000000ep-1022'), MIN+TINY)
1342 self.identical(fromHex('0x1.00000000000010p-1022'), MIN+TINY)
1343 self.identical(fromHex('0x1.00000000000012p-1022'), MIN+TINY)
1344 self.identical(fromHex('0x1.00000000000014p-1022'), MIN+TINY)
1345 self.identical(fromHex('0x1.00000000000016p-1022'), MIN+TINY)
1346 self.identical(fromHex('0x1.00000000000018p-1022'), MIN+2*TINY)
1411 for x in [NAN, INF, self.MAX, self.MIN, self.MIN-self.TINY, self.TINY, 0.0]: