/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/ifstream.cons/ |
string.pass.cpp | 23 std::ifstream fs(std::string("test.dat")); 25 fs >> x; 29 std::ifstream fs(std::string("test.dat"), std::ios_base::out); 31 fs >> x; 35 std::wifstream fs(std::string("test.dat")); 37 fs >> x; 41 std::wifstream fs(std::string("test.dat"), std::ios_base::out); 43 fs >> x;
|
move.pass.cpp | 25 std::ifstream fs = move(fso); local 27 fs >> x; 32 std::wifstream fs = move(fso); local 34 fs >> x;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/ofstream.cons/ |
pointer.pass.cpp | 25 std::ofstream fs(temp.c_str()); 26 fs << 3.25; 29 std::ifstream fs(temp.c_str()); 31 fs >> x; 36 std::wofstream fs(temp.c_str()); 37 fs << 3.25; 40 std::wifstream fs(temp.c_str()); 42 fs >> x;
|
string.pass.cpp | 25 std::ofstream fs(temp); 26 fs << 3.25; 29 std::ifstream fs(temp); 31 fs >> x; 36 std::wofstream fs(temp); 37 fs << 3.25; 40 std::wifstream fs(temp); 42 fs >> x;
|
/external/e2fsprogs/lib/ext2fs/ |
alloc.c | 31 static void check_block_uninit(ext2_filsys fs, ext2fs_block_bitmap map, 38 if (!(EXT2_HAS_RO_COMPAT_FEATURE(fs->super, 40 !(ext2fs_bg_flags_test(fs, group, EXT2_BG_BLOCK_UNINIT))) 43 blk = ext2fs_group_first_block2(fs, group); 45 ext2fs_super_and_bgd_loc2(fs, group, &super_blk, 48 if (fs->super->s_feature_incompat & 50 old_desc_blocks = fs->super->s_first_meta_bg; 52 old_desc_blocks = fs->desc_blocks + fs->super->s_reserved_gdt_blocks; 54 for (i=0; i < fs->super->s_blocks_per_group; i++, blk++ [all...] |
blknum.c | 19 dgrp_t ext2fs_group_of_blk2(ext2_filsys fs, blk64_t blk) 21 return (blk - fs->super->s_first_data_block) / 22 fs->super->s_blocks_per_group; 28 blk64_t ext2fs_group_first_block2(ext2_filsys fs, dgrp_t group) 30 return fs->super->s_first_data_block + 31 ((blk64_t)group * fs->super->s_blocks_per_group); 37 blk64_t ext2fs_group_last_block2(ext2_filsys fs, dgrp_t group) 39 return (group == fs->group_desc_count - 1 ? 40 ext2fs_blocks_count(fs->super) - 1 : 41 ext2fs_group_first_block2(fs, group) [all...] |
closefs.c | 35 int ext2fs_bg_has_super(ext2_filsys fs, dgrp_t group) 37 if (!(fs->super->s_feature_ro_compat & 51 * @fs: ext2 fs pointer 63 errcode_t ext2fs_super_and_bgd_loc2(ext2_filsys fs, 76 group_block = ext2fs_group_first_block2(fs, group); 77 if (group_block == 0 && fs->blocksize == 1024) 80 if (fs->super->s_feature_incompat & EXT2_FEATURE_INCOMPAT_META_BG) 81 old_desc_blocks = fs->super->s_first_meta_bg; 84 fs->desc_blocks + fs->super->s_reserved_gdt_blocks [all...] |
alloc_sb.c | 43 int ext2fs_reserve_super_and_bgd(ext2_filsys fs, 51 ext2fs_super_and_bgd_loc2(fs, group, &super_blk, 54 if (fs->super->s_feature_incompat & EXT2_FEATURE_INCOMPAT_META_BG) 55 old_desc_blocks = fs->super->s_first_meta_bg; 58 fs->desc_blocks + fs->super->s_reserved_gdt_blocks; 62 if ((group == 0) && (fs->blocksize == 1024) && 63 EXT2FS_CLUSTER_RATIO(fs) > 1) 67 if (fs->super->s_reserved_gdt_blocks && fs->block_map == bmap [all...] |
/external/chromium_org/third_party/skia/third_party/lua/src/ |
lcode.c | 37 void luaK_nil (FuncState *fs, int from, int n) { 40 if (fs->pc > fs->lasttarget) { /* no jumps to current position? */ 41 previous = &fs->f->code[fs->pc-1]; 55 luaK_codeABC(fs, OP_LOADNIL, from, n - 1, 0); /* else no optimization */ 59 int luaK_jump (FuncState *fs) { 60 int jpc = fs->jpc; /* save list of jumps to here */ 62 fs->jpc = NO_JUMP; 63 j = luaK_codeAsBx(fs, OP_JMP, 0, NO_JUMP) [all...] |
lcode.h | 39 #define getcode(fs,e) ((fs)->f->code[(e)->u.info]) 41 #define luaK_codeAsBx(fs,o,A,sBx) luaK_codeABx(fs,o,A,(sBx)+MAXARG_sBx) 43 #define luaK_setmultret(fs,e) luaK_setreturns(fs, e, LUA_MULTRET) 45 #define luaK_jumpto(fs,t) luaK_patchlist(fs, luaK_jump(fs), t) 47 LUAI_FUNC int luaK_codeABx (FuncState *fs, OpCode o, int A, unsigned int Bx) [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/ |
filesystem_unittest.py | 47 fs = self.fs 48 self.generic_test_dir = str(self.fs.mkdtemp()) 49 self.orig_cwd = fs.getcwd() 50 fs.chdir(self.generic_test_dir) 51 fs.write_text_file('foo.txt', 'foo') 52 fs.write_text_file('foobar', 'foobar') 53 fs.maybe_make_directory('foodir') 54 fs.write_text_file(fs.join('foodir', 'baz'), 'baz' [all...] |
/external/chromium_org/third_party/opus/src/celt/ |
laplace.h | 36 @param fs Probability of 0, multiplied by 32768 39 void ec_laplace_encode(ec_enc *enc, int *value, unsigned fs, int decay); 44 @param fs Probability of 0, multiplied by 32768 48 int ec_laplace_decode(ec_dec *dec, unsigned fs, int decay);
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/ |
stringseg.asm | 3 fs stosd label 5 es fs gs movsw
|
/external/libcxx/test/input.output/file.streams/fstreams/ifstream.cons/ |
move.pass.cpp | 25 std::ifstream fs = move(fso); local 27 fs >> x; 32 std::wifstream fs = move(fso); local 34 fs >> x;
|
/external/libcxx/test/input.output/file.streams/fstreams/ifstream.members/ |
rdbuf.pass.cpp | 23 std::ifstream fs("test.dat"); 24 std::filebuf* fb = fs.rdbuf(); 28 std::wifstream fs("test.dat"); 29 std::wfilebuf* fb = fs.rdbuf();
|
/external/libopus/celt/ |
laplace.h | 36 @param fs Probability of 0, multiplied by 32768 39 void ec_laplace_encode(ec_enc *enc, int *value, unsigned fs, int decay); 44 @param fs Probability of 0, multiplied by 32768 48 int ec_laplace_decode(ec_dec *dec, unsigned fs, int decay);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/ifstream.members/ |
rdbuf.pass.cpp | 23 std::ifstream fs("test.dat"); 24 std::filebuf* fb = fs.rdbuf(); 28 std::wifstream fs("test.dat"); 29 std::wfilebuf* fb = fs.rdbuf();
|
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/ |
FsObject.java | 20 package de.waldheinz.fs;
|
ReadOnlyException.java | 19 package de.waldheinz.fs;
|
/external/libcxx/test/input.output/file.streams/fstreams/fstream.assign/ |
move_assign.pass.cpp | 28 std::fstream fs; local 29 fs = move(fso); 31 fs << 3.25; 32 fs.seekg(0); 33 fs >> x; 40 std::wfstream fs; local 41 fs = move(fso); 43 fs << 3.25; 44 fs.seekg(0); 45 fs >> x [all...] |
/external/libcxx/test/input.output/file.streams/fstreams/ofstream.assign/ |
move_assign.pass.cpp | 27 std::ofstream fs; local 28 fs = move(fso); 29 fs << 3.25; 32 std::ifstream fs(temp.c_str()); 34 fs >> x; 40 std::wofstream fs; local 41 fs = move(fso); 42 fs << 3.25; 45 std::wifstream fs(temp.c_str()); 47 fs >> x [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/fstream.assign/ |
move_assign.pass.cpp | 28 std::fstream fs; local 29 fs = move(fso); 31 fs << 3.25; 32 fs.seekg(0); 33 fs >> x; 40 std::wfstream fs; local 41 fs = move(fso); 43 fs << 3.25; 44 fs.seekg(0); 45 fs >> x [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/ofstream.assign/ |
move_assign.pass.cpp | 27 std::ofstream fs; local 28 fs = move(fso); 29 fs << 3.25; 32 std::ifstream fs(temp.c_str()); 34 fs >> x; 40 std::wofstream fs; local 41 fs = move(fso); 42 fs << 3.25; 45 std::wifstream fs(temp.c_str()); 47 fs >> x [all...] |
/external/chromium_org/chrome/common/extensions/docs/server2/ |
test_file_system_test.py | 39 fs = TestFileSystem(deepcopy(_TEST_DATA)) 40 self._TestMetasyntacticPaths(fs) 41 self.assertRaises(FileNotFoundError, _Get(fs.Read), ['404.html/']) 42 self.assertRaises(FileNotFoundError, _Get(fs.Read), ['apps/foo/']) 43 self.assertRaises(FileNotFoundError, _Get(fs.Read), ['apps/foo.html']) 44 self.assertRaises(FileNotFoundError, _Get(fs.Read), ['apps/foo.html']) 45 self.assertRaises(FileNotFoundError, _Get(fs.Read), ['apps/foo/', 47 self.assertRaises(FileNotFoundError, _Get(fs.Read), ['apps/foo/', 50 def _TestMetasyntacticPaths(self, fs): 51 self.assertRaises(FileNotFoundError, _Get(fs.Read), ['foo'] [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/ |
svga_pipe_fs.c | 49 struct svga_fragment_shader *fs; local 51 fs = CALLOC_STRUCT(svga_fragment_shader); 52 if (!fs) 55 fs->base.tokens = tgsi_dup_tokens(templ->tokens); 59 tgsi_scan_shader(fs->base.tokens, &fs->base.info); 61 fs->base.id = svga->debug.shader_id++; 63 fs->generic_inputs = svga_get_generic_inputs_mask(&fs->base.info); 65 svga_remap_generics(fs->generic_inputs, fs->generic_remap_table) 81 struct svga_fragment_shader *fs = (struct svga_fragment_shader *) shader; local 92 struct svga_fragment_shader *fs = (struct svga_fragment_shader *) shader; local [all...] |