Home
last modified time | relevance | path

Searched full:ftype (Results 1 – 25 of 53) sorted by relevance

123

/linux/arch/arm/nwfpe/
H A Dfpa11_cprt.c69 fpa11->fType[getFn(opcode)] = typeSingle; in PerformFLT()
76 fpa11->fType[getFn(opcode)] = typeDouble; in PerformFLT()
84 fpa11->fType[getFn(opcode)] = typeExtended; in PerformFLT()
110 switch (fpa11->fType[Fn]) { in PerformFIX()
158 switch (fpa11->fType[Fn]) { in PerformComparison()
191 switch (fpa11->fType[Fm]) { in PerformComparison()
237 if (fpa11->fType[Fn] == typeSingle) { in PerformComparison()
282 if (fpa11->fType[Fn] == typeSingle in PerformComparison()
283 && fpa11->fType[Fm] == typeSingle) { in PerformComparison()
309 rFm = (fpa11->fType[Fm] == typeSingle) ? in PerformComparison()
[all …]
H A Dfpa11_cpdt.c22 fpa11->fType[Fn] = typeSingle; in loadSingle()
31 fpa11->fType[Fn] = typeDouble; in loadDouble()
47 fpa11->fType[Fn] = typeExtended; in loadExtended()
67 fpa11->fType[Fn] = (x >> 14) & 0x00000003; in loadMultiple()
69 switch (fpa11->fType[Fn]) { in loadMultiple()
99 switch (fpa11->fType[Fn]) { in storeSingle()
125 switch (fpa11->fType[Fn]) { in storeDouble()
158 switch (fpa11->fType[Fn]) { in storeExtended()
188 nType = fpa11->fType[Fn]; in storeMultiple()
H A Dfpa11_cpdo.c43 nType = fpa11->fType[getFn(opcode)]; in EmulateCPDO()
47 if (nType < fpa11->fType[Fm]) { in EmulateCPDO()
48 nType = fpa11->fType[Fm]; in EmulateCPDO()
78 fpa11->fType[getFd(opcode)] = nDest; in EmulateCPDO()
H A Dsingle_cpdo.c85 } else if (fpa11->fType[Fm] == typeSingle) { in SingleCPDO()
96 if (fpa11->fType[Fn] == typeSingle && in SingleCPDO()
H A Dextended_cpdo.c88 switch (fpa11->fType[Fm]) { in ExtendedCPDO()
111 switch (fpa11->fType[Fn]) { in ExtendedCPDO()
H A Ddouble_cpdo.c109 switch (fpa11->fType[Fm]) { in DoubleCPDO()
128 switch (fpa11->fType[Fn]) { in DoubleCPDO()
H A Dfpa11.c28 fpa11->fType[i] = typeNone; in resetFPA11()
H A Dfpa11.h71 /* 104 */ unsigned char fType[8]; /* type of floating point value held in member
/linux/usr/
H A Dgen_initramfs.sh95 local ftype=$(filetype "${location}")
101 [ "${ftype}" = "invalid" ] && return 0
104 case "${ftype}" in
106 str="${ftype} ${name} ${location} ${str}"
116 str="${ftype} ${name} ${str} ${dev} ${maj} ${min}"
120 str="${ftype} ${name} ${target} ${str}"
123 str="${ftype} ${name} ${str}"
/linux/net/mac80211/
H A Dmesh_plink.c1019 * @ftype: frame type
1030 enum ieee80211_self_protected_actioncode ftype, in mesh_plink_get_event() argument
1037 matches_local = (ftype == WLAN_SP_MESH_PEERING_CLOSE || in mesh_plink_get_event()
1047 if (ftype != WLAN_SP_MESH_PEERING_OPEN) { in mesh_plink_get_event()
1051 /* ftype == WLAN_SP_MESH_PEERING_OPEN */ in mesh_plink_get_event()
1069 switch (ftype) { in mesh_plink_get_event()
1126 enum ieee80211_self_protected_actioncode ftype; in mesh_process_plink_frame() local
1144 ftype = mgmt->u.action.u.self_prot.action_code; in mesh_process_plink_frame()
1145 if ((ftype == WLAN_SP_MESH_PEERING_OPEN && ie_len != 4) || in mesh_process_plink_frame()
1146 (ftype == WLAN_SP_MESH_PEERING_CONFIRM && ie_len != 6) || in mesh_process_plink_frame()
[all …]
/linux/kernel/trace/
H A Dtrace_probe.h190 #define __ASSIGN_FETCH_TYPE(_name, ptype, ftype, _size, sign, str, _fmttype) \ argument
201 #define _ASSIGN_FETCH_TYPE(_name, ptype, ftype, _size, sign, _fmttype) \ argument
202 __ASSIGN_FETCH_TYPE(_name, ptype, ftype, _size, sign, 0, #_fmttype)
203 #define ASSIGN_FETCH_TYPE(ptype, ftype, sign) \ argument
204 _ASSIGN_FETCH_TYPE(#ptype, ptype, ftype, sizeof(ftype), sign, ptype)
207 #define ASSIGN_FETCH_TYPE_ALIAS(ptype, atype, ftype, sign) \ argument
208 _ASSIGN_FETCH_TYPE(#ptype, ptype, ftype, sizeof(ftype), sign, atype)
/linux/drivers/net/ethernet/intel/idpf/
H A Didpf_idc.c406 * @ftype: PF or VF
411 enum iidc_function_type ftype) in idpf_idc_init_aux_core_dev() argument
431 privd->ftype = ftype; in idpf_idc_init_aux_core_dev()
H A Didpf_controlq.h66 * |DD |CMP|ERR| * RSV * |FTYPE | *RSV* |RD |VFC|BUF| HOST_ID |
/linux/fs/xfs/libxfs/
H A Dxfs_metadir.c67 unsigned char ftype) in xfs_metadir_set_xname() argument
71 xname->type = ftype; in xfs_metadir_set_xname()
77 * @xname.type must match the directory entry's ftype.
H A Dxfs_dir2_priv.h70 struct xfs_dir2_data_entry *dep, uint8_t ftype);
186 struct xfs_dir2_sf_entry *sfep, uint8_t ftype);
H A Dxfs_dir2_data.c56 uint8_t ftype = dep->name[dep->namelen]; in xfs_dir2_data_get_ftype() local
58 if (likely(ftype < XFS_DIR3_FT_MAX)) in xfs_dir2_data_get_ftype()
59 return ftype; in xfs_dir2_data_get_ftype()
69 uint8_t ftype) in xfs_dir2_data_put_ftype() argument
71 ASSERT(ftype < XFS_DIR3_FT_MAX); in xfs_dir2_data_put_ftype()
75 dep->name[dep->namelen] = ftype; in xfs_dir2_data_put_ftype()
H A Dxfs_dir2_sf.c139 uint8_t ftype = sfep->name[sfep->namelen]; in xfs_dir2_sf_get_ftype() local
141 if (ftype < XFS_DIR3_FT_MAX) in xfs_dir2_sf_get_ftype()
142 return ftype; in xfs_dir2_sf_get_ftype()
152 uint8_t ftype) in xfs_dir2_sf_put_ftype() argument
154 ASSERT(ftype < XFS_DIR3_FT_MAX); in xfs_dir2_sf_put_ftype()
157 sfep->name[sfep->namelen] = ftype; in xfs_dir2_sf_put_ftype()
/linux/fs/xfs/scrub/
H A Dtrace.h1605 __field(uint8_t, ftype)
1614 __entry->ftype = xfs_mode_to_ftype(VFS_I(ip)->i_mode);
1620 TP_printk("dev %d:%d ino 0x%llx ftype %s nlink %u parents %u backrefs %u children %u",
1623 __print_symbolic(__entry->ftype, XFS_DIR3_FTYPE_STR),
2609 unsigned int ftype),
2610 TP_ARGS(sc, dp, ftype),
2615 __field(unsigned int, ftype)
2621 __entry->ftype = ftype;
2623 TP_printk("dev %d:%d ino 0x%llx parent_ino 0x%llx ftype '%s'",
2627 __print_symbolic(__entry->ftype, XFS_DIR3_FTYPE_STR))
[all …]
H A Dnlinks_repair.c301 * We need ftype for an accurate count of the number of child in xrep_nlinks()
305 * count alone. Filesystems without ftype support are rare (old V4) so in xrep_nlinks()
/linux/include/linux/net/intel/
H A Diidc_rdma_idpf.h43 enum iidc_function_type ftype; member
/linux/drivers/net/wireless/ath/ath9k/
H A Dlink.c250 int ftype; in ath_paprd_calibrate() local
275 ftype = IEEE80211_FTYPE_DATA | IEEE80211_STYPE_NULLFUNC; in ath_paprd_calibrate()
276 hdr->frame_control = cpu_to_le16(ftype); in ath_paprd_calibrate()
/linux/net/wireless/
H A Dscan.c2195 enum cfg80211_bss_frame_type ftype; member
2365 switch (data->ftype) { in cfg80211_inform_single_bss_data()
2492 .ftype = tx_data->ftype, in cfg80211_parse_mbssid_data()
2953 .ftype = tx_data->ftype, in cfg80211_parse_ml_elem_sta_data()
3206 if (tx_data->ftype != CFG80211_BSS_FTYPE_PRESP) in cfg80211_parse_ml_sta_data()
3218 enum cfg80211_bss_frame_type ftype, in cfg80211_inform_bss_data() argument
3225 .ftype = ftype, in cfg80211_inform_bss_data()
3245 if (ftype == CFG80211_BSS_FTYPE_S1G_BEACON) in cfg80211_inform_bss_data()
3264 enum cfg80211_bss_frame_type ftype; in cfg80211_inform_bss_frame_data() local
3325 ftype = CFG80211_BSS_FTYPE_PRESP; in cfg80211_inform_bss_frame_data()
[all …]
/linux/fs/overlayfs/
H A Dnamei.c491 pr_warn_ratelimited("invalid origin (%pd2, ftype=%x, origin ftype=%x).\n", in ovl_check_origin_fh()
719 pr_warn_ratelimited("failed to verify index (%pd2, ftype=%x, err=%i)\n", in ovl_verify_index()
724 pr_warn_ratelimited("orphan index entry (%pd2, ftype=%x, nlink=%u)\n", in ovl_verify_index()
855 pr_warn_ratelimited("bad index found (index=%pd2, ftype=%x, origin ftype=%x).\n", in ovl_lookup_index()
/linux/fs/nfsd/
H A Dnfs3proc.c466 if (argp->ftype == NF3CHR || argp->ftype == NF3BLK) { in nfsd3_proc_mknod()
473 } else if (argp->ftype != NF3SOCK && argp->ftype != NF3FIFO) { in nfsd3_proc_mknod()
478 type = nfs3_ftypes[argp->ftype]; in nfsd3_proc_mknod()
/linux/drivers/media/usb/uvc/
H A Duvc_driver.c240 u32 **intervals, u8 ftype, int width_multiplier, in uvc_parse_frame() argument
248 if (ftype != UVC_VS_FRAME_FRAME_BASED) in uvc_parse_frame()
268 if (ftype != UVC_VS_FRAME_FRAME_BASED) { in uvc_parse_frame()
356 u8 ftype; in uvc_parse_format() local
423 ftype = UVC_VS_FRAME_UNCOMPRESSED; in uvc_parse_format()
425 ftype = UVC_VS_FRAME_FRAME_BASED; in uvc_parse_format()
443 ftype = UVC_VS_FRAME_MJPEG; in uvc_parse_format()
466 ftype = 0; in uvc_parse_format()
498 if (ftype) { in uvc_parse_format()
500 buffer[2] == ftype) { in uvc_parse_format()
[all …]

123