Home
last modified time | relevance | path

Searched refs:_from (Results 1 – 14 of 14) sorted by relevance

/OK3568_Linux_fs/kernel/drivers/net/ethernet/sfc/falcon/
H A Denum.h117 #define LOOPBACK_CHANGED(_from, _to, _mask) \ argument
118 (!!((LOOPBACK_MASK(_from) ^ LOOPBACK_MASK(_to)) & (_mask)))
120 #define LOOPBACK_OUT_OF(_from, _to, _mask) \ argument
121 ((LOOPBACK_MASK(_from) & (_mask)) && !(LOOPBACK_MASK(_to) & (_mask)))
/OK3568_Linux_fs/kernel/drivers/net/ethernet/sfc/
H A Denum.h118 #define LOOPBACK_CHANGED(_from, _to, _mask) \ argument
119 (!!((LOOPBACK_MASK(_from) ^ LOOPBACK_MASK(_to)) & (_mask)))
121 #define LOOPBACK_OUT_OF(_from, _to, _mask) \ argument
122 ((LOOPBACK_MASK(_from) & (_mask)) && !(LOOPBACK_MASK(_to) & (_mask)))
/OK3568_Linux_fs/yocto/meta-browser/meta-firefox/recipes-browser/firefox/firefox/fixes/
H A Dbug1545437-enable-to-specify-rust-target.patch63 @imports(_from='mozbuild.shellutil', _import='quote')
64 @imports(_from='tempfile', _import='mkstemp')
65 @imports(_from='textwrap', _import='dedent')
H A Davoid-running-autoconf2.13.patch23 @imports(_from='os.path', _import='exists')
H A DBug-1560340-Only-add-confvars.sh-as-a-dependency-to-.patch21 +@imports(_from='os.path', _import='exists')
/OK3568_Linux_fs/yocto/poky/meta/lib/oe/
H A Dspdx.py307 def add_relationship(self, _from, relationship, _to, *, comment=None, annotation=None): argument
308 if isinstance(_from, SPDXObject):
309 from_spdxid = _from.SPDXID
311 from_spdxid = _from
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/stitching/detail/
H A Dutil.hpp82 inline GraphEdge::GraphEdge(int _from, int _to, float _weight) : from(_from), to(_to), weight(_weig… in GraphEdge() argument
/OK3568_Linux_fs/kernel/tools/power/x86/intel_pstate_tracer/
H A Dintel_pstate_tracer.py326 def store_csv(cpu_int, time_pre_dec, time_post_dec, core_busy, scaled, _from, _to, mperf, aperf, ts… argument
336 …, int(time_pre_dec), int(time_post_dec), int(core_busy), int(scaled), int(_from), int(_to), int(mp…
450 _from = search_obj.group(14)
484 …store_csv(cpu_int, time_pre_dec, time_post_dec, core_busy, scaled, _from, _to, mperf, aperf, tsc, …
/OK3568_Linux_fs/kernel/arch/alpha/include/asm/
H A Dpage.h24 extern void copy_page(void * _to, void * _from);
/OK3568_Linux_fs/kernel/drivers/usb/dwc3/
H A Dcore.h1521 #define DWC3_VER_IS_WITHIN(_ip, _from, _to) \ argument
1523 dwc->revision >= _ip##_REVISION_##_from && \
1527 #define DWC3_VER_TYPE_IS_WITHIN(_ip, _ver, _from, _to) \ argument
1529 dwc->version_type >= _ip##_VERSIONTYPE_##_from && \
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/dynamic-layers/meta-python/recipes-extended/mozjs/mozjs-78/
H A D0001-rust.configure-Skip-all-target-manipulations.patch34 @imports(_from='textwrap', _import='dedent')
/OK3568_Linux_fs/kernel/drivers/clk/at91/
H A Dsama7g5.c26 #define SAMA7G5_FILL_TABLE(_to, _from, _count) \ argument
30 (_to)[_i] = (_from)[_i]; \
/OK3568_Linux_fs/kernel/kernel/sched/
H A Dsched.h1916 #define for_class_range(class, _from, _to) \ argument
1917 for (class = (_from); class != (_to); class--)
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/python/python3-git/
H A D0001-python3-git-CVE-2022-24439-fix-from-PR-1521.patch6 Forbid unsafe protocol URLs in Repo.clone{,_from}()