Lines Matching full:numbers
10 # This list contains only 32-bit numbers since the make code needs to conform
15 # 'double' instead, but that would allow floating-point numbers as well, which
17 NUMBERS= 3 5 7 1 42 -42 5K -3m 1M 1k -2G
19 .if ${NUMBERS:On} != "-2G -3m -42 1 3 5 7 42 1k 5K 1M"
20 . error ${NUMBERS:On}
23 .if ${NUMBERS:Orn} != "1M 5K 1k 42 7 5 3 1 -42 -3m -2G"
24 . error ${NUMBERS:Orn}
28 .if ${NUMBERS:Onr} != "1M 5K 1k 42 7 5 3 1 -42 -3m -2G"
29 . error ${NUMBERS:Onr}
32 # Duplicate numbers are preserved in the output. In this case the
33 # equal-valued numbers are spelled the same, so they are indistinguishable in
40 # If there are several numbers that have the same integer value, they are
47 # Hexadecimal and octal numbers can be sorted as well.