Home
last modified time | relevance | path

Searched refs:Path (Results 1 – 25 of 270) sorted by relevance

1234567891011

/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8822be/hal/phydm/rtl8822b/
H A Dphydm_iqk_8822b.c520 IN u1Byte Path in _IQK_LOKSetting_8822B() argument
523 ODM_Write4Byte(pDM_Odm, 0x1b00, 0xf8000008 | Path << 1); in _IQK_LOKSetting_8822B()
530 ODM_SetRFReg(pDM_Odm, Path, 0x56, bRFRegOffsetMask, 0x50df2); in _IQK_LOKSetting_8822B()
531 ODM_SetRFReg(pDM_Odm, Path, 0x8f, bRFRegOffsetMask, 0xadc00); in _IQK_LOKSetting_8822B()
533 ODM_SetRFReg(pDM_Odm, Path, 0xef, BIT4, 0x1); in _IQK_LOKSetting_8822B()
534 ODM_SetRFReg(pDM_Odm, Path, 0x33, BIT1|BIT0, 0x0); in _IQK_LOKSetting_8822B()
538 ODM_SetRFReg(pDM_Odm, Path, 0x56, bRFRegOffsetMask, 0x5086c); in _IQK_LOKSetting_8822B()
539 ODM_SetRFReg(pDM_Odm, Path, 0x8f, bRFRegOffsetMask, 0xa9c00); in _IQK_LOKSetting_8822B()
541 ODM_SetRFReg(pDM_Odm, Path, 0xef, BIT4, 0x1); in _IQK_LOKSetting_8822B()
542 ODM_SetRFReg(pDM_Odm, Path, 0x33, BIT1|BIT0, 0x1); in _IQK_LOKSetting_8822B()
[all …]
H A Dphydm_hal_api8822b.h54 IN ODM_RF_RADIO_PATH_E Path,
61 IN ODM_RF_RADIO_PATH_E Path,
114 IN ODM_RF_RADIO_PATH_E Path,
H A Dphydm_hal_api8822b.c491 IN ODM_RF_RADIO_PATH_E Path, in phydm_write_txagc_1byte_8822b() argument
503 if ((Path > ODM_RF_PATH_B) || (HwRate > 0x53)) { in phydm_write_txagc_1byte_8822b()
504 …ODM_PHY_CONFIG, ODM_DBG_TRACE, ("phydm_write_txagc_1byte_8822b(): unsupported path (%d)\n", Path)); in phydm_write_txagc_1byte_8822b()
511 …txagc_content = txagc_content|(config_phydm_read_txagc_8822b(pDM_Odm, Path, rate_idx + i) << (i <<… in phydm_write_txagc_1byte_8822b()
515 ODM_SetBBReg(pDM_Odm, (offset_txagc[Path] + rate_idx), bMaskDWord, txagc_content); in phydm_write_txagc_1byte_8822b()
518 Path, HwRate, (offset_txagc[Path] + HwRate), PowerIndex)); in phydm_write_txagc_1byte_8822b()
762 IN ODM_RF_RADIO_PATH_E Path, in config_phydm_write_txagc_8822b() argument
777 if ((Path > ODM_RF_PATH_B) || (HwRate > 0x53)) { in config_phydm_write_txagc_8822b()
778 …DM_PHY_CONFIG, ODM_DBG_TRACE, ("config_phydm_write_txagc_8822b(): unsupported path (%d)\n", Path)); in config_phydm_write_txagc_8822b()
783 ODM_SetBBReg(pDM_Odm, (offset_txagc[Path] + rate_idx), bMaskDWord, PowerIndex); in config_phydm_write_txagc_8822b()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/clipper/
H A Dclipper.h106 typedef std::vector< IntPoint > Path; typedef
107 typedef std::vector< Path > Paths;
109 inline Path& operator <<(Path& poly, const IntPoint& p) {poly.push_back(p); return poly;}
110 inline Paths& operator <<(Paths& polys, const Path& p) {polys.push_back(p); return polys;}
113 std::ostream& operator <<(std::ostream &s, const Path &p);
141 Path Contour;
171 bool Orientation(const Path &poly);
172 double Area(const Path &poly);
173 int PointInPolygon(const IntPoint &pt, const Path &path);
175 void SimplifyPolygon(const Path &in_poly, Paths &out_polys, PolyFillType fillType = pftEvenOdd);
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/clip2tri/
H A Dclip2tri.h64 Path upscaleClipperPoints(const vector<Point> &inputPolygon);
72 bool triangulateComplex(vector<Point> &outputTriangles, const Path &outline,
84 void addClipPolygon(const Path &path);
86 void addSubjectPath(const Path &path, bool closed);
94 static int pointInPolygon(const IntPoint &pt, const Path &path);
H A Dclip2tri.cpp81 Path bounds = upscaleClipperPoints(boundingPolygon); in triangulate()
87 void clip2tri::addClipPolygon(const Path &path) in addClipPolygon()
99 void clip2tri::addSubjectPath(const Path &path, bool closed) in addSubjectPath()
176 int clip2tri::pointInPolygon(const IntPoint &pt, const Path &path) in pointInPolygon()
181 Path clip2tri::upscaleClipperPoints(const vector<Point> &inputPolygon) in upscaleClipperPoints()
183 Path outputPolygon; in upscaleClipperPoints()
274 static void edgeShrink(Path &path) in edgeShrink()
300 bool clip2tri::triangulateComplex(vector<Point> &outputTriangles, const Path &outline, in triangulateComplex()
/OK3568_Linux_fs/kernel/tools/perf/util/c++/
H A Dclang.cpp39 createCompilerInvocation(llvm::opt::ArgStringList CFlags, StringRef& Path, in createCompilerInvocation() argument
62 Opts.Inputs.emplace_back(Path, in createCompilerInvocation()
69 StringRef Path, IntrusiveRefCntPtr<vfs::FileSystem> VFS) in getModuleFromSource() argument
82 createCompilerInvocation(std::move(CFlags), Path, in getModuleFromSource()
87 createCompilerInvocation(std::move(CFlags), Path, in getModuleFromSource()
121 getModuleFromSource(llvm::opt::ArgStringList CFlags, StringRef Path) in getModuleFromSource() argument
124 return getModuleFromSource(std::move(CFlags), Path, VFS); in getModuleFromSource()
/OK3568_Linux_fs/yocto/poky/meta/recipes-extended/sudo/files/
H A D0001-sudo.conf.in-fix-conflict-with-multilib.patch40 -#Path intercept @intercept_file@
41 +#Path intercept $intercept_file
49 -#Path noexec @noexec_file@
50 +#Path noexec $noexec_file
58 -#Path plugin_dir @plugindir@
59 +#Path plugin_dir $plugindir
/OK3568_Linux_fs/kernel/Documentation/infiniband/
H A Dopa_vnic.rst2 Intel Omni-Path (OPA) Virtual Network Interface Controller (VNIC)
5 Intel Omni-Path (OPA) Virtual Network Interface Controller (VNIC) feature
6 supports Ethernet functionality over Omni-Path fabric by encapsulating
11 The patterns of exchanges of Omni-Path encapsulated Ethernet packets
12 involves one or more virtual Ethernet switches overlaid on the Omni-Path
13 fabric topology. A subset of HFI nodes on the Omni-Path fabric are
52 The Omni-Path encapsulated Ethernet packet format is as described below.
116 net_device_ops functions. It expects Omni-Path encapsulated Ethernet
118 the Omni-Path header from the received packets before passing them up
129 Omni-Path header in the transmit path. For each VNIC interface, the
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/positioning/
H A Dqclipperutils.cpp62 QList<QDoubleVector2D> QClipperUtils::pathToQList(const Path &path) in pathToQList()
75 for (const Path &p: paths) { in pathsToQList()
81 Path QClipperUtils::qListToPath(const QList<QDoubleVector2D> &list) in qListToPath()
83 Path res; in qListToPath()
/OK3568_Linux_fs/external/alsa-config/alsa/init/
H A Drk8095 CTL{name}="Playback Path", CTL{value}="SPK_HP"
8 CTL{name}="Capture MIC Path", CTL{value}="Main Mic"
11 CTL{name}="Resume Path", CTL{value}="ON"
/OK3568_Linux_fs/yocto/poky/documentation/sphinx/
H A Dyocto-vars.py3 from pathlib import Path
41 poky_cache = Path(app.outdir) / ".poky.yaml.cache"
50 for p in Path(app.srcdir).rglob("*.rst"):
57 poky_cache = Path(app.outdir) / ".poky.yaml.cache"
/OK3568_Linux_fs/yocto/meta-clang/recipes-devtools/clang/clang/
H A D0009-clang-Look-inside-the-target-sysroot-for-compiler-ru.patch33 - SmallString<128> Path(getDriver().ResourceDir);
34 + SmallString<128> Path(getDriver().SysRoot);
36 + llvm::sys::path::append(Path, "/usr/", Twine("lib") + ClangLibdirSuffix, "clang",
39 llvm::sys::path::append(Path, "lib");
/OK3568_Linux_fs/yocto/poky/meta/recipes-core/systemd/systemd-systemctl/
H A Dsystemctl15 from pathlib import Path
19 ROOT = Path("/")
20 SYSCONFDIR = Path("etc")
21 BASE_LIBDIR = Path("lib")
22 LIBDIR = Path("usr", "lib")
58 path = root / Path(os.readlink(str(path))).relative_to(ROOT)
312 root = Path(args.root) if args.root else ROOT
/OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/tests/eventreplay/
H A D__init__.py21 from pathlib import Path
36 bitbake_dir = Path(__file__.split('lib/toaster')[0])
45 eventpath = Path(self.eventplay_dir) / eventfile
/OK3568_Linux_fs/external/xserver/include/
H A Dxorg-config.h.meson.in33 /* Path to configuration file. */
36 /* Path to configuration file. */
42 /* Path to loadable modules. */
45 /* Path to installed libraries. */
124 /* Path to text files containing PCI IDs */
H A Dxorg-config.h.in33 /* Path to configuration file. */
36 /* Path to configuration file. */
42 /* Path to loadable modules. */
45 /* Path to installed libraries. */
130 /* Path to text files containing PCI IDs */
/OK3568_Linux_fs/yocto/poky/meta/classes/
H A Dcreate-spdx.bbclass97 from pathlib import Path
121 with (Path(directory) / name).open(errors="replace") as f:
197 from pathlib import Path
215 filepath = Path(subdir) / file
273 from pathlib import Path
279 Path(d.getVar('PKGD')),
280 Path(d.getVar('STAGING_DIR_TARGET')),
281 Path(d.getVar('STAGING_DIR_NATIVE')),
282 Path(d.getVar('STAGING_KERNEL_DIR')),
335 from pathlib import Path
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/util/
H A Durl.cpp104 Path::Path(const std::string& str, const size_t pos, const size_t count) in Path() function in mbgl::util::Path
141 const Path path(str, url.path.first, url.path.second); in transformURL()
144 const Path path(str, url.path.first, url.path.second); in transformURL()
147 const Path path(str, url.path.first, url.path.second); in transformURL()
/OK3568_Linux_fs/buildroot/boot/grub2/
H A D0024-efi-Fix-some-malformed-device-path-arithmetic-errors.patch56 + "malformed EFI Device Path node has length=%d", len);
82 + "malformed EFI Device Path node has length=%d", len);
88 /* According to EFI spec Path Name is NULL terminated */
110 + "malformed EFI Device Path node has length=%d", len);
171 + "malformed EFI Device Path node has length=%d", len);
213 /* The End of Device Path nodes. */
235 /* Hardware Device Path. */
/OK3568_Linux_fs/buildroot/package/perl-path-tiny/
H A Dperl-path-tiny.mk8 PERL_PATH_TINY_SOURCE = Path-Tiny-$(PERL_PATH_TINY_VERSION).tar.gz
12 PERL_PATH_TINY_DISTNAME = Path-Tiny
H A Dperl-path-tiny.hash2 md5 cb34fd356725ec12b78e88ddac37db08 Path-Tiny-0.118.tar.gz
3 sha256 32138d8d0f4c9c1a84d2a8f91bc5e913d37d8a7edefbb15a10961bfed560b0fd Path-Tiny-0.118.tar.gz
/OK3568_Linux_fs/buildroot/package/perl-path-class/
H A Dperl-path-class.hash2 md5 13e6db714f6d5a0e62ca1c4a7fc4d0f3 Path-Class-0.37.tar.gz
3 sha256 654781948602386f2cb2e4473a739f17dc6953d92aabc2498a4ca2561bc248ce Path-Class-0.37.tar.gz
H A Dperl-path-class.mk8 PERL_PATH_CLASS_SOURCE = Path-Class-$(PERL_PATH_CLASS_VERSION).tar.gz
13 PERL_PATH_CLASS_DISTNAME = Path-Class
/OK3568_Linux_fs/debian/overlay-firmware/usr/share/alsa/init/
H A Drk8095 CTL{name}="Playback Path", CTL{value}="SPK_HP"
8 CTL{name}="Capture MIC Path", CTL{value}="Main Mic"

1234567891011