Home
last modified time | relevance | path

Searched refs:Fm (Results 1 – 13 of 13) sorted by relevance

/OK3568_Linux_fs/kernel/Documentation/arm/nwfpe/
H A Dnetwinder-fpe.rst68 CMF{cond} Fn, Fm Compare floating
69 CMFE{cond} Fn, Fm Compare floating with exception
70 CNF{cond} Fn, Fm Compare negated floating
71 CNFE{cond} Fn, Fm Compare negated floating with exception
80 ADF{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - add
81 SUF{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - subtract
82 RSF{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - reverse subtract
83 MUF{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - multiply
84 DVF{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - divide
85 RDV{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - reverse divide
[all …]
H A Dtodo.rst6 POW{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - power
7 RPW{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - reverse power
8 POL{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - polar angle (arctan2)
10 LOG{cond}<S|D|E>{P,M,Z} Fd, <Fm,#value> - logarithm to base 10
11 LGN{cond}<S|D|E>{P,M,Z} Fd, <Fm,#value> - logarithm to base e
12 EXP{cond}<S|D|E>{P,M,Z} Fd, <Fm,#value> - exponent
13 SIN{cond}<S|D|E>{P,M,Z} Fd, <Fm,#value> - sine
14 COS{cond}<S|D|E>{P,M,Z} Fd, <Fm,#value> - cosine
15 TAN{cond}<S|D|E>{P,M,Z} Fd, <Fm,#value> - tangent
16 ASN{cond}<S|D|E>{P,M,Z} Fd, <Fm,#value> - arcsine
[all …]
/OK3568_Linux_fs/kernel/arch/arm/nwfpe/
H A Dfpa11_cprt.c145 unsigned int Fn = getFn(opcode), Fm = getFm(opcode); in PerformComparison() local
186 rFm = getExtendedConstant(Fm); in PerformComparison()
191 switch (fpa11->fType[Fm]) { in PerformComparison()
194 if (float32_is_nan(fpa11->fpreg[Fm].fSingle)) in PerformComparison()
196 rFm = float32_to_floatx80(fpa11->fpreg[Fm].fSingle); in PerformComparison()
201 if (float64_is_nan(fpa11->fpreg[Fm].fDouble)) in PerformComparison()
203 rFm = float64_to_floatx80(fpa11->fpreg[Fm].fDouble); in PerformComparison()
208 if (floatx80_is_nan(fpa11->fpreg[Fm].fExtended)) in PerformComparison()
210 rFm = fpa11->fpreg[Fm].fExtended; in PerformComparison()
238 float32 rFm = getSingleConstant(Fm); in PerformComparison()
[all …]
H A Dextended_cpdo.c14 floatx80 floatx80_exp(floatx80 Fm);
15 floatx80 floatx80_ln(floatx80 Fm);
82 unsigned int Fm, opc_mask_shift; in ExtendedCPDO() local
84 Fm = getFm(opcode); in ExtendedCPDO()
86 rFm = getExtendedConstant(Fm); in ExtendedCPDO()
88 switch (fpa11->fType[Fm]) { in ExtendedCPDO()
90 rFm = float32_to_floatx80(fpa11->fpreg[Fm].fSingle); in ExtendedCPDO()
94 rFm = float64_to_floatx80(fpa11->fpreg[Fm].fDouble); in ExtendedCPDO()
98 rFm = fpa11->fpreg[Fm].fExtended; in ExtendedCPDO()
H A Ddouble_cpdo.c19 float64 float64_exp(float64 Fm);
20 float64 float64_ln(float64 Fm);
103 unsigned int Fm, opc_mask_shift; in DoubleCPDO() local
105 Fm = getFm(opcode); in DoubleCPDO()
107 rFm = getDoubleConstant(Fm); in DoubleCPDO()
109 switch (fpa11->fType[Fm]) { in DoubleCPDO()
111 rFm = float32_to_float64(fpa11->fpreg[Fm].fSingle); in DoubleCPDO()
115 rFm = fpa11->fpreg[Fm].fDouble; in DoubleCPDO()
H A Dsingle_cpdo.c15 float32 float32_exp(float32 Fm);
16 float32 float32_ln(float32 Fm);
80 unsigned int Fm, opc_mask_shift; in SingleCPDO() local
82 Fm = getFm(opcode); in SingleCPDO()
84 rFm = getSingleConstant(Fm); in SingleCPDO()
85 } else if (fpa11->fType[Fm] == typeSingle) { in SingleCPDO()
86 rFm = fpa11->fpreg[Fm].fSingle; in SingleCPDO()
H A Dfpa11_cpdo.c46 register unsigned int Fm = getFm(opcode); in EmulateCPDO() local
47 if (nType < fpa11->fType[Fm]) { in EmulateCPDO()
48 nType = fpa11->fType[Fm]; in EmulateCPDO()
/OK3568_Linux_fs/kernel/arch/sh/math-emu/
H A Dmath.c69 FP_DECL_##SZ(Fm); FP_DECL_##SZ(Fn); \
70 UNPACK_##SZ(Fm, M); UNPACK_##SZ(Fn, N); \
71 FP_CMP_##SZ(R, Fn, Fm, 2); }while(0)
73 FP_DECL_##SZ(Fm); FP_DECL_##SZ(Fn); \
74 UNPACK_##SZ(Fm, M); UNPACK_##SZ(Fn, N); \
75 FP_CMP_EQ_##SZ(R, Fn, Fm); }while(0)
100 FP_DECL_##SZ(Fm); FP_DECL_##SZ(Fn); FP_DECL_##SZ(Fr); \
101 UNPACK_##SZ(Fm, M); UNPACK_##SZ(Fn, N); \
102 FP_##OP##_##SZ(Fr, Fn, Fm); \
140 FP_DECL_S(Fm); in fmac()
[all …]
/OK3568_Linux_fs/kernel/Documentation/admin-guide/media/
H A Dbttv.rst1210 - Tv/Fm Capture Card (Model 68404) = PV951
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/share/i18n/charmaps/
HDISO_10646.gz1<escape_char> / 2<comment_char> % 3 4% ISO/IEC 10646-1 ...
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/share/i18n/charmaps/
HDISO_10646.gz1<escape_char> / 2<comment_char> % 3 4% ISO/IEC 10646-1 ...
/OK3568_Linux_fs/recovery/
HDrootfs.cpio.gz107070100A8AEB0000041ED0000000000000000000000116841B48100000000000000FD0000000200000000000000000000000200000000.�07070100A8B07C000081A40000000000000000000000016841263500000000000000FD0000000200000000000000000000000900000000.gitkeep��07070100A8B07D000081A40000000000000000000000016841263500000000000000FD0000000200000000000000000000000B00000000.skip_fsck����07070100A8AEB10000A1FF0000000000000000000000016841B0B600000007000000FD0000000200000000000000000000000400000000bin���usr/bin�07070100A8B07E000081A400000000000000000000000168412635000001CC000000FD0000000200000000000000000000001100000000busybox. ...
/OK3568_Linux_fs/device/rockchip/common/images/userdata/userdata_normal/media/
H A Dyuv420_p352x288.yuv154 …9:989:8889:8::8977::88:9888:979977976988787577789:9976777668888768889789787Fm���������������������…
455 …+,,+,**+--+*,-,,%0PYNB=;0/8>>70521443)+,%*%$! "#%*,))7:4Fm{}ynstpkd^\ZY`kt|�|v…
2105 …�����������ĸ�������������˯R/p�������������������������������������������v 0Fm�������������E)������…
2211 …����������������������������������w�������������������������������������ù�9Fm���������������������…
2450 …�����������ĺ�������������˵X,l�������������������������������������������~-4Fm�������������J(������…
2898 …�������������������������cWZNk����������������������������������|IY����f9?Fm������Z79:8;:69;998:9…
4910 …aaaa`_``_^YRLC90-.,-//0//--.-,./0///0////0///0($('%,1%1H=EC=.&WiaT5O}gp_7K*Fm\T<��l�wZr����}������…
5034 …79;9:989:8889:8::8977::88:9888:979977976988787577789:99767776688887688899::Fm���������������������…
6362 …787897898878889779:869879789656678448:677-("#(+Fq�����������������������ݢFm�~}~�����������������…