HomeSort by relevance Sort by last modified time
    Searched defs:fs (Results 51 - 75 of 327) sorted by null

1 23 4 5 6 7 8 91011>>

  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
LittleEndian.java 20 package de.waldheinz.fs.fat;
Dummy83BufferGenerator.java 19 package de.waldheinz.fs.fat;
SuperFloppyFormatter.java 19 package de.waldheinz.fs.fat;
21 import de.waldheinz.fs.BlockDevice;
37 * FatFileSystem fs = SuperFloppyFormatter.get(dev).
210 /* create FS info sector */
259 FatFileSystem fs = FatFileSystem.read(device, false); local
262 fs.setVolumeLabel(label);
265 fs.flush();
266 return fs;
  /libcore/luni/src/test/java/libcore/java/text/
OldDecimalFormatSymbolsTest.java 96 DecimalFormatSymbols fs = new DecimalFormatSymbols(Locale.US); local
97 DecimalFormatSymbols fsc = (DecimalFormatSymbols) fs.clone();
98 assertEquals(fs.getCurrency(), fsc.getCurrency());
101 fs = new DecimalFormatSymbols();
102 DecimalFormatSymbols fsc2 = (DecimalFormatSymbols) (fs.clone());
104 assertTrue("Object's clone isn't equal!", fs.equals(fsc2));
110 fs.setNaN("not-a-number");
111 assertTrue("Object's changed clone should not be equal!", !fs.equals(fsc2));
  /external/clang/test/CodeGen/
ppc64-struct-onefloat.c 6 typedef struct s4 { Sf fs; } SSf; member in struct:s4
  /external/e2fsprogs/e2fsck/
scantest.c 95 ext2_filsys fs; local
107 0, 0, unix_io_manager, &fs);
114 retval = ext2fs_open_inode_scan(fs, 0, &scan);
138 ext2fs_close(fs);
iscan.c 99 ext2_filsys fs; local
110 0, 0, unix_io_manager, &fs);
117 ehandler_init(fs->io);
119 retval = ext2fs_open_inode_scan(fs, inode_buffer_blocks, &scan);
message.c 61 * @C conflicts with some other fs block
116 N_("Cconflicts with some other fs @b"),
194 static void print_pathname(ext2_filsys fs, ext2_ino_t dir, ext2_ino_t ino)
204 retval = ext2fs_get_pathname(fs, dir, ino, &path);
261 static _INLINE_ void expand_inode_expression(ext2_filsys fs, char ch,
295 if (fs->super->s_feature_ro_compat &
357 static _INLINE_ void expand_dirent_expression(ext2_filsys fs, char ch,
377 if ((ext2fs_get_rec_len(fs, dirent, &rec_len) == 0) &&
383 (void) ext2fs_get_rec_len(fs, dirent, &rec_len);
399 static _INLINE_ void expand_percent_expression(ext2_filsys fs, char ch
521 ext2_filsys fs = ctx->fs; local
    [all...]
  /external/e2fsprogs/lib/ext2fs/
link.c 22 ext2_filsys fs; member in struct:link_struct
46 ls->err = ext2fs_get_rec_len(ls->fs, dirent, &curr_rec_len);
59 ls->err = ext2fs_set_rec_len(ls->fs, curr_rec_len, dirent);
75 ls->err = ext2fs_set_rec_len(ls->fs, min_rec_len, dirent);
82 ls->err = ext2fs_set_rec_len(ls->fs, rec_len, next);
111 errcode_t ext2fs_link(ext2_filsys fs, ext2_ino_t dir, const char *name,
118 EXT2_CHECK_MAGIC(fs, EXT2_ET_MAGIC_EXT2FS_FILSYS);
120 if (!(fs->flags & EXT2_FLAG_RW))
123 ls.fs = fs;
    [all...]
initialize.c 66 static unsigned int calc_reserved_gdt_blocks(ext2_filsys fs)
68 struct ext2_super_block *sb = fs->super;
81 rsv_gdb = ext2fs_div_ceil(rsv_groups, gdpb) - fs->desc_blocks;
96 ext2_filsys fs; local
114 retval = ext2fs_get_mem(sizeof(struct struct_ext2_filsys), &fs);
118 memset(fs, 0, sizeof(struct struct_ext2_filsys));
119 fs->magic = EXT2_ET_MAGIC_EXT2FS_FILSYS;
120 fs->flags = flags | EXT2_FLAG_RW;
121 fs->umask = 022;
123 fs->flags |= EXT2_FLAG_SWAP_BYTES
    [all...]
openfs.c 32 blk_t ext2fs_descriptor_block_loc(ext2_filsys fs, blk_t group_block, dgrp_t i)
38 if (!(fs->super->s_feature_incompat & EXT2_FEATURE_INCOMPAT_META_BG) ||
39 (i < fs->super->s_first_meta_bg))
42 bg = EXT2_DESC_PER_BLOCK(fs->super) * i;
43 if (ext2fs_bg_has_super(fs, bg))
45 ret_blk = ext2fs_group_first_block(fs, bg) + has_super;
54 if (group_block != fs->super->s_first_data_block &&
55 ((ret_blk + fs->super->s_blocks_per_group) <
56 fs->super->s_blocks_count))
57 ret_blk += fs->super->s_blocks_per_group
85 ext2_filsys fs; local
    [all...]
  /frameworks/compile/mclinker/include/mcld/Support/
Path.h 9 // This file declares the mcld::sys::fs:: namespace. It follows TR2/boost
28 namespace fs { namespace in namespace:mcld::sys
159 } // namespace of fs
169 struct less<mcld::sys::fs::Path> : public binary_function<mcld::sys::fs::Path,
170 mcld::sys::fs::Path,
173 bool operator() (const mcld::sys::fs::Path& pX,const mcld::sys::fs::Path& pY) const {
Directory.h 25 namespace fs { namespace in namespace:mcld::sys
36 friend mcld::sys::fs::PathCache::entry_type* detail::bring_one_into_cache(DirIterator& pIter);
89 mcld::sys::fs::Path m_Path;
94 mcld::sys::fs::PathCache m_Cache;
110 friend mcld::sys::fs::PathCache::entry_type* detail::bring_one_into_cache(DirIterator& pIter);
113 typedef mcld::sys::fs::PathCache DirCache;
150 } // namespace of fs
FileSystem.h 9 // This file declares the mcld::sys::fs:: namespace. It follows TR2/boost
29 namespace fs { namespace in namespace:mcld::sys
88 return f.type() == mcld::sys::fs::DirectoryFile;
105 mcld::sys::fs::PathCache::entry_type* bring_one_into_cache(DirIterator& pIter);
117 } // namespace of fs
  /frameworks/base/tests/LowStorageTest/src/com/android/lowstoragetest/
LowStorageTest.java 83 FileOutputStream fs = local
87 fs.write(buf);
88 fs.flush();
93 fs.write(buf);
94 fs.flush();
95 fs.close();
  /prebuilts/devtools/tools/lib/
fat32lib.jar 
  /external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA1/
SDL_epocevents.cpp 439 RFs fs; local
440 if(KErrNone == fs.Connect())
443 TRAPD(err, ReadL(fs, array));
463 fs.Close();
  /frameworks/av/media/libeffects/lvm/lib/Eq/src/
LVEQNB_Control.c 134 /* Double precision if (fc <= fs/110) */
135 /* Double precision if (fs/110 < fc < fs/85) & (Q>3) */
146 LVM_UINT32 fs = (LVM_UINT32)LVEQNB_SampleRateTab[(LVM_UINT16)pParams->SampleRate]; /* Sample rate */ local
166 if ((fc << 15) <= (LOW_FREQ * fs))
169 * fc <= fs/110
173 else if (((fc << 15) <= (HIGH_FREQ * fs)) && (QFactor > 300))
176 * (fs/110 < fc < fs/85) & (Q>3)
185 if (fc > (fs >> 1)
    [all...]
  /frameworks/compile/libbcc/include/bcc/
Linker.h 31 namespace sys { namespace fs { namespace in namespace:mcld::sys
35 } } // end namespace sys::fs
  /frameworks/compile/mclinker/tools/mcld/include/alone/
Linker.h 24 namespace sys { namespace fs { namespace in namespace:mcld::sys
28 } } // end namespace sys::fs
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
FeatureAssembly.java 104 String fs = s; local
108 fs = fs + "+" + mAggregatorManager.getDataMap(f).get(f);
110 return fs;
  /system/extras/fatblock/
fatblock.c 26 #include "fs.h"
29 static struct fs fs; variable in typeref:struct:fs
33 static int fs_import(struct fs *fs,
39 ret = fs_init(fs, cluster_size, data_size, total_size_out);
43 ret = import_tree(fs, ".");
57 result = fs_read(&fs, buf, offset, length);
173 ret = fs_import(&fs, 32768, 1048576LL * mb, &total_size);
  /frameworks/base/tests/RenderScriptTests/ShadersTest/src/com/android/shaderstest/
ShadersTestRS.java 113 ProgramFragment.Builder fs; local
115 fs = new ProgramFragment.Builder(mRS);
116 fs.setShader(mRes, R.raw.vignette_fs);
117 fs.addConstant(mFSVignetteConst.getAllocation().getType());
118 fs.addTexture(Program.TextureType.TEXTURE_2D);
119 mPFVignette = fs.create();
  /cts/tools/vm-tests-tf/src/util/build/
DasmBuildStep.java 52 FileInputStream fs = new FileInputStream(fname); local
54 ir = new InputStreamReader(fs);
  /external/chromium/third_party/libjingle/source/talk/base/
fileutils.cc 270 FileStream* fs = Filesystem::OpenFile(pathname, "w"); local
271 delete fs;

Completed in 458 milliseconds

1 23 4 5 6 7 8 91011>>