Lines Matching refs:big
98 big = 123456789012345678901234567890L
99 testboth("%d", big, "123456789012345678901234567890")
100 testboth("%d", -big, "-123456789012345678901234567890")
101 testboth("%5d", -big, "-123456789012345678901234567890")
102 testboth("%31d", -big, "-123456789012345678901234567890")
103 testboth("%32d", -big, " -123456789012345678901234567890")
104 testboth("%-32d", -big, "-123456789012345678901234567890 ")
105 testboth("%032d", -big, "-0123456789012345678901234567890")
106 testboth("%-032d", -big, "-123456789012345678901234567890 ")
107 testboth("%034d", -big, "-000123456789012345678901234567890")
108 testboth("%034d", big, "0000123456789012345678901234567890")
109 testboth("%0+34d", big, "+000123456789012345678901234567890")
110 testboth("%+34d", big, " +123456789012345678901234567890")
111 testboth("%34d", big, " 123456789012345678901234567890")
112 testboth("%.2d", big, "123456789012345678901234567890")
113 testboth("%.30d", big, "123456789012345678901234567890")
114 testboth("%.31d", big, "0123456789012345678901234567890")
115 testboth("%32.31d", big, " 0123456789012345678901234567890")
116 testboth("%d", float(big), "123456________________________", 6)
118 big = 0x1234567890abcdef12345L # 21 hex digits
119 testboth("%x", big, "1234567890abcdef12345")
120 testboth("%x", -big, "-1234567890abcdef12345")
121 testboth("%5x", -big, "-1234567890abcdef12345")
122 testboth("%22x", -big, "-1234567890abcdef12345")
123 testboth("%23x", -big, " -1234567890abcdef12345")
124 testboth("%-23x", -big, "-1234567890abcdef12345 ")
125 testboth("%023x", -big, "-01234567890abcdef12345")
126 testboth("%-023x", -big, "-1234567890abcdef12345 ")
127 testboth("%025x", -big, "-0001234567890abcdef12345")
128 testboth("%025x", big, "00001234567890abcdef12345")
129 testboth("%0+25x", big, "+0001234567890abcdef12345")
130 testboth("%+25x", big, " +1234567890abcdef12345")
131 testboth("%25x", big, " 1234567890abcdef12345")
132 testboth("%.2x", big, "1234567890abcdef12345")
133 testboth("%.21x", big, "1234567890abcdef12345")
134 testboth("%.22x", big, "01234567890abcdef12345")
135 testboth("%23.22x", big, " 01234567890abcdef12345")
136 testboth("%-23.22x", big, "01234567890abcdef12345 ")
137 testboth("%X", big, "1234567890ABCDEF12345")
138 testboth("%#X", big, "0X1234567890ABCDEF12345")
139 testboth("%#x", big, "0x1234567890abcdef12345")
140 testboth("%#x", -big, "-0x1234567890abcdef12345")
141 testboth("%#.23x", -big, "-0x001234567890abcdef12345")
142 testboth("%#+.23x", big, "+0x001234567890abcdef12345")
143 testboth("%# .23x", big, " 0x001234567890abcdef12345")
144 testboth("%#+.23X", big, "+0X001234567890ABCDEF12345")
145 testboth("%#-+.23X", big, "+0X001234567890ABCDEF12345")
146 testboth("%#-+26.23X", big, "+0X001234567890ABCDEF12345")
147 testboth("%#-+27.23X", big, "+0X001234567890ABCDEF12345 ")
148 testboth("%#+27.23X", big, " +0X001234567890ABCDEF12345")
151 testboth("%#+027.23X", big, "+0X0001234567890ABCDEF12345")
153 testboth("%#+27.23X", big, " +0X001234567890ABCDEF12345")
154 testboth("%x", float(big), "123456_______________", 6)
156 big = 012345670123456701234567012345670L # 32 octal digits
157 testboth("%o", big, "12345670123456701234567012345670")
158 testboth("%o", -big, "-12345670123456701234567012345670")
159 testboth("%5o", -big, "-12345670123456701234567012345670")
160 testboth("%33o", -big, "-12345670123456701234567012345670")
161 testboth("%34o", -big, " -12345670123456701234567012345670")
162 testboth("%-34o", -big, "-12345670123456701234567012345670 ")
163 testboth("%034o", -big, "-012345670123456701234567012345670")
164 testboth("%-034o", -big, "-12345670123456701234567012345670 ")
165 testboth("%036o", -big, "-00012345670123456701234567012345670")
166 testboth("%036o", big, "000012345670123456701234567012345670")
167 testboth("%0+36o", big, "+00012345670123456701234567012345670")
168 testboth("%+36o", big, " +12345670123456701234567012345670")
169 testboth("%36o", big, " 12345670123456701234567012345670")
170 testboth("%.2o", big, "12345670123456701234567012345670")
171 testboth("%.32o", big, "12345670123456701234567012345670")
172 testboth("%.33o", big, "012345670123456701234567012345670")
173 testboth("%34.33o", big, " 012345670123456701234567012345670")
174 testboth("%-34.33o", big, "012345670123456701234567012345670 ")
175 testboth("%o", big, "12345670123456701234567012345670")
176 testboth("%#o", big, "012345670123456701234567012345670")
177 testboth("%#o", -big, "-012345670123456701234567012345670")
178 testboth("%#.34o", -big, "-0012345670123456701234567012345670")
179 testboth("%#+.34o", big, "+0012345670123456701234567012345670")
180 testboth("%# .34o", big, " 0012345670123456701234567012345670")
181 testboth("%#+.34o", big, "+0012345670123456701234567012345670")
182 testboth("%#-+.34o", big, "+0012345670123456701234567012345670")
183 testboth("%#-+37.34o", big, "+0012345670123456701234567012345670 ")
184 testboth("%#+37.34o", big, " +0012345670123456701234567012345670")
186 testboth("%.33o", big, "012345670123456701234567012345670")
188 testboth("%#.33o", big, "012345670123456701234567012345670")
190 testboth("%#.32o", big, "012345670123456701234567012345670")
192 testboth("%034.33o", big, "0012345670123456701234567012345670")
194 testboth("%0#34.33o", big, "0012345670123456701234567012345670")
195 testboth("%o", float(big), "123456__________________________", 6)