Lines Matching refs:l
207 long l; in shiftTest1() local
221 l = i1 | ((long)i2 << 32); in shiftTest1()
225 if (l != 0xbbaa998844332211L) { return 3; } in shiftTest1()
227 l = (long)mBytes[0] in shiftTest1()
236 if (l != 0xbbaa998844332211L) { return 4; } in shiftTest1()
281 long l; in convTest() local
285 l = (long) i; in convTest()
286 if (l != 7654L) { return 1; } in convTest()
289 l = (long) i; in convTest()
290 if (l != -7654L) { return 2; } in convTest()
293 l = 5678956789L; in convTest()
294 i = (int) l; in convTest()
297 l = -5678956789L; in convTest()
298 i = (int) l; in convTest()
302 l = 0x7FFFFFFFL; in convTest()
303 d = (double) l; in convTest()
306 l = 0xFFFFFFFFL; in convTest()
307 d = (double) l; in convTest()
310 l = 0x7FFFFFFFFFFFFFFFL; in convTest()
311 d = (double) l; in convTest()
314 l = 0xFFFFFFFFFFFFFFFFL; in convTest()
315 d = (double) l; in convTest()
854 static void throwStackOverflow(long l) { in throwStackOverflow() argument