Lines Matching defs:check_int
118 static int __init check_int(const void *check_data, const char *string,
238 simple_numbers_loop(int, "%d", "d", check_int);
239 simple_numbers_loop(int, "%d", "i", check_int);
241 simple_numbers_loop(int, "%x", "x", check_int);
242 simple_numbers_loop(int, "0x%x", "i", check_int);
244 simple_numbers_loop(int, "0x%x", "x", check_int);
424 numbers_list_8(int, "%d", delim, "d", check_int);
425 numbers_list_8(int, "%d", delim, "i", check_int);
428 numbers_list_8(int, "0x%x", delim, "i", check_int);
492 numbers_list_fix_width(int, "%d", delim, 11, "d", check_int);
493 numbers_list_fix_width(int, "%d", delim, 11, "i", check_int);
496 numbers_list_fix_width(int, "0x%x", delim, 10, "i", check_int);
555 numbers_list_val_width(int, "%d", delim, "d", check_int);
556 numbers_list_val_width(int, "%d", delim, "i", check_int);
559 numbers_list_val_width(int, "0x%x", delim, "i", check_int);
626 test_number_prefix(int, "-1 1", "%1d %d", 0, 0, 0, check_int);
632 test_number_prefix(int, "-1 1", "%1i %i", 0, 0, 0, check_int);
648 test_number_prefix(int, "0xA7", "%1i%x", 0, 0, 1, check_int);
671 test_number_prefix(int, "0x67", "%2i%i", 0, 67, 2, check_int);
677 test_number_prefix(int, "0xA7", "%2i%i", 0, 0, 1, check_int);