Home
last modified time | relevance | path

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

/linux/arch/sh/kernel/
H A Ddwarf.c350 struct dwarf_fde *fde = NULL; in dwarf_lookup_fde() local
369 fde = fde_tmp; in dwarf_lookup_fde()
379 return fde; in dwarf_lookup_fde()
387 * @fde: the FDE for this function
399 struct dwarf_fde *fde, in dwarf_cfa_execute_insns() argument
579 struct dwarf_fde *fde; in dwarf_unwind_stack() local
634 fde = dwarf_lookup_fde(pc); in dwarf_unwind_stack()
635 if (!fde) { in dwarf_unwind_stack()
654 cie = dwarf_lookup_cie(fde->cie_pointer); in dwarf_unwind_stack()
656 frame->pc = fde in dwarf_unwind_stack()
871 struct dwarf_fde *fde; dwarf_parse_fde() local
996 struct dwarf_fde *fde, *next_fde; dwarf_unwinder_cleanup() local
1132 struct dwarf_fde *fde, *ftmp; module_dwarf_cleanup() local
[all...]
/linux/arch/arc/kernel/
H A Dunwind.c228 static const u32 *cie_for_fde(const u32 *fde, const struct unwind_table *);
229 static const u32 *__cie_for_fde(const u32 *fde);
233 unsigned long start, fde; member
250 const u32 *fde; in init_unwind_hdr() local
268 if (tableSize & (sizeof(*fde) - 1)) in init_unwind_hdr()
271 for (fde = table->address, n = 0; in init_unwind_hdr()
272 tableSize > sizeof(*fde) && tableSize - sizeof(*fde) >= *fde; in init_unwind_hdr()
273 tableSize -= sizeof(*fde) in init_unwind_hdr()
493 __cie_for_fde(const u32 * fde) __cie_for_fde() argument
502 cie_for_fde(const u32 * fde,const struct unwind_table * table) cie_for_fde() argument
891 const u32 *fde = NULL, *cie = NULL; arc_unwind() local
[all...]
/linux/fs/ext4/
H A Dnamei.c2163 struct fake_dirent *fde; in ext4_check_dx_root() local
2169 fde = &root->dot; in ext4_check_dx_root()
2170 if (unlikely(fde->name_len != 1)) { in ext4_check_dx_root()
2174 if (unlikely(strncmp(root->dot_name, ".", fde->name_len))) { in ext4_check_dx_root()
2178 rlen = ext4_rec_len_from_disk(fde->rec_len, blocksize); in ext4_check_dx_root()
2179 if (unlikely((char *)fde + rlen >= blockend)) { in ext4_check_dx_root()
2184 fde = &root->dotdot; in ext4_check_dx_root()
2185 if (unlikely(fde->name_len != 2)) { in ext4_check_dx_root()
2189 if (unlikely(strncmp(root->dotdot_name, "..", fde->name_len))) { in ext4_check_dx_root()
2193 rlen = ext4_rec_len_from_disk(fde->rec_len, blocksize); in ext4_check_dx_root()
[all …]
/linux/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/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()