Lines Matching refs:t
1170 static void type_set_init(struct type_set *t) in type_set_init() argument
1172 ebitmap_init(&t->types); in type_set_init()
1173 ebitmap_init(&t->negset); in type_set_init()
1176 static int type_set_read(struct type_set *t, void *fp) in type_set_read() argument
1181 if (ebitmap_read(&t->types, fp)) in type_set_read()
1183 if (ebitmap_read(&t->negset, fp)) in type_set_read()
1189 t->flags = le32_to_cpu(buf[0]); in type_set_read()
2978 static int type_set_write(struct type_set *t, void *fp) in type_set_write() argument
2983 if (ebitmap_write(&t->types, fp)) in type_set_write()
2985 if (ebitmap_write(&t->negset, fp)) in type_set_write()
2988 buf[0] = cpu_to_le32(t->flags); in type_set_write()