| /OK3568_Linux_fs/yocto/poky/scripts/contrib/ |
| H A D | list-packageconfig-flags.py | 33 def get_fnlist(bbhandler, pkg_pn, preferred): argument 35 if preferred: 40 if preferred: 47 def get_recipesdata(bbhandler, preferred): argument 52 for fn in get_fnlist(bbhandler, pkg_pn, preferred): 145 parser.add_option("-p", "--preferred-only", 146 help = "where multiple recipe versions are available, list only the preferred version", 147 action="store_true", dest="preferred", default=False) 154 data_dict = get_recipesdata(bbhandler, options.preferred)
|
| /OK3568_Linux_fs/yocto/meta-rockchip/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base_1.22/ |
| H A D | 0006-playbin2-Add-preferred-audio-video-sink.patch | 4 Subject: [PATCH 06/14] playbin2: Add preferred audio/video sink 50 + const gchar *preferred = NULL; 59 + preferred = playbin->apreferred; 61 + preferred = playbin->vpreferred; 63 + if (preferred) { 68 + !strcmp (preferred, GST_OBJECT_NAME (ave->sink))) { 70 + "Preferred sink '%s' for decoder '%s'",
|
| /OK3568_Linux_fs/yocto/meta-rockchip/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base_1.20/ |
| H A D | 0006-playbin2-Add-preferred-audio-video-sink.patch | 4 Subject: [PATCH 06/11] playbin2: Add preferred audio/video sink 50 + const gchar *preferred = NULL; 59 + preferred = playbin->apreferred; 61 + preferred = playbin->vpreferred; 63 + if (preferred) { 68 + !strcmp (preferred, GST_OBJECT_NAME (ave->sink))) { 70 + "Preferred sink '%s' for decoder '%s'",
|
| /OK3568_Linux_fs/buildroot/package/gstreamer1/gst1-plugins-base/ |
| H A D | 0006-playbin2-Add-preferred-audio-video-sink.patch | 4 Subject: [PATCH 06/14] playbin2: Add preferred audio/video sink 50 + const gchar *preferred = NULL; 59 + preferred = playbin->apreferred; 61 + preferred = playbin->vpreferred; 63 + if (preferred) { 68 + !strcmp (preferred, GST_OBJECT_NAME (ave->sink))) { 70 + "Preferred sink '%s' for decoder '%s'",
|
| /OK3568_Linux_fs/kernel/drivers/hid/ |
| H A D | hid-bigbenff.c | 37 * 0x81, 0x02, // Input (Data,Var,Abs,No Wrap,Linear,Preferred State,No Null Position) 39 * 0x81, 0x01, // Input (Const,Array,Abs,No Wrap,Linear,Preferred State,No Null Position) 47 * 0x81, 0x42, // Input (Data,Var,Abs,No Wrap,Linear,Preferred State,Null State) 50 * 0x81, 0x01, // Input (Const,Array,Abs,No Wrap,Linear,Preferred State,No Null Position) 59 * 0x81, 0x02, // Input (Data,Var,Abs,No Wrap,Linear,Preferred State,No Null Position) 74 * 0x81, 0x02, // Input (Data,Var,Abs,No Wrap,Linear,Preferred State,No Null Position) 77 …* 0xB1, 0x02, // Feature (Data,Var,Abs,No Wrap,Linear,Preferred State,No Null Position,… 79 …* 0x91, 0x02, // Output (Data,Var,Abs,No Wrap,Linear,Preferred State,No Null Position,N… 88 * 0x81, 0x02, // Input (Data,Var,Abs,No Wrap,Linear,Preferred State,No Null Position) 126 0x81, 0x02, /* Input (Data,Var,Abs,No Wrap,Linear,Preferred State,No Null Position) */ [all …]
|
| /OK3568_Linux_fs/buildroot/package/gstreamer1/gst1-plugins-good/ |
| H A D | 0003-autodetect-Add-preferred-for-autovideosink-autoaudio.patch | 4 Subject: [PATCH 03/12] autodetect: Add preferred for 32 + autodetect->preferred = g_getenv ("AUTOAUDIOSINK_PREFERRED"); 44 + if (self->preferred) { 48 + if (!strcmp (self->preferred, GST_OBJECT_NAME (f))) { 49 + GST_DEBUG_OBJECT (self, "Preferred %s", GST_OBJECT_NAME (f)); 69 + const gchar *preferred; 90 + autodetect->preferred = g_getenv ("AUTOVIDEOSINK_PREFERRED");
|
| /OK3568_Linux_fs/yocto/meta-rockchip/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.22/ |
| H A D | 0003-autodetect-Add-preferred-for-autovideosink-autoaudio.patch | 4 Subject: [PATCH 03/12] autodetect: Add preferred for 32 + autodetect->preferred = g_getenv ("AUTOAUDIOSINK_PREFERRED"); 44 + if (self->preferred) { 48 + if (!strcmp (self->preferred, GST_OBJECT_NAME (f))) { 49 + GST_DEBUG_OBJECT (self, "Preferred %s", GST_OBJECT_NAME (f)); 69 + const gchar *preferred; 90 + autodetect->preferred = g_getenv ("AUTOVIDEOSINK_PREFERRED");
|
| /OK3568_Linux_fs/yocto/meta-rockchip/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.20/ |
| H A D | 0003-autodetect-Add-preferred-for-autovideosink-autoaudio.patch | 4 Subject: [PATCH 3/5] autodetect: Add preferred for autovideosink/autoaudiosink 31 + autodetect->preferred = g_getenv ("AUTOAUDIOSINK_PREFERRED"); 43 + if (self->preferred) { 47 + if (!strcmp (self->preferred, GST_OBJECT_NAME (f))) { 48 + GST_DEBUG_OBJECT (self, "Preferred %s", GST_OBJECT_NAME (f)); 68 + const gchar *preferred; 89 + autodetect->preferred = g_getenv ("AUTOVIDEOSINK_PREFERRED");
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/ |
| H A D | providers.py | 31 Convenience function to get latest and preferred providers in pkg_pn 107 Check if the version pe,pv,pr is the preferred one. 108 …If there is preferred version defined and ends with '%', then pv has to start with that version af… 128 preferred_v = versionVariableMatch(cfgData, "PREFERRED", pn) 176 logger.warning("preferred version %s of %s not available%s", pv_str, pn, itemstr) 306 dataCache.preferred[item] = prefervar 309 if item in dataCache.preferred: 312 if dataCache.preferred[item] == pn: 350 # Should use dataCache.preferred here? 351 preferred = [] [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/libc/usr/include/linux/ |
| H A D | ncsi.h | 21 * @NCSI_CMD_SET_INTERFACE: set preferred package and channel combination. 22 * Requires NCSI_ATTR_IFINDEX and the preferred NCSI_ATTR_PACKAGE_ID and 23 * optionally the preferred NCSI_ATTR_CHANNEL_ID. 24 * @NCSI_CMD_CLEAR_INTERFACE: clear any preferred package/channel combination. 71 * @NCSI_PKG_ATTR_FORCED: flag signifying a package has been set as preferred 99 * preferred
|
| /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/include/linux/ |
| H A D | ncsi.h | 21 * @NCSI_CMD_SET_INTERFACE: set preferred package and channel combination. 22 * Requires NCSI_ATTR_IFINDEX and the preferred NCSI_ATTR_PACKAGE_ID and 23 * optionally the preferred NCSI_ATTR_CHANNEL_ID. 24 * @NCSI_CMD_CLEAR_INTERFACE: clear any preferred package/channel combination. 71 * @NCSI_PKG_ATTR_FORCED: flag signifying a package has been set as preferred 99 * preferred
|
| /OK3568_Linux_fs/kernel/include/uapi/linux/ |
| H A D | ncsi.h | 21 * @NCSI_CMD_SET_INTERFACE: set preferred package and channel combination. 22 * Requires NCSI_ATTR_IFINDEX and the preferred NCSI_ATTR_PACKAGE_ID and 23 * optionally the preferred NCSI_ATTR_CHANNEL_ID. 24 * @NCSI_CMD_CLEAR_INTERFACE: clear any preferred package/channel combination. 86 * @NCSI_PKG_ATTR_FORCED: flag signifying a package has been set as preferred 114 * preferred
|
| /OK3568_Linux_fs/app/forlinx/flapp/src/plugins/rtc/ |
| H A D | datetimewidget.ui | 65 <sizepolicy hsizetype="Preferred" vsizetype="Fixed"> 81 <sizepolicy hsizetype="Preferred" vsizetype="Fixed"> 97 <sizepolicy hsizetype="Preferred" vsizetype="Fixed"> 113 <sizepolicy hsizetype="Preferred" vsizetype="Preferred"> 135 <sizepolicy hsizetype="Preferred" vsizetype="Fixed"> 167 <sizepolicy hsizetype="Preferred" vsizetype="Fixed"> 192 <sizepolicy hsizetype="Preferred" vsizetype="Fixed"> 208 <enum>QSizePolicy::Preferred</enum>
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/rpm/files/ |
| H A D | 0001-lib-transaction.c-fix-file-conflicts-for-MIPS64-N32.patch | 20 In handleColorConflict, it only deal with conditons "new preferred" or 21 "old preferred". But not deal with the situation where neither is the 22 preferred type. so for tri-lib system, like mips64/mips64 n32/mips(32), 25 Fixed by performing a 'last-in-wins' resolution when "neither is preferred".
|
| /OK3568_Linux_fs/kernel/fs/quota/ |
| H A D | quotaio_v2.h | 41 __le32 dqb_isoftlimit; /* preferred inode limit */ 44 __le32 dqb_bsoftlimit; /* preferred limit on disk space (in QUOTABLOCK_SIZE) */ 54 __le64 dqb_isoftlimit; /* preferred inode limit */ 57 __le64 dqb_bsoftlimit; /* preferred limit on disk space (in QUOTABLOCK_SIZE) */
|
| /OK3568_Linux_fs/kernel/drivers/firmware/efi/libstub/ |
| H A D | relocate.c | 104 * @preferred_addr: preferred target address 110 * to @alignment but at least EFI_ALLOC_ALIGN. If the preferred address 143 * also have a preferred address, so first try to relocate in efi_relocate_kernel() 144 * to the preferred address. If that fails, allocate as low in efi_relocate_kernel() 152 * If preferred address allocation failed allocate as low as in efi_relocate_kernel()
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-armhf/include/opencv2/core/opencl/ |
| H A D | opencl_info.hpp | 170 … DUMP_MESSAGE_STDOUT(" Preferred vector width char = " << device.preferredVectorWidthChar()); in dumpOpenCLInformation() 173 … DUMP_MESSAGE_STDOUT(" Preferred vector width short = " << device.preferredVectorWidthShort()); in dumpOpenCLInformation() 176 … DUMP_MESSAGE_STDOUT(" Preferred vector width int = " << device.preferredVectorWidthInt()); in dumpOpenCLInformation() 179 … DUMP_MESSAGE_STDOUT(" Preferred vector width long = " << device.preferredVectorWidthLong()); in dumpOpenCLInformation() 182 … DUMP_MESSAGE_STDOUT(" Preferred vector width float = " << device.preferredVectorWidthFloat()); in dumpOpenCLInformation() 185 …DUMP_MESSAGE_STDOUT(" Preferred vector width double = " << device.preferredVectorWidthDouble()); in dumpOpenCLInformation()
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/core/opencl/ |
| H A D | opencl_info.hpp | 170 … DUMP_MESSAGE_STDOUT(" Preferred vector width char = " << device.preferredVectorWidthChar()); in dumpOpenCLInformation() 173 … DUMP_MESSAGE_STDOUT(" Preferred vector width short = " << device.preferredVectorWidthShort()); in dumpOpenCLInformation() 176 … DUMP_MESSAGE_STDOUT(" Preferred vector width int = " << device.preferredVectorWidthInt()); in dumpOpenCLInformation() 179 … DUMP_MESSAGE_STDOUT(" Preferred vector width long = " << device.preferredVectorWidthLong()); in dumpOpenCLInformation() 182 … DUMP_MESSAGE_STDOUT(" Preferred vector width float = " << device.preferredVectorWidthFloat()); in dumpOpenCLInformation() 185 …DUMP_MESSAGE_STDOUT(" Preferred vector width double = " << device.preferredVectorWidthDouble()); in dumpOpenCLInformation()
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/opencl/ |
| H A D | opencl_info.hpp | 170 … DUMP_MESSAGE_STDOUT(" Preferred vector width char = " << device.preferredVectorWidthChar()); in dumpOpenCLInformation() 173 … DUMP_MESSAGE_STDOUT(" Preferred vector width short = " << device.preferredVectorWidthShort()); in dumpOpenCLInformation() 176 … DUMP_MESSAGE_STDOUT(" Preferred vector width int = " << device.preferredVectorWidthInt()); in dumpOpenCLInformation() 179 … DUMP_MESSAGE_STDOUT(" Preferred vector width long = " << device.preferredVectorWidthLong()); in dumpOpenCLInformation() 182 … DUMP_MESSAGE_STDOUT(" Preferred vector width float = " << device.preferredVectorWidthFloat()); in dumpOpenCLInformation() 185 …DUMP_MESSAGE_STDOUT(" Preferred vector width double = " << device.preferredVectorWidthDouble()); in dumpOpenCLInformation()
|
| /OK3568_Linux_fs/kernel/Documentation/admin-guide/ |
| H A D | numastat.rst | 11 is incremented on the preferred node, otherwise numa_foreign is incremented on 12 the preferred node and numa_miss on the node where allocation succeeded. 14 Usually preferred node is the one local to the CPU where the process executes, 53 preferred node. As a result, such allocation will not increase the numa_foreign
|
| /OK3568_Linux_fs/kernel/include/drm/ttm/ |
| H A D | ttm_placement.h | 87 * @num_placement: number of preferred placements 88 * @placement: preferred placements 89 * @num_busy_placement: number of preferred placements when need to evict buffer 90 * @busy_placement: preferred placements when need to evict buffer
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeopositioninfosource/ |
| H A D | testqgeopositioninfosource.cpp | 206 QFETCH(QGeoPositionInfoSource::PositioningMethod, preferred); in setPreferredPositioningMethods() 211 s.setPreferredPositioningMethods(preferred); in setPreferredPositioningMethods() 218 QTest::addColumn<QGeoPositionInfoSource::PositioningMethod>("preferred"); in setPreferredPositioningMethods_data() 221 QTest::newRow("Sat supported, Sat preferred") in setPreferredPositioningMethods_data() 225 QTest::newRow("Sat supported, Non-Sat preferred") in setPreferredPositioningMethods_data() 229 QTest::newRow("Sat supported, All preferred") in setPreferredPositioningMethods_data() 234 QTest::newRow("Non-Sat supported, Sat preferred") in setPreferredPositioningMethods_data() 238 QTest::newRow("Non-Sat supported, Non-Sat preferred") in setPreferredPositioningMethods_data() 242 QTest::newRow("Non-Sat supported, All preferred") in setPreferredPositioningMethods_data() 247 QTest::newRow("All supported, Sat preferred") in setPreferredPositioningMethods_data() [all …]
|
| /OK3568_Linux_fs/debian/overlay/etc/profile.d/ |
| H A D | gst.sh | 35 # Preferred formats for V4L2 38 # Preferred formats for videoconvert 53 # Preferred sinks for playbin3(autoaudiosink/autovideosink) and playbin.
|
| /OK3568_Linux_fs/app/forlinx/forlinx_qt/wifi/ |
| H A D | mainwindow.ui | 121 <sizepolicy hsizetype="Minimum" vsizetype="Preferred"> 134 <sizepolicy hsizetype="Preferred" vsizetype="Preferred"> 147 <sizepolicy hsizetype="Preferred" vsizetype="Minimum">
|
| /OK3568_Linux_fs/app/forlinx/forlinx_up4_qt/wifi/ |
| H A D | mainwindow.ui | 121 <sizepolicy hsizetype="Minimum" vsizetype="Preferred"> 134 <sizepolicy hsizetype="Preferred" vsizetype="Preferred"> 147 <sizepolicy hsizetype="Preferred" vsizetype="Minimum">
|