HomeSort by relevance Sort by last modified time
    Searched defs:fs (Results 301 - 325 of 950) sorted by null

<<11121314151617181920>>

  /external/e2fsprogs/lib/ext2fs/
closefs.c 36 int ext2fs_bg_has_super(ext2_filsys fs, dgrp_t group)
40 if (ext2fs_has_feature_sparse_super2(fs->super)) {
41 if (group == fs->super->s_backup_bgs[0] ||
42 group == fs->super->s_backup_bgs[1])
46 if ((group <= 1) || !ext2fs_has_feature_sparse_super(fs->super))
59 * @fs: ext2 fs pointer
71 errcode_t ext2fs_super_and_bgd_loc2(ext2_filsys fs,
84 group_block = ext2fs_group_first_block2(fs, group);
85 if (group_block == 0 && fs->blocksize == 1024
456 ext2_filsys fs = *fs_ptr; local
    [all...]
ext2fsP.h 39 ext2_filsys fs; member in struct:ext2_struct_dblist
84 extern int ext2fs_process_dir_block(ext2_filsys fs,
91 extern errcode_t ext2fs_inline_data_ea_remove(ext2_filsys fs, ext2_ino_t ino);
92 extern errcode_t ext2fs_inline_data_expand(ext2_filsys fs, ext2_ino_t ino);
93 extern int ext2fs_inline_data_dir_iterate(ext2_filsys fs,
109 void (*init)(ext2_filsys fs,
112 void (*update)(ext2_filsys fs,
115 void (*close)(ext2_filsys fs,
122 extern void ext2fs_numeric_progress_init(ext2_filsys fs,
125 extern void ext2fs_numeric_progress_update(ext2_filsys fs,
    [all...]
fileio.c 25 ext2_filsys fs; member in struct:ext2_file
41 #define BMAP_BUFFER (file->buf + fs->blocksize)
43 errcode_t ext2fs_file_open2(ext2_filsys fs, ext2_ino_t ino,
55 !(fs->flags & EXT2_FLAG_RW))
64 file->fs = fs;
71 retval = ext2fs_read_inode(fs, ino, &file->inode);
76 retval = ext2fs_get_array(3, fs->blocksize, &file->buf);
90 errcode_t ext2fs_file_open(ext2_filsys fs, ext2_ino_t ino,
93 return ext2fs_file_open2(fs, ino, NULL, flags, ret)
131 ext2_filsys fs; local
210 ext2_filsys fs = file->fs; local
257 ext2_filsys fs; local
288 ext2_filsys fs; local
335 ext2_filsys fs; local
394 ext2_filsys fs; local
564 ext2_filsys fs = file->fs; local
    [all...]
gen_bitmap.c 33 ext2_filsys fs; member in struct:ext2fs_struct_generic_bitmap
77 errcode_t ext2fs_make_generic_bitmap(errcode_t magic, ext2_filsys fs,
92 bitmap->fs = fs;
147 return (ext2fs_make_generic_bitmap(src->magic, src->fs,
inline_data.c 24 ext2_filsys fs; member in struct:ext2_inline_data
35 retval = ext2fs_xattrs_open(data->fs, data->ino, &handle);
63 retval = ext2fs_xattrs_open(data->fs, data->ino, &handle);
85 errcode_t ext2fs_inline_data_init(ext2_filsys fs, ext2_ino_t ino)
90 data.fs = fs;
97 errcode_t ext2fs_inline_data_size(ext2_filsys fs, ext2_ino_t ino, size_t *size)
103 retval = ext2fs_read_inode(fs, ino, &inode);
110 data.fs = fs;
788 ext2_filsys fs; local
    [all...]
mkjournal.c 46 errcode_t ext2fs_create_journal_superblock(ext2_filsys fs,
56 if ((retval = ext2fs_get_mem(fs->blocksize, &jsb)))
59 memset (jsb, 0, fs->blocksize);
66 jsb->s_blocksize = htonl(fs->blocksize);
71 memcpy(jsb->s_uuid, fs->super->s_uuid, sizeof(fs->super->s_uuid));
76 if (ext2fs_has_feature_journal_dev(fs->super)) {
78 jsb->s_first = htonl(ext2fs_journal_sb_start(fs->blocksize) + 1);
90 static errcode_t write_journal_file(ext2_filsys fs, char *filename,
98 if ((retval = ext2fs_create_journal_superblock(fs, num_blocks, flags
558 ext2_filsys fs; local
    [all...]
  /external/e2fsprogs/lib/support/
mkquota.c 70 int quota_file_exists(ext2_filsys fs, enum quota_type qtype)
81 ret = ext2fs_lookup(fs, EXT2_ROOT_INO, qf_name, strlen(qf_name), 0,
92 void quota_set_sb_inum(ext2_filsys fs, ext2_ino_t ino, enum quota_type qtype)
96 inump = quota_sb_inump(fs->super, qtype);
101 ext2fs_mark_super_dirty(fs);
104 errcode_t quota_remove_inode(ext2_filsys fs, enum quota_type qtype)
109 retval = ext2fs_read_bitmaps(fs);
115 qf_ino = *quota_sb_inump(fs->super, qtype);
118 retval = quota_inode_truncate(fs, qf_ino);
121 if (qf_ino >= EXT2_FIRST_INODE(fs->super))
166 ext2_filsys fs; local
449 ext2_filsys fs; local
    [all...]
  /external/e2fsprogs/misc/
e2fuzz.c 68 static int find_block_helper(ext2_filsys fs EXT2FS_ATTR((unused)),
84 static errcode_t find_metadata_blocks(ext2_filsys fs, ext2fs_block_bitmap bmap,
99 for (i = 0; i < fs->group_desc_count; i++) {
100 ext2fs_reserve_super_and_bgd(fs, i, bmap);
103 b = ext2fs_block_bitmap_loc(fs, i);
107 b = ext2fs_inode_bitmap_loc(fs, i);
111 c = ext2fs_inode_table_loc(fs, i);
113 fs->inode_blocks_per_group);
114 fb.corrupt_blocks += fs->inode_blocks_per_group;
121 retval = ext2fs_open_inode_scan(fs, 0, &scan)
182 ext2_filsys fs = NULL; local
    [all...]
e2initrd_helper.c 72 static errcode_t get_file(ext2_filsys fs, const char * filename,
86 retval = ext2fs_namei(fs, EXT2_ROOT_INO, EXT2_ROOT_INO,
91 retval = ext2fs_read_inode(fs, ino, &inode);
103 retval = ext2fs_file_open(fs, ino, 0, &e2_file);
237 static int parse_fstab_line(char *line, struct fs_info *fs)
272 fs->device = string_copy(device);
273 fs->mountpt = string_copy(mntpnt);
274 fs->type = string_copy(type);
275 fs->opts = string_copy(opts ? opts : "");
276 fs->freq = freq ? atoi(freq) : -1
373 ext2_filsys fs; local
    [all...]
  /external/e2fsprogs/resize/
main.c 108 static void determine_fs_stride(ext2_filsys fs)
114 int flexbg_size = 1 << fs->super->s_log_groups_per_flex;
116 if (fs->stride)
119 for (group = 0; group < fs->group_desc_count; group++) {
120 has_sb = ext2fs_bg_has_super(fs, group);
123 b_stride = ext2fs_block_bitmap_loc(fs, group) -
124 ext2fs_block_bitmap_loc(fs, group - 1) -
125 fs->super->s_blocks_per_group;
126 i_stride = ext2fs_inode_bitmap_loc(fs, group) -
127 ext2fs_inode_bitmap_loc(fs, group - 1)
249 ext2_filsys fs; local
    [all...]
  /external/fio/engines/
libhdfs.c 24 hdfsFS fs; member in struct:hdfsio_data
140 if ( hdfsCloseFile(hd->fs, hd->fp) == -1) {
157 hd->fp = hdfsOpenFile(hd->fs, fname, open_flags, 0, 0,
178 hdfsTell(hd->fs, hd->fp) != offset && hdfsSeek(hd->fs, hd->fp, offset) != 0 ) {
187 ret = readDirect(hd->fs, hd->fp, io_u->xfer_buf, io_u->xfer_buflen);
189 ret = hdfsRead(hd->fs, hd->fp, io_u->xfer_buf, io_u->xfer_buflen);
192 ret = hdfsWrite(hd->fs, hd->fp, io_u->xfer_buf,
195 ret = hdfsFlush(hd->fs, hd->fp);
233 if ( hdfsCloseFile(hd->fs, hd->fp) == -1)
    [all...]
  /external/gflags/test/
gflags_unittest.cc 795 FlagSaver fs; local
858 FlagSaver fs; local
1198 FlagSaver fs; \/\/ Restores the flags before returning. local
1506 FlagSaver fs; local
1514 FlagSaver fs; local
    [all...]
  /external/google-breakpad/src/google_breakpad/common/
minidump_cpu_x86.h 115 uint32_t fs; member in struct:__anon20830
  /external/javassist/sample/evolve/
Evolution.java 122 CtField[] fs = clazz.getDeclaredFields(); local
123 for (i = 0; i < fs.length; ++i) {
124 CtField f = fs[i];
174 CtField[] fs = clazz.getDeclaredFields(); local
175 for (i = 0; i < fs.length; ++i) {
176 CtField f = fs[i];
  /external/javassist/src/main/javassist/tools/reflect/
Reflection.java 225 CtField[] fs = clazz.getDeclaredFields(); local
226 for (int i = 0; i < fs.length; ++i) {
227 CtField f = fs[i];
357 CtField[] fs = clazz.getDeclaredFields(); local
358 for (int i = 0; i < fs.length; ++i) {
359 CtField f = fs[i];
  /external/kernel-headers/original/uapi/video/
uvesafb.h 22 __u16 fs; member in struct:v86_regs
  /external/libopus/tests/
test_opus_decode.c 79 int fs=fsv[t>>1]; local
82 dec[t] = opus_decoder_create(fs, c, &err);
84 fprintf(stdout," opus_decoder_create(%5d,%d) OK. Copy ",fs,c);
  /external/llvm/include/llvm/Support/
raw_ostream.h 29 namespace fs { namespace in namespace:llvm::sys
383 sys::fs::OpenFlags Flags);
  /external/mesa3d/src/amd/common/
ac_nir_to_llvm.h 49 struct ac_fs_variant_key fs; member in union:ac_shader_variant_key
117 } fs; member in union:ac_shader_variant_info::__anon29128
  /external/mesa3d/src/compiler/
shader_info.h 132 } fs; member in union:shader_info::__anon29346
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_aapoint.c 101 struct aapoint_fragment_shader *fs; member in struct:aapoint_stage
360 const struct pipe_shader_state *orig_fs = &aapoint->fs->state;
393 aapoint->fs->aapoint_fs
395 if (aapoint->fs->aapoint_fs == NULL)
398 aapoint->fs->generic_attrib = transform.maxGeneric + 1;
418 if (!aapoint->fs->aapoint_fs &&
423 aapoint->driver_bind_fs_state(pipe, aapoint->fs->aapoint_fs);
591 aapoint->driver_bind_fs_state(pipe, aapoint->fs ? aapoint->fs->driver_fs : NULL);
643 aapoint->fs->generic_attrib)
    [all...]
draw_pipe_pstipple.c 87 struct pstip_fragment_shader *fs; member in struct:pstip_stage
127 const struct pipe_shader_state *orig_fs = &pstip->fs->state;
137 &pstip->fs->sampler_unit,
143 assert(pstip->fs->sampler_unit < PIPE_MAX_SAMPLERS);
145 pstip->fs->pstip_fs = pstip->driver_create_fs_state(pipe, &pstip_fs);
149 if (!pstip->fs->pstip_fs)
164 if (!pstip->fs->pstip_fs &&
169 pstip->driver_bind_fs_state(pstip->pipe, pstip->fs->pstip_fs);
202 num_samplers = MAX2(pstip->num_samplers, pstip->fs->sampler_unit + 1);
206 pstip->state.samplers[pstip->fs->sampler_unit] = pstip->sampler_cso
    [all...]
draw_pipe_wide_point.c 233 const struct draw_fragment_shader *fs = draw->fs.fragment_shader; local
236 assert(fs);
243 for (i = 0; i < fs->info.num_inputs; i++) {
245 const unsigned sn = fs->info.input_semantic_name[i];
246 const unsigned si = fs->info.input_semantic_index[i];
draw_prim_assembler.c 60 const struct draw_fragment_shader *fs = draw->fs.fragment_shader; local
62 if (fs && fs->info.uses_primid) {
  /external/mesa3d/src/gallium/auxiliary/util/
u_blit.c 68 void *fs[PIPE_MAX_TEXTURE_TYPES][TGSI_WRITEMASK_XYZW + 1][3]; member in struct:blit_state
143 for (i = 0; i < ARRAY_SIZE(ctx->fs); i++) {
144 for (j = 0; j < ARRAY_SIZE(ctx->fs[i]); j++) {
145 for (k = 0; k < ARRAY_SIZE(ctx->fs[i][j]); k++) {
146 if (ctx->fs[i][j][k])
147 pipe->delete_fs_state(pipe, ctx->fs[i][j][k]);
180 if (!ctx->fs[pipe_tex][writemask][idx]) {
185 ctx->fs[pipe_tex][writemask][idx] =
192 cso_set_fragment_shader_handle(ctx->cso, ctx->fs[pipe_tex][writemask][idx]);

Completed in 2354 milliseconds

<<11121314151617181920>>