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

1 23 4 5 6 7 8 91011>>

  /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...]
csum.c 32 __u16 ext2fs_group_desc_csum(ext2_filsys fs, dgrp_t group)
34 struct ext2_group_desc *desc = ext2fs_group_desc(fs, fs->group_desc,
36 size_t size = EXT2_DESC_SIZE(fs->super);
40 if (fs->super->s_feature_ro_compat & EXT4_FEATURE_RO_COMPAT_GDT_CSUM) {
53 ext2fs_swap_group_desc2(fs,
59 crc = ext2fs_crc16(~0, fs->super->s_uuid,
60 sizeof(fs->super->s_uuid));
85 int ext2fs_group_desc_csum_verify(ext2_filsys fs, dgrp_t group)
87 if (EXT2_HAS_RO_COMPAT_FEATURE(fs->super
226 ext2_filsys fs; local
    [all...]
imager.c 61 errcode_t ext2fs_image_inode_write(ext2_filsys fs, int fd, int flags)
70 buf = malloc(fs->blocksize * BUF_BLOCKS);
74 for (group = 0; group < fs->group_desc_count; group++) {
75 blk = ext2fs_inode_table_loc(fs, (unsigned)group);
80 left = fs->inode_blocks_per_group;
85 retval = io_channel_read_blk64(fs->io, blk, c, buf);
95 if (check_zero_block(cp, fs->blocksize)) {
99 cp += fs->blocksize;
100 r = lseek(fd, fs->blocksize, SEEK_CUR);
109 if (check_zero_block(cp + d*fs->blocksize, fs->blocksize)
    [all...]
  /external/libcxx/test/std/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/std/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;
  /frameworks/compile/mclinker/lib/Support/
FileSystem.cpp 16 bool mcld::sys::fs::exists(const Path& pPath) {
17 mcld::sys::fs::FileStatus file_status;
18 mcld::sys::fs::detail::status(pPath, file_status);
19 return (file_status.type() != mcld::sys::fs::StatusError) &&
20 (file_status.type() != mcld::sys::fs::FileNotFound);
23 bool mcld::sys::fs::is_directory(const Path& pPath) {
26 return (file_status.type() == mcld::sys::fs::DirectoryFile);
  /external/libcxx/test/std/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/std/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/llvm/lib/Object/
SymbolicFile.cpp 30 MemoryBufferRef Object, sys::fs::file_magic Type, LLVMContext *Context) {
32 if (Type == sys::fs::file_magic::unknown)
33 Type = sys::fs::identify_magic(Data);
36 case sys::fs::file_magic::bitcode:
40 case sys::fs::file_magic::unknown:
41 case sys::fs::file_magic::archive:
42 case sys::fs::file_magic::macho_universal_binary:
43 case sys::fs::file_magic::windows_resource:
45 case sys::fs::file_magic::elf:
46 case sys::fs::file_magic::elf_executable
    [all...]
Binary.cpp 41 sys::fs::file_magic Type = sys::fs::identify_magic(Buffer.getBuffer());
44 case sys::fs::file_magic::archive:
46 case sys::fs::file_magic::elf:
47 case sys::fs::file_magic::elf_relocatable:
48 case sys::fs::file_magic::elf_executable:
49 case sys::fs::file_magic::elf_shared_object:
50 case sys::fs::file_magic::elf_core:
51 case sys::fs::file_magic::macho_object:
52 case sys::fs::file_magic::macho_executable
    [all...]
  /external/mesa3d/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...]
  /external/opencv3/samples/cpp/tutorial_code/core/file_input_output/
file_input_output.cpp 28 void write(FileStorage& fs) const //Write serialization for this class
30 fs << "{" << "A" << A << "X" << X << "id" << id << "}";
45 static void write(FileStorage& fs, const std::string&, const MyData& x)
47 x.write(fs);
79 FileStorage fs(filename, FileStorage::WRITE);
81 fs << "iterationNr" << 100;
82 fs << "strings" << "["; // text - string sequence
83 fs << "image1.jpg" << "Awesomeness" << "../data/baboon.jpg";
84 fs << "]"; // close sequence
86 fs << "Mapping"; // text - mappin
101 FileStorage fs; local
    [all...]

Completed in 152 milliseconds

1 23 4 5 6 7 8 91011>>