Lines Matching refs:t
1179 static void type_set_init(struct type_set *t) in type_set_init() argument
1181 ebitmap_init(&t->types); in type_set_init()
1182 ebitmap_init(&t->negset); in type_set_init()
1185 static int type_set_read(struct type_set *t, void *fp) in type_set_read() argument
1190 if (ebitmap_read(&t->types, fp)) in type_set_read()
1192 if (ebitmap_read(&t->negset, fp)) in type_set_read()
1198 t->flags = le32_to_cpu(buf[0]); in type_set_read()
2812 static int type_set_write(struct type_set *t, void *fp) in type_set_write() argument
2817 if (ebitmap_write(&t->types, fp)) in type_set_write()
2819 if (ebitmap_write(&t->negset, fp)) in type_set_write()
2822 buf[0] = cpu_to_le32(t->flags); in type_set_write()