Home
last modified time | relevance | path

Searched full:which (Results 1 – 25 of 13115) sorted by relevance

12345678910>>...525

/OK3568_Linux_fs/kernel/drivers/input/sensors/accel/
H A DKconfig19 select the proper drivers which depend on this option.
26 select the proper drivers which depend on this option.
33 select the proper drivers which depend on this option.
40 select the proper drivers which depend on this option.
46 select the proper drivers which depend on this option.
52 select the proper drivers which depend on this option.
59 select the proper drivers which depend on this option.
66 select the proper drivers which depend on this option.
72 select the proper drivers which depend on this option.
78 select the proper drivers which depend on this option.
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/strategies/
H A Dside_info.hpp48 template <int Which>
51 sides[Which].first = first; in set()
52 sides[Which].second = second; in set()
55 template <int Which, int Index>
60 sides[Which].first = 0; in correct_to_zero()
64 sides[Which].second = 0; in correct_to_zero()
68 template <int Which, int Index>
71 return Index == 0 ? sides[Which].first : sides[Which].second; in get()
77 template <int Which>
80 return sides[Which].first * sides[Which].second == 1; in same()
[all …]
/OK3568_Linux_fs/kernel/drivers/staging/greybus/
H A Dgpio.c60 static int gb_gpio_activate_operation(struct gb_gpio_controller *ggc, u8 which) in gb_gpio_activate_operation() argument
70 request.which = which; in gb_gpio_activate_operation()
78 ggc->lines[which].active = true; in gb_gpio_activate_operation()
84 u8 which) in gb_gpio_deactivate_operation() argument
91 request.which = which; in gb_gpio_deactivate_operation()
95 dev_err(dev, "failed to deactivate gpio %u\n", which); in gb_gpio_deactivate_operation()
99 ggc->lines[which].active = false; in gb_gpio_deactivate_operation()
106 u8 which) in gb_gpio_get_direction_operation() argument
114 request.which = which; in gb_gpio_get_direction_operation()
124 which, direction); in gb_gpio_get_direction_operation()
[all …]
H A Dpwm.c42 u8 which) in gb_pwm_activate_operation() argument
48 if (which > pwmc->pwm_max) in gb_pwm_activate_operation()
51 request.which = which; in gb_pwm_activate_operation()
67 u8 which) in gb_pwm_deactivate_operation() argument
73 if (which > pwmc->pwm_max) in gb_pwm_deactivate_operation()
76 request.which = which; in gb_pwm_deactivate_operation()
92 u8 which, u32 duty, u32 period) in gb_pwm_config_operation() argument
98 if (which > pwmc->pwm_max) in gb_pwm_config_operation()
101 request.which = which; in gb_pwm_config_operation()
119 u8 which, u8 polarity) in gb_pwm_set_polarity_operation() argument
[all …]
/OK3568_Linux_fs/yocto/meta-qt5/recipes-qt/qt5/qtwebengine/
H A D0001-Force-host-toolchain-configuration.patch51 -" cc = \"$$which($$QMAKE_CC)\" " \
52 -" cxx = \"$$which($$QMAKE_CXX)\" " \
53 -" ld = \"$$which($$QMAKE_LINK)\" " \
54 +" cc = \"$$which($$CC_host)\" " \
55 +" cxx = \"$$which($$CXX_host)\" " \
56 +" ld = \"$$which($$CXX_host)\" " \
57 " ar = \"$$which(ar)\" " \
58 " nm = \"$$which(nm)\" " \
64 -" cc = \"$$which($$QMAKE_CC)\" " \
65 -" cxx = \"$$which($$QMAKE_CXX)\" " \
[all …]
/OK3568_Linux_fs/buildroot/toolchain/toolchain-external/toolchain-external-bootlin/
H A DConfig.in.options74 glibc C library. This is a bleeding-edge version, which
99 glibc C library. This is a stable version, which means it
122 musl C library. This is a bleeding-edge version, which
145 musl C library. This is a stable version, which means it is
167 uclibc C library. This is a bleeding-edge version, which
190 uclibc C library. This is a stable version, which means it
215 glibc C library. This is a bleeding-edge version, which
240 glibc C library. This is a stable version, which means it
263 uclibc C library. This is a bleeding-edge version, which
286 uclibc C library. This is a stable version, which means it
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/iostreams/
H A Dclose.hpp41 void close(T& t, BOOST_IOS::openmode which);
44 void close(T& t, Sink& snk, BOOST_IOS::openmode which);
93 void close(T& t, BOOST_IOS::openmode which) in close() argument
96 BOOST_ASSERT(which == BOOST_IOS::in || which == BOOST_IOS::out); in close()
98 if (which == (BOOST_IOS::in | BOOST_IOS::out)) { in close()
103 detail::close_impl<T>::close(detail::unwrap(t), which); in close()
107 void close(T& t, Sink& snk, BOOST_IOS::openmode which) in close() argument
110 BOOST_ASSERT(which == BOOST_IOS::in || which == BOOST_IOS::out); in close()
112 if (which == (BOOST_IOS::in | BOOST_IOS::out)) { in close()
117 detail::close_impl<T>::close(detail::unwrap(t), snk, which); in close()
[all …]
/OK3568_Linux_fs/kernel/Documentation/process/
H A D4.Coding.rst8 code. It is the code which will be examined by other developers and merged
9 (or not) into the mainline tree. So it is the quality of this code which
13 number of ways in which kernel developers can go wrong. Then the focus
14 will shift toward doing things right and the tools which can help in that
28 which does not meet the coding style guidelines. The presence of that code
46 The other trap is to assume that code which is already in the kernel is
56 The coding style document also should not be read as an absolute law which
58 style (a line which becomes far less readable if split to fit within the
81 At a simple level, consider a function which has an argument which is
84 provides. By that time, though, chances are good that the code which
[all …]
H A D1.Intro.rst27 :ref:`development_coding` is about the coding process; several pitfalls which
30 which can help to ensure that kernel patches are correct.
56 kernel has evolved into a best-of-breed operating system component which
75 offer this kind of openness, which is a characteristic of the free software
84 evolved its own distinct ways of operating which allow it to function
132 - Code which has been merged into the mainline kernel is available to all
133 Linux users. It will automatically be present on all distributions which
148 Code which is in the mainline, instead, does not require this work as the
151 which has been merged into the mainline has significantly lower
154 - Beyond that, code which is in the kernel will often be improved by other
[all …]
H A Dlicense-rules.rst19 which is required to be compatible with the GPL-2.0::
32 The User-space API (UAPI) header files, which describe the interface of
35 which does not extend the GPL requirements to any software which uses it to
37 into any source files which create an executable running on the Linux
43 tools which are used in the context of license compliance.
48 under which the content of the file is contributed. SPDX license
64 possible line in a file which can contain a comment. For the majority
65 of files this is the first line, except for scripts which require the
84 appropriate comment mechanism which the tool accepts shall be used. This
88 there are still older assembler tools which cannot handle C++ style
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/arm/bifrost/csf/
H A Dmali_kbase_csf_kcpu.h40 * struct kbase_kcpu_command_import_info - Structure which holds information
50 * struct kbase_kcpu_command_fence_info - Structure which holds information about the
69 * struct kbase_kcpu_command_cqs_set_info - Structure which holds information
72 * @objs: Array of structures which define CQS objects to be used by
82 * struct kbase_kcpu_command_cqs_wait_info - Structure which holds information
85 * @objs: Array of structures which define CQS objects to be used by
102 * struct kbase_kcpu_command_cqs_set_operation_info - Structure which holds information
105 * @objs: Array of structures which define CQS timeline objects to be used by
115 * struct kbase_kcpu_command_cqs_wait_operation_info - Structure which holds information
118 * @objs: Array of structures which define CQS timeline objects to be used by
[all …]
H A Dmali_kbase_csf.h59 * @kctx: Pointer to the kbase context which is being initialized.
81 * @kctx: Pointer to the kbase context which is being terminated.
83 * This function terminates any remaining CSGs and CSs which weren't destroyed
91 * @kctx: Pointer to the kbase context within which the
93 * @reg: Pointer to the structure which contains details of the
106 * @kctx: Pointer to the kbase context within which the
108 * @reg: Pointer to the structure which contains details of the
121 * @kctx: Pointer to the kbase context within which the
123 * @term: Pointer to the structure which identifies which
133 * @kctx: Address of the kbase context within which the queue was created.
[all …]
/OK3568_Linux_fs/kernel/tools/perf/pmu-events/arch/arm64/arm/cortex-a76-n1/
H A Dcache.json3 …n": "L1 instruction cache refill. This event counts any instruction fetch which misses in the cach…
15 …re operation or page table walk access which causes data to be read from outside the L1, including…
21 …store operation or page table walk access which looks up in the L1 data cache. In particular, any …
33 …or Level 0 Macro-op cache access. This event counts any instruction fetch which accesses the L1 in…
45 …"PublicDescription": "L2 data cache access. This event counts any transaction from L1 which looks …
51 …L2 data cache refill. This event counts any cacheable transaction from L1 which causes data to be …
57which return data, regardless of whether they cause an invalidation. Invalidations from the L2 whi…
63 …line write into the L2 cache which does not cause a linefill, including write-backs from L1 to L2 …
69 …: "Level 1 data TLB access. This event counts any load or store operation which accesses the data …
75 … "Level 1 instruction TLB access. This event counts any instruction fetch which accesses the instr…
[all …]
/OK3568_Linux_fs/kernel/tools/testing/kunit/test_data/
H A Dtest_is_test_passed-no_tests_run.log39 Using a channel type which is configured out of UML
41 Using a channel type which is configured out of UML
43 Using a channel type which is configured out of UML
45 Using a channel type which is configured out of UML
47 Using a channel type which is configured out of UML
49 Using a channel type which is configured out of UML
51 Using a channel type which is configured out of UML
53 Using a channel type which is configured out of UML
55 Using a channel type which is configured out of UML
57 Using a channel type which is configured out of UML
[all …]
H A Dtest_output_isolated_correctly.log61 Using a channel type which is configured out of UML
63 Using a channel type which is configured out of UML
65 Using a channel type which is configured out of UML
67 Using a channel type which is configured out of UML
69 Using a channel type which is configured out of UML
71 Using a channel type which is configured out of UML
73 Using a channel type which is configured out of UML
75 Using a channel type which is configured out of UML
77 Using a channel type which is configured out of UML
79 Using a channel type which is configured out of UML
[all …]
/OK3568_Linux_fs/external/xserver/xkb/
H A DXKBAlloc.c44 XkbAllocCompatMap(XkbDescPtr xkb, unsigned which, unsigned nSI) in XkbAllocCompatMap() argument
92 XkbFreeCompatMap(XkbDescPtr xkb, unsigned which, Bool freeMap) in XkbFreeCompatMap() argument
100 which = XkbAllCompatMask; in XkbFreeCompatMap()
101 if (which & XkbGroupCompatMask) in XkbFreeCompatMap()
104 if (which & XkbSymInterpMask) { in XkbFreeCompatMap()
120 XkbAllocNames(XkbDescPtr xkb, unsigned which, int nTotalRG, int nTotalAliases) in XkbAllocNames() argument
132 if ((which & XkbKTLevelNamesMask) && (xkb->map != NULL) && in XkbAllocNames()
146 if ((which & XkbKeyNamesMask) && (names->keys == NULL)) { in XkbAllocNames()
155 if ((which & XkbKeyAliasesMask) && (nTotalAliases > 0)) { in XkbAllocNames()
180 if ((which & XkbRGNamesMask) && (nTotalRG > 0)) { in XkbAllocNames()
[all …]
/OK3568_Linux_fs/kernel/drivers/mtd/chips/
H A DKconfig22 This option enables JEDEC-style probing of flash chips which are not
24 CFI-targeted flash drivers for any chips which are identified which
40 configuration options which allow you to do so.
49 This option defines the way in which the CPU attempts to arrange
51 'NO', which is the default when CONFIG_MTD_CFI_ADV_OPTIONS isn't
79 some other configuration options which would allow you to reduce
82 which are supported by the current code will be enabled.
88 If you wish to support CFI devices on a physical bus which is
95 If you wish to support CFI devices on a physical bus which is
102 If you wish to support CFI devices on a physical bus which is
[all …]
/OK3568_Linux_fs/kernel/net/bridge/netfilter/
H A DKconfig98 This option adds the among match, which allows matching the MAC source
107 This option adds the ARP match, which allows ARP and RARP header field
115 This option adds the IP match, which allows basic IP header field
124 This option adds the IP6 match, which allows basic IPV6 header field
132 This option adds the limit match, which allows you to control
133 the rate at which a rule can be matched. This match is the
142 This option adds the mark match, which allows matching frames based on
152 This option adds the packet type match, which allows matching on the
162 This option adds the Spanning Tree Protocol match, which
170 This option adds the 802.1Q vlan match, which allows the filtering of
[all …]
/OK3568_Linux_fs/kernel/net/netfilter/ipset/
H A DKconfig32 This option adds the bitmap:ip set type support, by which one
41 This option adds the bitmap:ip,mac set type support, by which one
50 This option adds the bitmap:port set type support, by which one
59 This option adds the hash:ip set type support, by which one
69 This option adds the hash:ip,mark set type support, by which one
78 This option adds the hash:ip,port set type support, by which one
87 This option adds the hash:ip,port,ip set type support, by which
97 This option adds the hash:ip,port,net set type support, by which
107 This option adds the hash:ip,mac set type support, by which
116 This option adds the hash:mac set type support, by which
[all …]
/OK3568_Linux_fs/kernel/tools/testing/selftests/timers/
H A Dposix_timers.c77 static int check_itimer(int which) in check_itimer() argument
87 if (which == ITIMER_VIRTUAL) in check_itimer()
89 else if (which == ITIMER_PROF) in check_itimer()
91 else if (which == ITIMER_REAL) in check_itimer()
98 if (which == ITIMER_VIRTUAL) in check_itimer()
100 else if (which == ITIMER_PROF) in check_itimer()
102 else if (which == ITIMER_REAL) in check_itimer()
111 err = setitimer(which, &val, NULL); in check_itimer()
117 if (which == ITIMER_VIRTUAL) in check_itimer()
119 else if (which == ITIMER_PROF) in check_itimer()
[all …]
/OK3568_Linux_fs/kernel/Documentation/x86/
H A Dmds.rst17 MSBDS leaks Store Buffer Entries which can be speculatively forwarded to a
20 memory address, which can be exploited under certain conditions. Store
23 buffer is repartitioned which can expose data from one thread to the other.
26 L1 miss situations and to hold data which is returned or sent in response
29 deallocated it can retain the stale data of the preceding operations which
30 can then be forwarded to a faulting or assisting load operation, which can
37 contain stale data from a previous operation which can be forwarded to
38 faulting or assisting loads under certain conditions, which again can be
56 - to have a disclosure gadget which exposes the speculatively accessed
59 - to control the pointer through which the disclosure gadget exposes the
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/iostreams/detail/adapter/
H A Dconcept_adapter.hpp88 BOOST_IOS::openmode which ) in seek() argument
90 return this->seek( off, way, which, in seek()
96 BOOST_IOS::openmode which, Device* dev ) in seek() argument
97 { return any_impl::seek(t_, dev, off, way, which); } in seek()
99 void close(BOOST_IOS::openmode which) in close() argument
100 { this->close(which, (basic_null_device<char_type, seekable>*) 0); } in close()
103 void close(BOOST_IOS::openmode which, Device* dev) in close() argument
104 { any_impl::close(t_, dev, which); } in close()
132 BOOST_IOS::seekdir way, BOOST_IOS::openmode which ) in seek()
135 return seek(dev, off, way, which, category()); in seek()
[all …]
/OK3568_Linux_fs/kernel/Documentation/filesystems/
H A Dext2.rst48 resuid=n The user ID which may use the reserved blocks.
49 resgid=n The group ID which may use the reserved blocks.
89 which is decided when the filesystem is created. Smaller blocks mean
101 bitmap and the inode usage bitmap which show which blocks and inodes
108 in the same block group as the inode which contains them.
130 and which OS created it.
145 structure contains pointers to the filesystem blocks which contain the
152 There are some reserved fields which are currently unused in the inode
153 structure and several which are overloaded. One field is reserved for the
157 by the HURD to reference the inode of a program which will be used to
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-extended/which/
H A Dwhich_2.21.bb2 DESCRIPTION = "Which is a utility that prints out the full path of the \
7 HOMEPAGE = "https://carlowood.github.io/which/"
11 file://which.c;beginline=1;endline=17;md5=a9963693af2272e7a8df6f231164e7a2"
20 SRC_URI = "${GNU_MIRROR}/which/which-${PV}.tar.gz \
31 ALTERNATIVE:${PN} = "which"
34 ALTERNATIVE:${PN}-doc = "which.1"
35 ALTERNATIVE_LINK_NAME[which.1] = "${mandir}/man1/which.1"
/OK3568_Linux_fs/kernel/Documentation/admin-guide/
H A Dcgroup-v2.rst112 although there are utility controllers which serve purposes other than
125 processes which belong to the cgroups consisting the inclusive
144 controllers which support v2 and are not bound to a v1 hierarchy are
146 Controllers which are not in active use in the v2 hierarchy can be
210 Initially, only the root cgroup exists to which all processes belong.
217 "cgroup.procs". When read, it lists the PIDs of all processes which
235 A cgroup which doesn't have any children or live processes can be
236 destroyed by removing the directory. Note that a cgroup which doesn't
265 process belong to the same cgroup, which also serves as the resource
266 domain to host resource consumptions which are not specific to a
[all …]

12345678910>>...525