Home
last modified time | relevance | path

Searched refs:fde (Results 1 – 5 of 5) sorted by relevance

/linux-6.15/arch/arc/kernel/
H A Dunwind.c250 swap(e1->fde, e2->fde); in swap_eh_frame_hdr_table_entries()
281 tableSize > sizeof(*fde) && tableSize - sizeof(*fde) >= *fde; in init_unwind_hdr()
282 tableSize -= sizeof(*fde) + *fde, fde += 1 + *fde / sizeof(*fde)) { in init_unwind_hdr()
302 (const u8 *)(fde + 1) + *fde); in init_unwind_hdr()
330 tableSize -= sizeof(*fde) + *fde, fde += 1 + *fde / sizeof(*fde)) { in init_unwind_hdr()
340 header->table[n].fde = (unsigned long)fde; in init_unwind_hdr()
506 cie = fde + 1 - fde[1] / sizeof(*fde); in __cie_for_fde()
515 if (!*fde || (*fde & (sizeof(*fde) - 1))) in cie_for_fde()
521 if ((fde[1] & (sizeof(*fde) - 1))) in cie_for_fde()
996 (const u8 *)(fde + 1) + *fde, in arc_unwind()
[all …]
/linux-6.15/arch/sh/kernel/
H A Ddwarf.c369 fde = fde_tmp; in dwarf_lookup_fde()
379 return fde; in dwarf_lookup_fde()
635 if (!fde) { in dwarf_unwind_stack()
664 dwarf_cfa_execute_insns(fde->instructions, fde->end, cie, in dwarf_unwind_stack()
877 fde = kzalloc(sizeof(*fde), GFP_KERNEL); in dwarf_parse_fde()
878 if (!fde) in dwarf_parse_fde()
890 fde->cie = cie; in dwarf_parse_fde()
916 fde->end = end; in dwarf_parse_fde()
929 end = fde->initial_location + fde->address_range; in dwarf_parse_fde()
1005 kfree(fde); in dwarf_unwinder_cleanup()
[all …]
/linux-6.15/fs/ext4/
H A Dnamei.c2165 struct fake_dirent *fde; in ext4_check_dx_root() local
2171 fde = &root->dot; in ext4_check_dx_root()
2172 if (unlikely(fde->name_len != 1)) { in ext4_check_dx_root()
2181 if (unlikely((char *)fde + rlen >= blockend)) { in ext4_check_dx_root()
2186 fde = &root->dotdot; in ext4_check_dx_root()
2187 if (unlikely(fde->name_len != 2)) { in ext4_check_dx_root()
2196 if (unlikely((char *)fde + rlen >= blockend)) { in ext4_check_dx_root()
2227 struct fake_dirent *fde; in make_indexed_dir() local
2251 fde = &root->dotdot; in make_indexed_dir()
2252 de = (struct ext4_dir_entry_2 *)((char *)fde + in make_indexed_dir()
[all …]
/linux-6.15/drivers/media/platform/broadcom/
H A Dbcm2835-unicam.c915 const struct v4l2_mbus_frame_desc_entry *fde = &fd.entry[i]; in unicam_get_image_vc_dt() local
917 if (fde->stream == stream) { in unicam_get_image_vc_dt()
918 *vc = fde->bus.csi2.vc; in unicam_get_image_vc_dt()
919 *dt = fde->bus.csi2.dt; in unicam_get_image_vc_dt()
/linux-6.15/fs/hpfs/
H A Ddnode.c12 static loff_t get_pos(struct dnode *d, struct hpfs_dirent *fde) in get_pos() argument
18 if (de == fde) return ((loff_t) le32_to_cpu(d->self) << 4) | (loff_t)i; in get_pos()