Home
last modified time | relevance | path

Searched refs:which (Results 1 – 25 of 4948) sorted by relevance

12345678910>>...198

/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 …]
H A Dseek.hpp44 BOOST_IOS::openmode which = BOOST_IOS::in | BOOST_IOS::out ) in seek() argument
47 return seek_device_impl<T>::seek(detail::unwrap(t), off, way, which); in seek()
53 BOOST_IOS::openmode which = BOOST_IOS::in | BOOST_IOS::out ) in seek() argument
56 return seek_filter_impl<T>::seek(detail::unwrap(t), dev, off, way, which); in seek()
82 BOOST_IOS::openmode which ) in seek()
90 return t.rdbuf()->pubseekoff(off, way, which); in seek()
109 BOOST_IOS::openmode which ) in seek()
117 return t.BOOST_IOSTREAMS_PUBSEEKOFF(off, way, which); in seek()
127 BOOST_IOS::openmode which ) in seek()
128 { return t.seek(off, way, which); } in seek()
[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/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/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/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/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 …]
H A Dmode_adapter.hpp51 BOOST_IOS::openmode which =
54 void close(BOOST_IOS::openmode which);
72 BOOST_IOS::seekdir way, BOOST_IOS::openmode which ) in seek() argument
73 { return iostreams::seek(t_, dev, off, way, which); } in seek()
80 void close(Device& dev, BOOST_IOS::openmode which) in close() argument
81 { iostreams::close(t_, dev, which); } in close()
104 (stream_offset off, BOOST_IOS::seekdir way, BOOST_IOS::openmode which) in seek() argument
105 { return boost::iostreams::seek(t_, off, way, which); } in seek()
112 void mode_adapter<Mode, T>::close(BOOST_IOS::openmode which) in close() argument
113 { iostreams::close(t_, which); } in close()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/iostreams/detail/
H A Dfunctional.hpp36 device_close_operation(T& t, BOOST_IOS::openmode which) in device_close_operation() argument
37 : t_(t), which_(which) in device_close_operation()
50 filter_close_operation(T& t, Sink& snk, BOOST_IOS::openmode which) in filter_close_operation() argument
51 : t_(t), snk_(snk), which_(which) in filter_close_operation()
63 call_close(T& t, BOOST_IOS::openmode which) in call_close() argument
64 { return device_close_operation<T>(t, which); } in call_close()
68 call_close(T& t, Sink& snk, BOOST_IOS::openmode which) in call_close() argument
69 { return filter_close_operation<T, Sink>(t, snk, which); } in call_close()
113 member_close_operation(T& t, BOOST_IOS::openmode which) in member_close_operation() argument
114 : t_(t), which_(which) in member_close_operation()
[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/kernel/drivers/media/pci/ttpci/
H A Dav7110_ipack.c18 p->which = 0; in av7110_ipack_reset()
228 p->which = 0; in av7110_ipack_instant_repack()
286 if (p->mpeg == 1 && p->which < 2000) { in av7110_ipack_instant_repack()
293 while (!p->which && c < count && in av7110_ipack_instant_repack()
305 if ((p->check & 0xc0) == 0x40 && !p->which) { in av7110_ipack_instant_repack()
312 p->which = 1; in av7110_ipack_instant_repack()
320 p->which = 2; in av7110_ipack_instant_repack()
325 if (p->which == 1) { in av7110_ipack_instant_repack()
331 p->which = 2; in av7110_ipack_instant_repack()
339 p->which = 3; in av7110_ipack_instant_repack()
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-extended/which/
H A Dwhich_2.21.bb7 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/arch/alpha/oprofile/
H A Dop_model_ev67.c143 ev67_handle_interrupt(unsigned long which, struct pt_regs *regs, in ev67_handle_interrupt() argument
197 oprofile_add_pc(regs->pc, kern, which); in ev67_handle_interrupt()
199 op_add_pm(regs->pc, kern, which, in ev67_handle_interrupt()
206 op_add_pm(pmpc, kern, which, ctr, in ev67_handle_interrupt()
213 op_add_pm(pmpc, kern, which, ctr, PM_DTB_MISS); in ev67_handle_interrupt()
216 op_add_pm(pmpc, kern, which, ctr, PM_UNALIGNED); in ev67_handle_interrupt()
236 op_add_pm(pmpc, kern, which, ctr, PM_MISPREDICT); in ev67_handle_interrupt()
240 oprofile_add_pc(pmpc, kern, which); in ev67_handle_interrupt()
244 op_add_pm(pmpc, kern, which, ctr, PM_STALLED); in ev67_handle_interrupt()
250 op_add_pm(pmpc, kern, which, ctr, PM_TAKEN); in ev67_handle_interrupt()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/iostreams/detail/streambuf/
H A Ddirect_streambuf.hpp88 BOOST_IOS::openmode which );
89 pos_type seekpos(pos_type sp, BOOST_IOS::openmode which);
92 BOOST_IOS::openmode which );
190 (off_type off, BOOST_IOS::seekdir way, BOOST_IOS::openmode which) in seekoff() argument
191 { return seek_impl(off, way, which); } in seekoff()
196 (pos_type sp, BOOST_IOS::openmode which) in seekpos() argument
198 return seek_impl(position_to_offset(sp), BOOST_IOS::beg, which); in seekpos()
202 void direct_streambuf<T, Tr>::close_impl(BOOST_IOS::openmode which) in close_impl() argument
204 if (which == BOOST_IOS::in && ibeg_ != 0) { in close_impl()
208 if (which == BOOST_IOS::out && obeg_ != 0) { in close_impl()
[all …]
H A Dindirect_streambuf.hpp91 BOOST_IOS::openmode which );
92 pos_type seekpos(pos_type sp, BOOST_IOS::openmode which);
121 BOOST_IOS::openmode which );
330 (off_type off, BOOST_IOS::seekdir way, BOOST_IOS::openmode which) in seekoff() argument
331 { return seek_impl(off, way, which); } in seekoff()
336 (pos_type sp, BOOST_IOS::openmode which) in seekpos() argument
338 return seek_impl(position_to_offset(sp), BOOST_IOS::beg, which); in seekpos()
344 (stream_offset off, BOOST_IOS::seekdir way, BOOST_IOS::openmode which) in seek_impl() argument
346 if ( gptr() != 0 && way == BOOST_IOS::cur && which == BOOST_IOS::in && in seek_impl()
361 if ((which & both) == both) in seek_impl()
[all …]
/OK3568_Linux_fs/kernel/include/linux/ceph/
H A Dosd_client.h411 unsigned int which, u16 opcode, u32 flags);
414 unsigned int which,
420 unsigned int which, u16 opcode,
424 unsigned int which, u64 length);
426 unsigned int which, u64 offset_inc);
430 unsigned int which);
433 unsigned int which,
438 unsigned int which,
442 unsigned int which,
447 unsigned int which,
[all …]
/OK3568_Linux_fs/kernel/arch/alpha/kernel/
H A Dsys_marvel.c189 io7_redirect_one_lsi(struct io7 *io7, unsigned int which, unsigned int where) in io7_redirect_one_lsi() argument
196 val = io7->csrs->PO7_LSI_CTL[which].csr; in io7_redirect_one_lsi()
200 io7->csrs->PO7_LSI_CTL[which].csr = val; in io7_redirect_one_lsi()
202 io7->csrs->PO7_LSI_CTL[which].csr; in io7_redirect_one_lsi()
206 io7_redirect_one_msi(struct io7 *io7, unsigned int which, unsigned int where) in io7_redirect_one_msi() argument
213 val = io7->csrs->PO7_MSI_CTL[which].csr; in io7_redirect_one_msi()
217 io7->csrs->PO7_MSI_CTL[which].csr = val; in io7_redirect_one_msi()
219 io7->csrs->PO7_MSI_CTL[which].csr; in io7_redirect_one_msi()
223 init_one_io7_lsi(struct io7 *io7, unsigned int which, unsigned int where) in init_one_io7_lsi() argument
228 io7->csrs->PO7_LSI_CTL[which].csr = ((unsigned long)where << 14); in init_one_io7_lsi()
[all …]
/OK3568_Linux_fs/kernel/drivers/staging/media/rkisp1/
H A Drkisp1-isp.c212 unsigned int pad, u32 which) in rkisp1_isp_get_pad_fmt() argument
214 if (which == V4L2_SUBDEV_FORMAT_TRY) in rkisp1_isp_get_pad_fmt()
223 unsigned int pad, u32 which) in rkisp1_isp_get_pad_crop() argument
225 if (which == V4L2_SUBDEV_FORMAT_TRY) in rkisp1_isp_get_pad_crop()
648 unsigned int which) in rkisp1_isp_set_src_fmt() argument
655 RKISP1_ISP_PAD_SOURCE_VIDEO, which); in rkisp1_isp_set_src_fmt()
657 RKISP1_ISP_PAD_SOURCE_VIDEO, which); in rkisp1_isp_set_src_fmt()
665 if (which == V4L2_SUBDEV_FORMAT_ACTIVE) in rkisp1_isp_set_src_fmt()
688 struct v4l2_rect *r, unsigned int which) in rkisp1_isp_set_src_crop() argument
696 which); in rkisp1_isp_set_src_crop()
[all …]
/OK3568_Linux_fs/buildroot/support/dependencies/
H A Ddependencies.sh61 if ! which $prog > /dev/null ; then
78 MAKE=$(which make 2> /dev/null)
99 COMPILER=$(which $HOSTCC_NOCCACHE 2> /dev/null)
101 COMPILER=$(which cc 2> /dev/null)
125 CXXCOMPILER=$(which $HOSTCXX_NOCCACHE 2> /dev/null)
127 CXXCOMPILER=$(which c++ 2> /dev/null)
167 if ! which $prog > /dev/null ; then
201 if ! which locale > /dev/null ; then
/OK3568_Linux_fs/yocto/meta-qt5/recipes-qt/qt5/qtpdf/
H A D0002-gn.pro-do-not-try-to-statically-link-stdc.patch19 --cc \"$$which($$CC_host)\" --cxx \"$$which($$CXX_host)\" \
20 - --ld \"$$which($$CXX_host)\" --ar \"$$which(ar)\"
21 + --ld \"$$which($$CXX_host)\" --ar \"$$which(ar)\" \
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/proto/detail/preprocessed/
H A Dor_n.hpp12 typedef G1 which; typedef
18 typedef G0 which; typedef
31 typedef G0 which; typedef
44 typedef G0 which; typedef
57 typedef G0 which; typedef
70 typedef G0 which; typedef
83 typedef G0 which; typedef
96 typedef G0 which; typedef
109 typedef G0 which; typedef
122 typedef G0 which; typedef
/OK3568_Linux_fs/kernel/include/linux/
H A Dskmsg.h166 #define sk_msg_iter_prev(msg, which) \ argument
167 sk_msg_iter_var_prev(msg->sg.which)
169 #define sk_msg_iter_next(msg, which) \ argument
170 sk_msg_iter_var_next(msg->sg.which)
185 int which, u32 size) in sk_msg_xfer() argument
187 dst->sg.data[which] = src->sg.data[which]; in sk_msg_xfer()
188 dst->sg.data[which].length = size; in sk_msg_xfer()
191 src->sg.data[which].length -= size; in sk_msg_xfer()
192 src->sg.data[which].offset += size; in sk_msg_xfer()
211 static inline struct scatterlist *sk_msg_elem(struct sk_msg *msg, int which) in sk_msg_elem() argument
[all …]

12345678910>>...198