Lines Matching refs:arg
35 caller(arg)
36 struct arithmetic_types *arg;
40 arg->plain_char, /* gets promoted to 'int' */
41 arg->unsigned_char, /* gets promoted to 'unsigned int' */
42 arg->signed_short, /* gets promoted to 'int' */
43 arg->unsigned_short, /* gets promoted to 'unsigned int' */
44 arg->signed_int,
45 arg->unsigned_int,
46 arg->signed_long,
47 arg->unsigned_long,
48 arg->single_floating, /* gets promoted to 'double' */
49 arg->double_floating,
50 arg->enumerator); /* should get promoted to 'int' */