HomeSort by relevance Sort by last modified time
    Searched refs:fs (Results 76 - 100 of 1835) sorted by null

1 2 34 5 6 7 8 91011>>

  /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/e2fsprogs/lib/ext2fs/
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...]
check_desc.c 32 errcode_t ext2fs_check_desc(ext2_filsys fs)
37 blk64_t first_block = fs->super->s_first_data_block;
38 blk64_t last_block = ext2fs_blocks_count(fs->super)-1;
42 EXT2_CHECK_MAGIC(fs, EXT2_ET_MAGIC_EXT2FS_FILSYS);
44 if (EXT2_DESC_SIZE(fs->super) & (EXT2_DESC_SIZE(fs->super) - 1))
47 retval = ext2fs_allocate_subcluster_bitmap(fs, "check_desc map", &bmap);
51 for (i = 0; i < fs->group_desc_count; i++)
52 ext2fs_reserve_super_and_bgd(fs, i, bmap);
54 for (i = 0; i < fs->group_desc_count; i++)
    [all...]
i_block.c 29 errcode_t ext2fs_iblk_add_blocks(ext2_filsys fs, struct ext2_inode *inode,
34 if (fs->super->s_feature_ro_compat & EXT4_FEATURE_RO_COMPAT_HUGE_FILE)
37 if (!(fs->super->s_feature_ro_compat &
40 num_blocks *= fs->blocksize / 512;
41 num_blocks *= EXT2FS_CLUSTER_RATIO(fs);
45 if (fs->super->s_feature_ro_compat & EXT4_FEATURE_RO_COMPAT_HUGE_FILE)
53 errcode_t ext2fs_iblk_sub_blocks(ext2_filsys fs, struct ext2_inode *inode,
58 if (fs->super->s_feature_ro_compat & EXT4_FEATURE_RO_COMPAT_HUGE_FILE)
61 if (!(fs->super->s_feature_ro_compat &
64 num_blocks *= fs->blocksize / 512
    [all...]
initialize.c 53 static unsigned int calc_reserved_gdt_blocks(ext2_filsys fs)
55 struct ext2_super_block *sb = fs->super;
72 rsv_gdb = ext2fs_div_ceil(rsv_groups, gdpb) - fs->desc_blocks;
87 ext2_filsys fs; local
108 retval = ext2fs_get_mem(sizeof(struct struct_ext2_filsys), &fs);
112 memset(fs, 0, sizeof(struct struct_ext2_filsys));
113 fs->magic = EXT2_ET_MAGIC_EXT2FS_FILSYS;
114 fs->flags = flags | EXT2_FLAG_RW;
115 fs->umask = 022;
116 fs->default_bitmap_type = EXT2FS_BMAP64_RBTREE
    [all...]
  /external/elfutils/0.153/libdw/
dwarf_frame_cfa.c 59 dwarf_frame_cfa (fs, ops, nops)
60 Dwarf_Frame *fs;
65 if (fs == NULL)
69 switch (fs->cfa_rule)
78 *ops = &fs->cfa_data.offset;
85 (NULL, fs->cache->other_byte_order,
86 fs->cache->e_ident[EI_CLASS] == ELFCLASS32 ? 4 : 8, 4,
87 &fs->cache->expr_tree, &fs->cfa_data.expr, false, false,
  /external/llvm/lib/Object/
ObjectFile.cpp 50 sys::fs::file_magic Type) {
51 if (Type == sys::fs::file_magic::unknown)
52 Type = sys::fs::identify_magic(Object->getBuffer());
55 case sys::fs::file_magic::unknown:
56 case sys::fs::file_magic::bitcode:
57 case sys::fs::file_magic::archive:
58 case sys::fs::file_magic::macho_universal_binary:
59 case sys::fs::file_magic::windows_resource:
61 case sys::fs::file_magic::elf_relocatable:
62 case sys::fs::file_magic::elf_executable
    [all...]
Binary.cpp 43 sys::fs::file_magic Type = sys::fs::identify_magic(Buffer->getBuffer());
46 case sys::fs::file_magic::archive:
48 case sys::fs::file_magic::elf_relocatable:
49 case sys::fs::file_magic::elf_executable:
50 case sys::fs::file_magic::elf_shared_object:
51 case sys::fs::file_magic::elf_core:
52 case sys::fs::file_magic::macho_object:
53 case sys::fs::file_magic::macho_executable:
54 case sys::fs::file_magic::macho_fixed_virtual_memory_shared_lib
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
sse-prefix.asm 5 rep fs movsw
6 fs rep movsw label
11 rep fs movsd
12 fs rep movsd label
18 fs cmpsd label
19 rep fs cmpsd
20 fs rep cmpsd label
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
comfort_noise_unittest.cc 22 int fs = 8000; local
25 ComfortNoise cn(fs, &db, &sync_buffer);
merge_unittest.cc 26 int fs = 8000; local
31 Expand expand(&bgn, &sync_buffer, &random_vector, fs, channels);
32 Merge merge(fs, channels, &expand, &sync_buffer);
  /external/libcxx/test/input.output/file.streams/fstreams/fstream.cons/
move.pass.cpp 28 std::fstream fs = move(fso); local
30 fs << 3.25;
31 fs.seekg(0);
32 fs >> x;
39 std::wfstream fs = move(fso); local
41 fs << 3.25;
42 fs.seekg(0);
43 fs >> x;
pointer.pass.cpp 25 std::fstream fs(temp.c_str(), std::ios_base::in | std::ios_base::out
28 fs << 3.25;
29 fs.seekg(0);
30 fs >> x;
35 std::wfstream fs(temp.c_str(), std::ios_base::in | std::ios_base::out
38 fs << 3.25;
39 fs.seekg(0);
40 fs >> x;
string.pass.cpp 25 std::fstream fs(temp,
29 fs << 3.25;
30 fs.seekg(0);
31 fs >> x;
36 std::wfstream fs(temp,
40 fs << 3.25;
41 fs.seekg(0);
42 fs >> x;
  /external/libcxx/test/input.output/file.streams/fstreams/ofstream.cons/
move.pass.cpp 27 std::ofstream fs = move(fso); local
28 fs << 3.25;
31 std::ifstream fs(temp.c_str());
33 fs >> x;
39 std::wofstream fs = move(fso); local
40 fs << 3.25;
43 std::wifstream fs(temp.c_str());
45 fs >> x;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/fstream.cons/
move.pass.cpp 28 std::fstream fs = move(fso); local
30 fs << 3.25;
31 fs.seekg(0);
32 fs >> x;
39 std::wfstream fs = move(fso); local
41 fs << 3.25;
42 fs.seekg(0);
43 fs >> x;
pointer.pass.cpp 25 std::fstream fs(temp.c_str(), std::ios_base::in | std::ios_base::out
28 fs << 3.25;
29 fs.seekg(0);
30 fs >> x;
35 std::wfstream fs(temp.c_str(), std::ios_base::in | std::ios_base::out
38 fs << 3.25;
39 fs.seekg(0);
40 fs >> x;
string.pass.cpp 25 std::fstream fs(temp,
29 fs << 3.25;
30 fs.seekg(0);
31 fs >> x;
36 std::wfstream fs(temp,
40 fs << 3.25;
41 fs.seekg(0);
42 fs >> x;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/ofstream.cons/
move.pass.cpp 27 std::ofstream fs = move(fso); local
28 fs << 3.25;
31 std::ifstream fs(temp.c_str());
33 fs >> x;
39 std::wofstream fs = move(fso); local
40 fs << 3.25;
43 std::wifstream fs(temp.c_str());
45 fs >> x;
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_cb_feedback.c 121 struct feedback_stage *fs = feedback_stage(stage); local
123 _mesa_feedback_token(fs->ctx, (GLfloat) GL_POLYGON_TOKEN);
124 _mesa_feedback_token(fs->ctx, (GLfloat) 3); /* three vertices */
125 feedback_vertex(fs->ctx, draw, prim->v[0]);
126 feedback_vertex(fs->ctx, draw, prim->v[1]);
127 feedback_vertex(fs->ctx, draw, prim->v[2]);
134 struct feedback_stage *fs = feedback_stage(stage); local
136 if (fs->reset_stipple_counter) {
137 _mesa_feedback_token(fs->ctx, (GLfloat) GL_LINE_RESET_TOKEN);
138 fs->reset_stipple_counter = GL_FALSE
151 struct feedback_stage *fs = feedback_stage(stage); local
168 struct feedback_stage *fs = feedback_stage(stage); local
185 struct feedback_stage *fs = ST_CALLOC_STRUCT(feedback_stage); local
209 struct feedback_stage *fs = feedback_stage(stage); local
218 struct feedback_stage *fs = feedback_stage(stage); local
227 struct feedback_stage *fs = feedback_stage(stage); local
258 struct feedback_stage *fs = ST_CALLOC_STRUCT(feedback_stage); local
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_feedback.c 121 struct feedback_stage *fs = feedback_stage(stage); local
123 _mesa_feedback_token(fs->ctx, (GLfloat) GL_POLYGON_TOKEN);
124 _mesa_feedback_token(fs->ctx, (GLfloat) 3); /* three vertices */
125 feedback_vertex(fs->ctx, draw, prim->v[0]);
126 feedback_vertex(fs->ctx, draw, prim->v[1]);
127 feedback_vertex(fs->ctx, draw, prim->v[2]);
134 struct feedback_stage *fs = feedback_stage(stage); local
136 if (fs->reset_stipple_counter) {
137 _mesa_feedback_token(fs->ctx, (GLfloat) GL_LINE_RESET_TOKEN);
138 fs->reset_stipple_counter = GL_FALSE
151 struct feedback_stage *fs = feedback_stage(stage); local
168 struct feedback_stage *fs = feedback_stage(stage); local
185 struct feedback_stage *fs = ST_CALLOC_STRUCT(feedback_stage); local
209 struct feedback_stage *fs = feedback_stage(stage); local
218 struct feedback_stage *fs = feedback_stage(stage); local
227 struct feedback_stage *fs = feedback_stage(stage); local
258 struct feedback_stage *fs = ST_CALLOC_STRUCT(feedback_stage); local
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
typed_fs_factory.h 17 sdk_util::ScopedRef<T> fs(new T());
18 Error error = fs->Init(args);
22 *out_fs = fs;
  /external/libcxx/test/input.output/file.streams/fstreams/ofstream.assign/
member_swap.pass.cpp 35 std::ifstream fs(temp1.c_str());
37 fs >> x;
39 fs >> x;
44 std::ifstream fs(temp2.c_str());
46 fs >> x;
48 fs >> x;
62 std::wifstream fs(temp1.c_str());
64 fs >> x;
66 fs >> x;
71 std::wifstream fs(temp2.c_str())
    [all...]
nonmember_swap.pass.cpp 36 std::ifstream fs(temp1.c_str());
38 fs >> x;
40 fs >> x;
45 std::ifstream fs(temp2.c_str());
47 fs >> x;
49 fs >> x;
63 std::wifstream fs(temp1.c_str());
65 fs >> x;
67 fs >> x;
72 std::wifstream fs(temp2.c_str())
    [all...]

Completed in 1909 milliseconds

1 2 34 5 6 7 8 91011>>