Home
last modified time | relevance | path

Searched refs:symlen (Results 1 – 6 of 6) sorted by relevance

/openbmc/linux/tools/perf/util/
H A Dhist.c83 int symlen; in hists__calc_col_len() local
94 symlen = h->ms.sym->namelen + 4; in hists__calc_col_len()
96 symlen += BITS_PER_LONG / 4 + 2 + 3; in hists__calc_col_len()
97 hists__new_col_len(hists, HISTC_SYMBOL, symlen); in hists__calc_col_len()
99 symlen = unresolved_col_width + 4 + 2; in hists__calc_col_len()
100 hists__new_col_len(hists, HISTC_SYMBOL, symlen); in hists__calc_col_len()
118 symlen = (int)h->branch_info->from.ms.sym->namelen + 4; in hists__calc_col_len()
120 symlen += BITS_PER_LONG / 4 + 2 + 3; in hists__calc_col_len()
121 hists__new_col_len(hists, HISTC_SYMBOL_FROM, symlen); in hists__calc_col_len()
123 symlen = dso__name_len(map__dso(h->branch_info->from.ms.map)); in hists__calc_col_len()
[all …]
H A Dgenelf.c260 int symlen; in jit_write_elf() local
425 symlen = 2 + strlen(sym); in jit_write_elf()
426 strsym = calloc(1, symlen); in jit_write_elf()
449 d->d_size = symlen; in jit_write_elf()
/openbmc/linux/fs/coda/
H A Ddir.c237 int symlen; in coda_symlink() local
243 symlen = strlen(symname); in coda_symlink()
244 if (symlen > CODA_MAXPATHLEN) in coda_symlink()
253 symname, symlen); in coda_symlink()
H A Dupcall.c407 const char *symname, int symlen) in venus_symlink() argument
415 insize = max_t(unsigned int, offset + len + symlen + 8, OUTSIZE(symlink)); in venus_symlink()
423 s = ( symlen & ~0x3 ) + 4; in venus_symlink()
424 memcpy((char *)(inp) + offset, symname, symlen); in venus_symlink()
425 *((char *)inp + offset + symlen) = '\0'; in venus_symlink()
H A Dcoda_psdev.h78 const char *name, int len, const char *symname, int symlen);
/openbmc/linux/fs/ceph/
H A Dinode.c904 static int decode_encrypted_symlink(const char *encsym, int symlen, u8 **decsym) in decode_encrypted_symlink() argument
1161 u32 symlen = iinfo->symlink_len; in ceph_fill_inode() local
1167 if (symlen != i_size_read(inode)) in ceph_fill_inode()
1173 symlen, (u8 **)&sym); in ceph_fill_inode()
1179 symlen = err; in ceph_fill_inode()
1180 i_size_write(inode, symlen); in ceph_fill_inode()
1181 inode->i_blocks = calc_inode_blocks(symlen); in ceph_fill_inode()
1183 if (symlen != i_size_read(inode)) { in ceph_fill_inode()
1187 i_size_write(inode, symlen); in ceph_fill_inode()
1188 inode->i_blocks = calc_inode_blocks(symlen); in ceph_fill_inode()
[all …]