Lines Matching refs:tup
8 void printtunable(tup) in printtunable() argument
9 ipftune_t *tup; in printtunable()
12 tup->ipft_name, tup->ipft_min, tup->ipft_max);
13 if (tup->ipft_sz == sizeof(u_long))
14 printf("%lu\n", tup->ipft_vlong);
15 else if (tup->ipft_sz == sizeof(u_int))
16 printf("%u\n", tup->ipft_vint);
17 else if (tup->ipft_sz == sizeof(u_short))
18 printf("%hu\n", tup->ipft_vshort);
19 else if (tup->ipft_sz == sizeof(u_char))
20 printf("%u\n", (u_int)tup->ipft_vchar);
22 printf("sz = %d\n", tup->ipft_sz);