Lines Matching refs:big

141         big = 123456789012345678901234567890
142 testcommon("%d", big, "123456789012345678901234567890")
143 testcommon("%d", -big, "-123456789012345678901234567890")
144 testcommon("%5d", -big, "-123456789012345678901234567890")
145 testcommon("%31d", -big, "-123456789012345678901234567890")
146 testcommon("%32d", -big, " -123456789012345678901234567890")
147 testcommon("%-32d", -big, "-123456789012345678901234567890 ")
148 testcommon("%032d", -big, "-0123456789012345678901234567890")
149 testcommon("%-032d", -big, "-123456789012345678901234567890 ")
150 testcommon("%034d", -big, "-000123456789012345678901234567890")
151 testcommon("%034d", big, "0000123456789012345678901234567890")
152 testcommon("%0+34d", big, "+000123456789012345678901234567890")
153 testcommon("%+34d", big, " +123456789012345678901234567890")
154 testcommon("%34d", big, " 123456789012345678901234567890")
155 testcommon("%.2d", big, "123456789012345678901234567890")
156 testcommon("%.30d", big, "123456789012345678901234567890")
157 testcommon("%.31d", big, "0123456789012345678901234567890")
158 testcommon("%32.31d", big, " 0123456789012345678901234567890")
159 testcommon("%d", float(big), "123456________________________", 6)
161 big = 0x1234567890abcdef12345 # 21 hex digits
162 testcommon("%x", big, "1234567890abcdef12345")
163 testcommon("%x", -big, "-1234567890abcdef12345")
164 testcommon("%5x", -big, "-1234567890abcdef12345")
165 testcommon("%22x", -big, "-1234567890abcdef12345")
166 testcommon("%23x", -big, " -1234567890abcdef12345")
167 testcommon("%-23x", -big, "-1234567890abcdef12345 ")
168 testcommon("%023x", -big, "-01234567890abcdef12345")
169 testcommon("%-023x", -big, "-1234567890abcdef12345 ")
170 testcommon("%025x", -big, "-0001234567890abcdef12345")
171 testcommon("%025x", big, "00001234567890abcdef12345")
172 testcommon("%0+25x", big, "+0001234567890abcdef12345")
173 testcommon("%+25x", big, " +1234567890abcdef12345")
174 testcommon("%25x", big, " 1234567890abcdef12345")
175 testcommon("%.2x", big, "1234567890abcdef12345")
176 testcommon("%.21x", big, "1234567890abcdef12345")
177 testcommon("%.22x", big, "01234567890abcdef12345")
178 testcommon("%23.22x", big, " 01234567890abcdef12345")
179 testcommon("%-23.22x", big, "01234567890abcdef12345 ")
180 testcommon("%X", big, "1234567890ABCDEF12345")
181 testcommon("%#X", big, "0X1234567890ABCDEF12345")
182 testcommon("%#x", big, "0x1234567890abcdef12345")
183 testcommon("%#x", -big, "-0x1234567890abcdef12345")
184 testcommon("%#27x", big, " 0x1234567890abcdef12345")
185 testcommon("%#-27x", big, "0x1234567890abcdef12345 ")
186 testcommon("%#027x", big, "0x00001234567890abcdef12345")
187 testcommon("%#.23x", big, "0x001234567890abcdef12345")
188 testcommon("%#.23x", -big, "-0x001234567890abcdef12345")
189 testcommon("%#27.23x", big, " 0x001234567890abcdef12345")
190 testcommon("%#-27.23x", big, "0x001234567890abcdef12345 ")
191 testcommon("%#027.23x", big, "0x00001234567890abcdef12345")
192 testcommon("%#+.23x", big, "+0x001234567890abcdef12345")
193 testcommon("%# .23x", big, " 0x001234567890abcdef12345")
194 testcommon("%#+.23X", big, "+0X001234567890ABCDEF12345")
197 testcommon("%#+027.23X", big, "+0X0001234567890ABCDEF12345")
198 testcommon("%# 027.23X", big, " 0X0001234567890ABCDEF12345")
200 testcommon("%#+27.23X", big, " +0X001234567890ABCDEF12345")
201 testcommon("%#-+27.23x", big, "+0x001234567890abcdef12345 ")
202 testcommon("%#- 27.23x", big, " 0x001234567890abcdef12345 ")
204 big = 0o12345670123456701234567012345670 # 32 octal digits
205 testcommon("%o", big, "12345670123456701234567012345670")
206 testcommon("%o", -big, "-12345670123456701234567012345670")
207 testcommon("%5o", -big, "-12345670123456701234567012345670")
208 testcommon("%33o", -big, "-12345670123456701234567012345670")
209 testcommon("%34o", -big, " -12345670123456701234567012345670")
210 testcommon("%-34o", -big, "-12345670123456701234567012345670 ")
211 testcommon("%034o", -big, "-012345670123456701234567012345670")
212 testcommon("%-034o", -big, "-12345670123456701234567012345670 ")
213 testcommon("%036o", -big, "-00012345670123456701234567012345670")
214 testcommon("%036o", big, "000012345670123456701234567012345670")
215 testcommon("%0+36o", big, "+00012345670123456701234567012345670")
216 testcommon("%+36o", big, " +12345670123456701234567012345670")
217 testcommon("%36o", big, " 12345670123456701234567012345670")
218 testcommon("%.2o", big, "12345670123456701234567012345670")
219 testcommon("%.32o", big, "12345670123456701234567012345670")
220 testcommon("%.33o", big, "012345670123456701234567012345670")
221 testcommon("%34.33o", big, " 012345670123456701234567012345670")
222 testcommon("%-34.33o", big, "012345670123456701234567012345670 ")
223 testcommon("%o", big, "12345670123456701234567012345670")
224 testcommon("%#o", big, "0o12345670123456701234567012345670")
225 testcommon("%#o", -big, "-0o12345670123456701234567012345670")
226 testcommon("%#38o", big, " 0o12345670123456701234567012345670")
227 testcommon("%#-38o", big, "0o12345670123456701234567012345670 ")
228 testcommon("%#038o", big, "0o000012345670123456701234567012345670")
229 testcommon("%#.34o", big, "0o0012345670123456701234567012345670")
230 testcommon("%#.34o", -big, "-0o0012345670123456701234567012345670")
231 testcommon("%#38.34o", big, " 0o0012345670123456701234567012345670")
232 testcommon("%#-38.34o", big, "0o0012345670123456701234567012345670 ")
233 testcommon("%#038.34o", big, "0o000012345670123456701234567012345670")
234 testcommon("%#+.34o", big, "+0o0012345670123456701234567012345670")
235 testcommon("%# .34o", big, " 0o0012345670123456701234567012345670")
236 testcommon("%#+38.34o", big, " +0o0012345670123456701234567012345670")
237 testcommon("%#-+38.34o", big, "+0o0012345670123456701234567012345670 ")
238 testcommon("%#- 38.34o", big, " 0o0012345670123456701234567012345670 ")
239 testcommon("%#+038.34o", big, "+0o00012345670123456701234567012345670")
240 testcommon("%# 038.34o", big, " 0o00012345670123456701234567012345670")
242 testcommon("%.33o", big, "012345670123456701234567012345670")
244 testcommon("%#.33o", big, "0o012345670123456701234567012345670")
246 testcommon("%#.32o", big, "0o12345670123456701234567012345670")
248 testcommon("%035.33o", big, "00012345670123456701234567012345670")
250 testcommon("%0#35.33o", big, "0o012345670123456701234567012345670")