Home
last modified time | relevance | path

Searched refs:sym (Results 1 – 7 of 7) sorted by relevance

/fs/ntfs3/lib/
Ddecompress_common.c124 u32 sym; in make_huffman_decode_table() local
132 for (sym = 0; sym < num_syms; sym++) in make_huffman_decode_table()
133 len_counts[lens[sym]]++; in make_huffman_decode_table()
189 for (sym = 0; sym < num_syms; sym++) in make_huffman_decode_table()
190 if (lens[sym]) in make_huffman_decode_table()
191 sorted_syms[offsets[lens[sym]]++] = sym; in make_huffman_decode_table()
Dxpress_decompress.c90 u32 sym; in xpress_decompress() local
95 sym = read_huffsym(&is, d->decode_table, in xpress_decompress()
97 if (sym < 256) { in xpress_decompress()
99 *out_next++ = sym; in xpress_decompress()
102 length = sym & 0xf; in xpress_decompress()
103 log2_offset = (sym >> 4) & 0xf; in xpress_decompress()
/fs/orangefs/
Dnamei.c244 new_op->upcall.req.sym.parent_refn = parent->refn; in orangefs_symlink()
246 fill_default_sys_attrs(new_op->upcall.req.sym.attributes, in orangefs_symlink()
250 strncpy(new_op->upcall.req.sym.entry_name, in orangefs_symlink()
253 strncpy(new_op->upcall.req.sym.target, symname, ORANGEFS_NAME_MAX - 1); in orangefs_symlink()
259 &new_op->downcall.resp.sym.refn.khandle, in orangefs_symlink()
260 new_op->downcall.resp.sym.refn.fs_id, ret); in orangefs_symlink()
269 ref = new_op->downcall.resp.sym.refn; in orangefs_symlink()
Ddowncall.h111 struct orangefs_symlink_response sym; member
Dupcall.h234 struct orangefs_symlink_request_s sym; member
Dorangefs-utils.c45 fsid = op->upcall.req.sym.parent_refn.fs_id; in fsid_of_op()
/fs/ceph/
Dinode.c974 char *sym; in ceph_fill_inode() local
988 sym = kstrndup(iinfo->symlink, symlen, GFP_NOFS); in ceph_fill_inode()
989 if (!sym) in ceph_fill_inode()
994 ci->i_symlink = sym; in ceph_fill_inode()
996 kfree(sym); /* lost a race */ in ceph_fill_inode()