Home
last modified time | relevance | path

Searched refs:fs_info (Results 1 – 9 of 9) sorted by relevance

/external/e2fsprogs/misc/
De2initrd_helper.c54 struct fs_info { struct
62 struct fs_info *next; argument
237 static int parse_fstab_line(char *line, struct fs_info *fs) in parse_fstab_line()
286 static void free_fstab_line(struct fs_info *fs) in free_fstab_line()
296 memset(fs, 0, sizeof(struct fs_info)); in free_fstab_line()
341 struct fs_info fs_info; in get_root_type() local
355 ret = parse_fstab_line(buf, &fs_info); in get_root_type()
359 if (!strcmp(fs_info.mountpt, "/")) in get_root_type()
360 printf("%s\n", fs_info.type); in get_root_type()
362 free_fstab_line(&fs_info); in get_root_type()
Dfsck.c121 static struct fs_info *filesys_info = NULL, *filesys_last = NULL;
151 static int ignore(struct fs_info *);
243 static struct fs_info *create_fs_device(const char *device, const char *mntpnt, in create_fs_device()
247 struct fs_info *fs; in create_fs_device()
249 if (!(fs = malloc(sizeof(struct fs_info)))) in create_fs_device()
272 static int parse_fstab_line(char *line, struct fs_info **ret_fs) in parse_fstab_line()
275 struct fs_info *fs; in parse_fstab_line()
318 static void interpret_type(struct fs_info *fs) in interpret_type()
340 struct fs_info *fs; in load_fs_info()
381 static struct fs_info *lookup(char *filesys) in lookup()
[all …]
Dfsck.h40 struct fs_info { struct
48 struct fs_info *next; argument
/external/mesa3d/src/freedreno/decode/
Dpgmdump2.c181 uint32_t fs_info; /* offset of FS shader_info section */ member
200 O(hdr, fs_info, shader_info); in decode_header()
216 sizeof(*hdr), (hdr->fs_info - sizeof(*hdr)) / 4); in decode_header()
/external/virglrenderer/src/
Dvrend_shader.h159 struct vrend_shader_info *fs_info; member
Dvrend_shader.c6944 const struct vrend_shader_info *fs_info,
7050 key->fs_info, "gso", in vrend_convert_shader()
7058 key->fs_info, "teo", in vrend_convert_shader()
7066 key->fs_info, "vso", in vrend_convert_shader()
7122 const struct vrend_shader_info *fs_info, in vrend_patch_vertex_shader_interpolants() argument
7128 if (!vs_info || !fs_info) in vrend_patch_vertex_shader_interpolants()
7131 if (!fs_info->interpinfo) in vrend_patch_vertex_shader_interpolants()
7134 if (fs_info->has_sample_input) { in vrend_patch_vertex_shader_interpolants()
7142 for (i = 0; i < fs_info->num_interps; i++) { in vrend_patch_vertex_shader_interpolants()
7143 pstring = get_interp_string(cfg, fs_info->interpinfo[i].interpolate, flatshade); in vrend_patch_vertex_shader_interpolants()
[all …]
Dvrend_renderer.c3410 key->fs_info = &fs->sel->sinfo; in vrend_fill_shader_key()
/external/rust/crates/libc/src/unix/haiku/
Dnative.rs193 pub struct fs_info {
873 pub fn fs_stat_dev(dev: ::dev_t, info: *mut fs_info) -> ::c_int; in fs_stat_dev()
/external/mesa3d/src/gallium/drivers/iris/
Diris_state.c1326 const struct shader_info *fs_info) in has_writeable_rt() argument
1328 if (!fs_info) in has_writeable_rt()
1331 unsigned rt_outputs = fs_info->outputs_written >> FRAG_RESULT_DATA0; in has_writeable_rt()
1333 if (fs_info->outputs_written & BITFIELD64_BIT(FRAG_RESULT_COLOR)) in has_writeable_rt()
4114 const struct shader_info *fs_info = in iris_emit_sbe() local
4118 iris_compute_sbe_urb_read_interval(fs_info->inputs_read, in iris_emit_sbe()
6024 const struct shader_info *fs_info = in iris_upload_dirty_render_state() local
6029 pb.HasWriteableRT = has_writeable_rt(cso_blend, fs_info); in iris_upload_dirty_render_state()