Home
last modified time | relevance | path

Searched full:queries (Results 1 – 25 of 413) sorted by relevance

12345678910>>...17

/OK3568_Linux_fs/external/xserver/test/sync/
H A Dsync.c75 xcb_sync_query_counter_cookie_t queries[ARRAY_SIZE(some_values)]; in test_create_counter() local
80 queries[i] = xcb_sync_query_counter_unchecked(c, counter); in test_create_counter()
84 int64_t value = counter_value(c, queries[i]); in test_create_counter()
102 xcb_sync_query_counter_cookie_t queries[ARRAY_SIZE(some_values)]; in test_set_counter() local
108 queries[i] = xcb_sync_query_counter_unchecked(c, counter); in test_set_counter()
112 int64_t value = counter_value(c, queries[i]); in test_set_counter()
128 xcb_sync_query_counter_cookie_t queries[iterations]; in test_change_counter_basic() local
135 queries[i] = xcb_sync_query_counter_unchecked(c, counter); in test_change_counter_basic()
141 int64_t value = counter_value(c, queries[i]); in test_change_counter_basic()
158 xcb_sync_query_counter_cookie_t queries[iterations]; in test_change_counter_overflow() local
[all …]
/OK3568_Linux_fs/kernel/drivers/input/rmi4/
H A Drmi_f01.c139 u8 queries[RMI_F01_BASIC_QUERY_LEN]; in rmi_f01_read_properties() local
151 queries, RMI_F01_BASIC_QUERY_LEN); in rmi_f01_read_properties()
162 props->manufacturer_id = queries[0]; in rmi_f01_read_properties()
164 props->has_lts = queries[1] & RMI_F01_QRY1_HAS_LTS; in rmi_f01_read_properties()
166 queries[1] & RMI_F01_QRY1_HAS_ADJ_DOZE; in rmi_f01_read_properties()
168 queries[1] & RMI_F01_QRY1_HAS_ADJ_DOZE_HOFF; in rmi_f01_read_properties()
169 has_query42 = queries[1] & RMI_F01_QRY1_HAS_QUERY42; in rmi_f01_read_properties()
170 has_sensor_id = queries[1] & RMI_F01_QRY1_HAS_SENSOR_ID; in rmi_f01_read_properties()
173 queries[5] & RMI_F01_QRY5_YEAR_MASK, in rmi_f01_read_properties()
174 queries[6] & RMI_F01_QRY6_MONTH_MASK, in rmi_f01_read_properties()
[all …]
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/flann/
H A Dnn_index.h62 * \param[in] queries The query points for which to find the nearest neighbors
68 …virtual void knnSearch(const Matrix<ElementType>& queries, Matrix<int>& indices, Matrix<DistanceTy… in knnSearch() argument
70 assert(queries.cols == veclen()); in knnSearch()
71 assert(indices.rows >= queries.rows); in knnSearch()
72 assert(dists.rows >= queries.rows); in knnSearch()
78 for (size_t i = 0; i < queries.rows; i++) { in knnSearch()
80 findNeighbors(resultSet, queries[i], params); in knnSearch()
84 for (size_t i = 0; i < queries.rows; i++) { in knnSearch()
86 findNeighbors(resultSet, queries[i], params); in knnSearch()
H A Dlsh_index.h184 * \param[in] queries The query points for which to find the nearest neighbors
190 …virtual void knnSearch(const Matrix<ElementType>& queries, Matrix<int>& indices, Matrix<DistanceTy… in knnSearch() argument
192 assert(queries.cols == veclen()); in knnSearch()
193 assert(indices.rows >= queries.rows); in knnSearch()
194 assert(dists.rows >= queries.rows); in knnSearch()
200 for (size_t i = 0; i < queries.rows; i++) { in knnSearch()
204 findNeighbors(resultSet, queries[i], params); in knnSearch()
H A Dkdtree_single_index.h207 * \param[in] queries The query points for which to find the nearest neighbors
213 …void knnSearch(const Matrix<ElementType>& queries, Matrix<int>& indices, Matrix<DistanceType>& dis… in knnSearch() argument
215 assert(queries.cols == veclen()); in knnSearch()
216 assert(indices.rows >= queries.rows); in knnSearch()
217 assert(dists.rows >= queries.rows); in knnSearch()
222 for (size_t i = 0; i < queries.rows; i++) { in knnSearch()
224 findNeighbors(resultSet, queries[i], params); in knnSearch()
/OK3568_Linux_fs/kernel/lib/
H A Dinterval_tree_test.c25 static u32 *queries = NULL; variable
59 queries[i] = (prandom_u32_state(&rnd) >> 4) % max_endpoint; in init()
73 queries = kmalloc_array(nsearches, sizeof(int), GFP_KERNEL); in interval_tree_test_init()
74 if (!queries) { in interval_tree_test_init()
109 unsigned long start = search_all ? 0 : queries[j]; in interval_tree_test_init()
110 unsigned long last = search_all ? max_endpoint : queries[j]; in interval_tree_test_init()
123 kfree(queries); in interval_tree_test_init()
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/
H A Dflann.hpp218 …void knnSearch(const Mat& queries, Mat& indices, Mat& dists, int knn, const ::cvflann::SearchParam…
284 void GenericIndex<Distance>::knnSearch(const Mat& queries, Mat& indices, Mat& dists, int knn, const… in knnSearch() argument
286 CV_Assert(queries.type() == CvType<ElementType>::type()); in knnSearch()
287 CV_Assert(queries.isContinuous()); in knnSearch()
288 …flann::Matrix<ElementType> m_queries((ElementType*)queries.ptr<ElementType>(0), queries.rows, quer… in knnSearch()
386 …CV_DEPRECATED void knnSearch(const Mat& queries, Mat& indices, Mat& dists, int knn, const ::cvflan… in knnSearch() argument
388 CV_Assert(queries.type() == CvType<ElementType>::type()); in knnSearch()
389 CV_Assert(queries.isContinuous()); in knnSearch()
390 …flann::Matrix<ElementType> m_queries((ElementType*)queries.ptr<ElementType>(0), queries.rows, quer… in knnSearch()
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-dbs/influxdb/influxdb/
H A Dinfluxdb.conf66 # Whether queries should be logged before execution. Very useful for troubleshooting, but will
161 # The maximum number of concurrent queries allowed to be executing at one time. If a query is
164 # max-concurrent-queries = 0
167 # can help prevent run away queries. Setting the value to 0 disables the limit.
171 …# discover slow or resource intensive queries. Setting the value to 0 disables the slow query log…
172 # log-queries-after = "0s"
175 # the maximum point count unlimited. This will only be checked every second so queries will not
548 ### Controls how continuous queries are run within InfluxDB.
555 # Controls whether queries are logged when executed by the CQ service.
558 # Controls whether queries are logged to the self-monitoring data store.
[all …]
/OK3568_Linux_fs/external/xserver/glx/
H A Dsinglepix.c126 * The three queries above might fail if we're in a state where queries in __glXDisp_GetTexImage()
223 * The two queries above might fail if we're in a state where queries in GetSeparableFilter()
304 * The two queries above might fail if we're in a state where queries in GetConvolutionFilter()
376 * The one query above might fail if we're in a state where queries in GetHistogram()
508 * The one query above might fail if we're in a state where queries in GetColorTable()
H A Dsinglepixswap.c146 * The three queries above might fail if we're in a state where queries in __glXDispSwap_GetTexImage()
257 * The two queries above might fail if we're in a state where queries in GetSeparableFilter()
348 * The two queries above might fail if we're in a state where queries in GetConvolutionFilter()
430 * The one query above might fail if we're in a state where queries in GetHistogram()
579 * The one query above might fail if we're in a state where queries in GetColorTable()
/OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-support/dnsmasq/files/
H A DCVE-2023-28450.patch32 Send outbound DNS queries from, and listen for their replies on, the
39 #define TCP_MAX_QUERIES 100 /* Maximum number of queries per incoming TCP connection */
45 #define DNSSEC_WORK 50 /* Max number of queries to validate one question */
H A Ddnsmasq.conf21 # tell dnsmasq to filter out queries which the public DNS cannot
42 # By default, dnsmasq will send queries to any of the upstream
62 # Add local-only domains here, queries in these domains are answered
274 # If you want dnsmasq to detect attempts by Verisign to send queries
290 #log-queries
/OK3568_Linux_fs/buildroot/dl/qt5location/git/dist/
H A Dchanges-5.13.024 - GeoJSON returned in Nominatim queries is now converted into the corresponding
26 - GeoJSON returned in Nominatim queries is now converted into the corresponding
30 - Added departure time attribute to route queries.
/OK3568_Linux_fs/kernel/drivers/staging/gasket/
H A Dgasket.h76 /* Queries the kernel for the number of page tables supported by the device. */
80 * Queries the kernel for the maximum size of the page table. Only the size and
87 * Queries the kernel for the current simple page table size. Only the size and
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/doc/src/
H A Dmaps.qdoc147 …\li Queries the Plugin for geocoding translations and provides access to results via indexes in th…
150 \li Structured address for use in queries and results of geocoding.
209 class. For coordinate-to-address queries, the
221 \li Accepts queries and produces QGeoCodeReply objects.
240 \li Accepts queries and produces QGeoRouteReply objects.
/OK3568_Linux_fs/buildroot/package/ntp/
H A Dntpd.etc.conf6 # Allow only time queries, at a limited rate, sending KoD when in excess.
7 # Allow all local queries (IPv4, IPv6)
/OK3568_Linux_fs/buildroot/package/redis/
H A DConfig.in12 hashes, lists, sets, sorted sets with range queries,
14 queries and streams.
/OK3568_Linux_fs/buildroot/package/libspatialindex/
H A DConfig.in11 * Support for sophisticated spatial queries. Range, point
13 as parametric queries (defined by spatial constraints)
/OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/toastergui/
H A Dwidgets.py248 queries = None
251 if queries:
252 queries |= query
254 queries = query
257 search_queries &= queries
259 search_queries = queries
/OK3568_Linux_fs/kernel/Documentation/userspace-api/media/drivers/
H A Duvcvideo.rst64 A call to this ioctl allows applications to send queries to the UVC driver that
192 This ioctl queries a UVC XU control identified by its extension unit ID
195 There are a number of different queries available that closely
219 control. Exceptions are the UVC_GET_LEN and UVC_GET_INFO queries, for
/OK3568_Linux_fs/kernel/drivers/scsi/bfa/
H A Dbfa_defs_fcs.h52 * VF attributes returned in queries
234 * BFA port attribute returned in queries
309 * BFA vport attribute returned in queries
387 * FCS remote port attributes returned in queries
461 * FCS itnim attributes returned in queries
/OK3568_Linux_fs/buildroot/package/sqlite/
H A DConfig.in20 bool "Enable convenient access to meta-data about tables and queries"
23 enabled to acces meta-data about tables and queries (see
/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 Dconnector.h47 #define CN_KVP_VAL 0x1 /* queries from the kernel */
49 #define CN_VSS_VAL 0x1 /* queries from the kernel */
/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 Dconnector.h47 #define CN_KVP_VAL 0x1 /* queries from the kernel */
49 #define CN_VSS_VAL 0x1 /* queries from the kernel */
/OK3568_Linux_fs/kernel/include/uapi/linux/
H A Dconnector.h47 #define CN_KVP_VAL 0x1 /* queries from the kernel */
49 #define CN_VSS_VAL 0x1 /* queries from the kernel */

12345678910>>...17