Home
last modified time | relevance | path

Searched refs:Fn (Results 1 – 25 of 49) sorted by relevance

12

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/variant/1.1.4/include/mapbox/
H A Dvariant_visitor.hpp10 template <typename Fn>
11 struct visitor<Fn> : Fn
13 using type = Fn;
14 using Fn::operator();
16 visitor(Fn fn) : Fn(fn) {} in visitor()
19 template <typename Fn, typename... Fns>
20 struct visitor<Fn, Fns...> : Fn, visitor<Fns...>
23 using Fn::operator();
26 visitor(Fn fn, Fns... fns) : Fn(fn), visitor<Fns...>(fns...) {} in visitor()
/OK3568_Linux_fs/kernel/arch/arm/nwfpe/
H A Dfpa11_cpdt.c19 static inline void loadSingle(const unsigned int Fn, const unsigned int __user *pMem) in loadSingle() argument
22 fpa11->fType[Fn] = typeSingle; in loadSingle()
23 get_user(fpa11->fpreg[Fn].fSingle, pMem); in loadSingle()
26 static inline void loadDouble(const unsigned int Fn, const unsigned int __user *pMem) in loadDouble() argument
30 p = (unsigned int *) &fpa11->fpreg[Fn].fDouble; in loadDouble()
31 fpa11->fType[Fn] = typeDouble; in loadDouble()
42 static inline void loadExtended(const unsigned int Fn, const unsigned int __user *pMem) in loadExtended() argument
46 p = (unsigned int *) &fpa11->fpreg[Fn].fExtended; in loadExtended()
47 fpa11->fType[Fn] = typeExtended; in loadExtended()
59 static inline void loadMultiple(const unsigned int Fn, const unsigned int __user *pMem) in loadMultiple() argument
[all …]
H A Dfpa11_cprt.c103 unsigned int Fn = getFm(opcode); in PerformFIX() local
110 switch (fpa11->fType[Fn]) { in PerformFIX()
113 writeRegister(getRd(opcode), float32_to_int32(&roundData, fpa11->fpreg[Fn].fSingle)); in PerformFIX()
119 writeRegister(getRd(opcode), float64_to_int32(&roundData, fpa11->fpreg[Fn].fDouble)); in PerformFIX()
126 writeRegister(getRd(opcode), floatx80_to_int32(&roundData, fpa11->fpreg[Fn].fExtended)); in PerformFIX()
145 unsigned int Fn = getFn(opcode), Fm = getFm(opcode); in PerformComparison() local
158 switch (fpa11->fType[Fn]) { in PerformComparison()
161 if (float32_is_nan(fpa11->fpreg[Fn].fSingle)) in PerformComparison()
163 rFn = float32_to_floatx80(fpa11->fpreg[Fn].fSingle); in PerformComparison()
168 if (float64_is_nan(fpa11->fpreg[Fn].fDouble)) in PerformComparison()
[all …]
H A Dextended_cpdo.c108 unsigned int Fn = getFn(opcode); in ExtendedCPDO() local
111 switch (fpa11->fType[Fn]) { in ExtendedCPDO()
113 rFn = float32_to_floatx80(fpa11->fpreg[Fn].fSingle); in ExtendedCPDO()
117 rFn = float64_to_floatx80(fpa11->fpreg[Fn].fDouble); in ExtendedCPDO()
121 rFn = fpa11->fpreg[Fn].fExtended; in ExtendedCPDO()
H A Ddouble_cpdo.c125 unsigned int Fn = getFn(opcode); in DoubleCPDO() local
128 switch (fpa11->fType[Fn]) { in DoubleCPDO()
130 rFn = float32_to_float64(fpa11->fpreg[Fn].fSingle); in DoubleCPDO()
134 rFn = fpa11->fpreg[Fn].fDouble; in DoubleCPDO()
H A Dsingle_cpdo.c93 unsigned int Fn = getFn(opcode); in SingleCPDO() local
96 if (fpa11->fType[Fn] == typeSingle && in SingleCPDO()
98 rFn = fpa11->fpreg[Fn].fSingle; in SingleCPDO()
/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); \
141 FP_DECL_S(Fn); in fmac()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/util/
H A Drun_loop.hpp56 template <class Fn, class... Args>
57 void invoke(Priority priority, Fn&& fn, Args&&... args) { in invoke()
58 push(priority, WorkTask::make(std::forward<Fn>(fn), std::forward<Args>(args)...)); in invoke()
62 template <class Fn, class... Args>
63 void invoke(Fn&& fn, Args&&... args) { in invoke()
64 invoke(Priority::Default, std::forward<Fn>(fn), std::forward<Args>(args)...); in invoke()
68 template <class Fn, class... Args>
70 invokeCancellable(Fn&& fn, Args&&... args) { in invokeCancellable()
71 …std::shared_ptr<WorkTask> task = WorkTask::make(std::forward<Fn>(fn), std::forward<Args>(args)...); in invokeCancellable()
H A Dwork_task_impl.hpp53 template <class Fn, class... Args>
54 std::shared_ptr<WorkTask> WorkTask::make(Fn&& fn, Args&&... args) { in make()
59 return std::make_shared<WorkTaskImpl<std::decay_t<Fn>, decltype(tuple)>>( in make()
60 std::forward<Fn>(fn), in make()
H A Dwork_task.hpp19 template <class Fn, class... Args>
20 static std::shared_ptr<WorkTask> make(Fn&&, Args&&...);
H A Dimmutable.hpp126 template <class T, class Fn>
127 void mutate(Immutable<T>& immutable, Fn&& fn) { in mutate()
129 std::forward<Fn>(fn)(*mut); in mutate()
/OK3568_Linux_fs/kernel/Documentation/arm/nwfpe/
H A Dnetwinder-fpe.rst51 FLT{cond}<S,D,E>{P,M,Z} Fn, Rd Convert integer to floating point
52 FIX{cond}{P,M,Z} Rd, Fn Convert floating point to integer
68 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
[all …]
/OK3568_Linux_fs/buildroot/dl/sox/git/src/
H A Dsinc.c81 static double * lpf(double Fn, double Fc, double tbw, int * num_taps, double att, double * beta, so… in lpf() argument
84 if ((Fc /= Fn) <= 0 || Fc >= 1) { in lpf()
89 lsx_kaiser_params(att, Fc, (tbw? tbw / Fn : .05) * .5, beta, num_taps); in lpf()
106 double Fn = effp->in_signal.rate * .5; in start() local
110 if (p->Fc0 >= Fn || p->Fc1 >= Fn) { in start()
114 h[0] = lpf(Fn, p->Fc0, p->tbw0, &p->num_taps[0], p->att, &p->beta,p->round); in start()
115 h[1] = lpf(Fn, p->Fc1, p->tbw1, &p->num_taps[1], p->att, &p->beta,p->round); in start()
137 p->Fc0, p->Fc1? p->Fc1 : Fn); in start()
H A Drate.c217 unsigned instance, double Fp, double Fs, double Fn, double att, in dft_stage_init() argument
224 int k = phase == 50 && lsx_is_power_of_2(L) && Fn == L? L << 1 : 4; in dft_stage_init()
225 double * h = lsx_design_lpf(Fp, Fs, Fn, att, &num_taps, -k, -1.); in dft_stage_init()
241 num_taps, dft_length, Fp, Fs, Fn, att, L, M); in dft_stage_init()
385 double x = .5, at, Fp, Fs, Fn, mult = upsample? 1 : arbL / arbM; in rate_init() local
388 Fn = !upsample && preM? x = arbM / arbL : 1; in rate_init()
407 lsx_design_lpf(Fp, Fs, -Fn, attArb, &n0, phases0, f->beta); in rate_init()
421 Fp, Fs, Fn, attArb, &num_taps, phases, f->beta); in rate_init()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/ext/
H A Dtypelist.h74 template<typename Fn, typename Typelist> in _GLIBCXX_VISIBILITY()
76 apply(Fn&, Typelist); in _GLIBCXX_VISIBILITY()
133 template<typename Fn, typename Typelist_Chain> in _GLIBCXX_VISIBILITY()
136 template<typename Fn, typename Hd, typename Tl> in _GLIBCXX_VISIBILITY()
137 struct apply_<Fn, chain<Hd, Tl> > in _GLIBCXX_VISIBILITY()
140 operator()(Fn& f) in _GLIBCXX_VISIBILITY()
143 apply_<Fn, Tl> next; in _GLIBCXX_VISIBILITY()
148 template<typename Fn> in _GLIBCXX_VISIBILITY()
149 struct apply_<Fn, null_type> in _GLIBCXX_VISIBILITY()
152 operator()(Fn&) { } in _GLIBCXX_VISIBILITY()
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/ext/
H A Dtypelist.h74 template<typename Fn, typename Typelist> in _GLIBCXX_VISIBILITY()
76 apply(Fn&, Typelist); in _GLIBCXX_VISIBILITY()
133 template<typename Fn, typename Typelist_Chain> in _GLIBCXX_VISIBILITY()
136 template<typename Fn, typename Hd, typename Tl> in _GLIBCXX_VISIBILITY()
137 struct apply_<Fn, chain<Hd, Tl> > in _GLIBCXX_VISIBILITY()
140 operator()(Fn& f) in _GLIBCXX_VISIBILITY()
143 apply_<Fn, Tl> next; in _GLIBCXX_VISIBILITY()
148 template<typename Fn> in _GLIBCXX_VISIBILITY()
149 struct apply_<Fn, null_type> in _GLIBCXX_VISIBILITY()
152 operator()(Fn&) { } in _GLIBCXX_VISIBILITY()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/actor/
H A Dactor_ref.hpp31 template <typename Fn, class... Args>
32 void invoke(Fn fn, Args&&... args) { in invoke()
38 template <typename Fn, class... Args>
39 auto ask(Fn fn, Args&&... args) { in ask()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/iostreams/
H A Dpipeline.hpp65 template<typename Fn>
66 void for_each(Fn fn) const { fn(component_); } in for_each()
85 template<typename Fn>
86 void for_each(Fn fn) const in for_each()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/gl/
H A Dvertex_array_extension.hpp12 template <typename Fn>
13 VertexArray(const Fn& loadExtension) in VertexArray()
H A Dprogram_binary_extension.hpp19 template <typename Fn>
20 ProgramBinary(const Fn& loadExtension) in ProgramBinary()
H A Ddebugging_extension.hpp72 template <typename Fn>
73 Debugging(const Fn& loadExtension) in Debugging()
/OK3568_Linux_fs/kernel/Documentation/ABI/testing/
H A Dsysfs-platform-msi-laptop39 Touchpad state can only be toggled by pressing Fn+F3.
49 only possible to toggle turbo mode state by pressing Fn+F10,
51 If user presses Fn+F10 too frequent, turbo mode state is not
62 power. ECO mode can only be toggled by pressing Fn+F10.
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/
H A Drapidjson_conversion.hpp44 template <class Fn>
45 static optional<Error> eachMember(const JSValue* value, Fn&& fn) { in eachMember()
/OK3568_Linux_fs/kernel/Documentation/admin-guide/laptops/
H A Dasus-laptop.rst35 - Fn key combinations
163 1) Check whether the Fn+F8 key:
232 wapf: WAPF defines the behavior of the Fn+Fx wlan key
237 - 0x1 should allow to control the device with Fn+Fx key.
238 - 0x4 should send an ACPI event (0x88) while pressing the Fn+Fx key
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/qt/src/
H A Dqt_conversion.hpp56 template <class Fn>
57 static optional<Error> eachMember(const QVariant& value, Fn&& fn) { in eachMember()

12