Home
last modified time | relevance | path

Searched refs:Output (Results 1 – 25 of 503) sorted by relevance

12345678910>>...21

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/algorithm/string/detail/
H A Dfind_format.hpp34 OutputIteratorT Output, in find_format_copy_impl2() argument
52 Output = std::copy( ::boost::begin(Input), ::boost::end(Input), Output ); in find_format_copy_impl2()
53 return Output; in find_format_copy_impl2()
57 Output = std::copy( ::boost::begin(Input), ::boost::begin(M), Output ); in find_format_copy_impl2()
60Output = std::copy( ::boost::begin(M.format_result()), ::boost::end(M.format_result()), Output ); in find_format_copy_impl2()
62 Output = std::copy( M.end(), ::boost::end(Input), Output ); in find_format_copy_impl2()
64 return Output; in find_format_copy_impl2()
73 OutputIteratorT Output, in find_format_copy_impl() argument
80 Output, in find_format_copy_impl()
86 return std::copy( ::boost::begin(Input), ::boost::end(Input), Output ); in find_format_copy_impl()
[all …]
H A Dfind_format_all.hpp35 OutputIteratorT Output, in find_format_all_copy_impl2() argument
60 Output = std::copy( LastMatch, M.begin(), Output ); in find_format_all_copy_impl2()
62Output = std::copy( ::boost::begin(M.format_result()), ::boost::end(M.format_result()), Output ); in find_format_all_copy_impl2()
70 Output = std::copy( LastMatch, ::boost::end(Input), Output ); in find_format_all_copy_impl2()
72 return Output; in find_format_all_copy_impl2()
82 OutputIteratorT Output, in find_format_all_copy_impl() argument
90 Output, in find_format_all_copy_impl()
97 return std::copy( ::boost::begin(Input), ::boost::end(Input), Output ); in find_format_all_copy_impl()
131 InputT Output; in find_format_all_copy_impl2() local
137 … boost::algorithm::detail::insert( Output, ::boost::end(Output), LastMatch, M.begin() ); in find_format_all_copy_impl2()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/algorithm/string/
H A Derase.hpp51 OutputIteratorT Output, in erase_range_copy() argument
58 Output, in erase_range_copy()
123 OutputIteratorT Output, in erase_first_copy() argument
128 Output, in erase_first_copy()
191 OutputIteratorT Output, in ierase_first_copy() argument
197 Output, in ierase_first_copy()
261 OutputIteratorT Output, in erase_last_copy() argument
266 Output, in erase_last_copy()
329 OutputIteratorT Output, in ierase_last_copy() argument
335 Output, in ierase_last_copy()
[all …]
H A Dreplace.hpp57 OutputIteratorT Output, in replace_range_copy() argument
65 Output, in replace_range_copy()
136 OutputIteratorT Output, in replace_first_copy() argument
142 Output, in replace_first_copy()
211 OutputIteratorT Output, in ireplace_first_copy() argument
218 Output, in ireplace_first_copy()
289 OutputIteratorT Output, in replace_last_copy() argument
295 Output, in replace_last_copy()
364 OutputIteratorT Output, in ireplace_last_copy() argument
371 Output, in ireplace_last_copy()
[all …]
H A Dtrim.hpp62 OutputIteratorT Output, in trim_left_copy_if() argument
74 Output); in trim_left_copy_if()
76 return Output; in trim_left_copy_if()
170 OutputIteratorT Output, in trim_right_copy_if() argument
182 Output ); in trim_right_copy_if()
184 return Output; in trim_right_copy_if()
282 OutputIteratorT Output, in trim_copy_if() argument
299 Output in trim_copy_if()
302 return Output; in trim_copy_if()
H A Dcase_conv.hpp56 OutputIteratorT Output, in to_lower_copy() argument
61 Output, in to_lower_copy()
121 OutputIteratorT Output, in to_upper_copy() argument
126 Output, in to_upper_copy()
H A Dfind_format.hpp59 OutputIteratorT Output, in find_format_copy() argument
79 Output, in find_format_copy()
178 OutputIteratorT Output, in find_format_all_copy() argument
198 Output, in find_format_all_copy()
/OK3568_Linux_fs/buildroot/package/qt5/qt5base/
H A D0013-linuxfb-Use-triple-buffer-by-default.patch32 struct Output {
33 - Output() : backFb(0), flipped(false) { }
34 + Output() : backFb(0), flipPending(false) { }
47 void swapBuffers(Output *output);
48 + void waitForFlip(Output *output);
51 Output *output(int idx) { return &m_outputs[idx]; }
64 Output *output = static_cast<Output *>(user_data);
74 -void QLinuxFbDevice::swapBuffers(Output *output)
75 +void QLinuxFbDevice::waitForFlip(Output *output)
89 @@ -379,6 +385,27 @@ void QLinuxFbDevice::swapBuffers(Output *output)
[all …]
H A D0021-linuxfbdrm-Delay-setMode-to-swapBuffers.patch23 + void setMode(Output *output);
24 void swapBuffers(Output *output);
25 void waitForFlip(Output *output);
32 +void QLinuxFbDevice::setMode(Output *output)
34 - for (Output &output : m_outputs) {
59 @@ -394,7 +396,10 @@ void QLinuxFbDevice::swapBuffers(Output *output)
77 QLinuxFbDevice::Output *output(m_device->output(0));
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/gpio/
H A Dgpio-74xx-mmio.txt6 "ti,741g174": for 741G74 (1-bit Output),
8 "ti,7474" : for 7474 (2-bit Output),
10 "ti,74175" : for 74175 (4-bit Output),
12 "ti,74174" : for 74174 (6-bit Output),
14 "ti,74273" : for 74273 (8-bit Output),
16 "ti,7416374": for 7416374 (16-bit Output).
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/
H A Dbuffer.hpp93 typename Output,
95 typename TagOut = typename tag<Output>::type
185 template <typename Input, typename Output, typename Distance>
186 inline void buffer(Input const& geometry_in, Output& geometry_out, in buffer()
190 concepts::check<Output>(); in buffer()
208 template <typename Output, typename Input, typename Distance>
209 Output return_buffer(Input const& geometry, Distance const& distance, Distance const& chord_length … in return_buffer()
212 concepts::check<Output>(); in return_buffer()
214 Output geometry_out; in return_buffer()
/OK3568_Linux_fs/u-boot/tools/patman/
H A Dcros_subprocess.py271 def Output(self, stream, data): member in TestSubprocess.MyOperation
296 plist = Popen(['ps']).CommunicateFilter(oper.Output)
303 plist = Popen([cmd], shell=True).CommunicateFilter(oper.Output)
313 plist = Popen([cmd], shell=True).CommunicateFilter(oper.Output)
322 plist = Popen(cmd, shell=False).CommunicateFilter(oper.Output)
331 plist = Popen(cmd, shell=True).CommunicateFilter(oper.Output)
339 plist = Popen('pwd', shell=shell, cwd='/tmp').CommunicateFilter(oper.Output)
351 plist = Popen(cmd, shell=True, env=env).CommunicateFilter(oper.Output)
370 shell=True).CommunicateFilter(oper.Output)
383 plist = Popen(both_cmds, shell=True).CommunicateFilter(oper.Output)
[all …]
/OK3568_Linux_fs/yocto/poky/meta/classes/
H A Dlogging.bbclass10 # Output: logs console
20 # Output: logs
31 # Output: logs console
42 # Output: logs console
53 # Output: logs console
65 # Output: logs console
78 # Output: logs console
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/sound/
H A Dwm8731.txt21 * LOUT: Left Channel Line Output
22 * ROUT: Right Channel Line Output
23 * LHPOUT: Left Channel Headphone Output
24 * RHPOUT: Right Channel Headphone Output
/OK3568_Linux_fs/kernel/Documentation/hwmon/
H A Dir35221.rst65 in[2-3]_lcrit_alarm Output voltage critical low alarm
67 in[2-3]_crit_alarm Output voltage critical high alarm
71 in[2-3]_max_alarm Output voltage high alarm
73 in[2-3]_min_alarm Output voltage low alarm
82 power[2-3]_max Output power limit
83 power[2-3]_max_alarm Output power high alarm
H A Dmax16601.rst22 This driver supports the MAX16601 VR13.HC Dual-Output Voltage Regulator
55 in2_alarm Output voltage alarm.
96 curr12_crit_alarm Output current critical alarm.
98 curr12_max_alarm Output current high alarm.
129 curr21_crit_alarm Output current critical alarm.
131 curr21_max_alarm Output current high alarm.
141 power3_input Output power.
H A Dmax20751.rst66 in2_min_alarm Output voltage low alarm.
67 in2_lcrit_alarm Output voltage critical low alarm.
68 in2_min_alarm Output voltage low alarm.
69 in2_max_alarm Output voltage high alarm.
82 power1_input Output power.
H A Dinspur-ipsps1.rst50 in2_lcrit_alarm Output voltage critical low alarm
52 in2_max_alarm Output voltage high alarm
54 in2_min_alarm Output voltage low alarm
60 power2_max_alarm Output power high alarm
61 power2_max Output power limit
H A Dir38064.rst50 in2_lcrit_alarm Output voltage critical low alarm
52 in2_crit_alarm Output voltage critical high alarm
54 in2_max_alarm Output voltage high alarm
56 in2_min_alarm Output voltage low alarm
H A Dmax20730.rst68 curr1_crit_alarm RO Output current critical alarm
69 curr1_input RO Output current
74 in2_alarm RO Output voltage alarm
75 in2_input RO Output voltage
H A Dmax31785.rst45 in[1-6]_crit_alarm Output voltage critical high alarm
49 in[1-6]_lcrit_alarm Output voltage critical low alarm
51 in[1-6]_max_alarm Output voltage high alarm
53 in[1-6]_min_alarm Output voltage low alarm
H A Dlineage-pem.rst61 in1_input Output voltage (mV)
62 in1_min_alarm Output undervoltage alarm
63 in1_max_alarm Output overvoltage alarm
64 in1_crit Output voltage critical alarm
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/pxaregs/pxaregs-1.14/
H A Dusb.patch9 +{ "UP2OCR", 0x40600020, 0, 0xffffffff, 'x', "USB Port 2 Output Control Register" },
10 +{ "UP2OCR_SEOS", 0x40600020, 24, 7, 'x', "USB Port 2 Single-Ended Output Select" },
12 +{ "UP2OCR_HXS", 0x40600020, 16, 1, 'x', "USB Port 2 Tranceiver Output Select" },
/OK3568_Linux_fs/yocto/poky/meta/recipes-extended/pbzip2/pbzip2/
H A D0001-pbzip2-Fix-invalid-suffix-on-literal-C-11-warning.patch33 - fprintf(stderr, " Output Size: %"PRIuMAX" bytes\n", (uintmax_t)CompressedSize);
34 + fprintf(stderr, " Output Size: %" PRIuMAX " bytes\n", (uintmax_t)CompressedSize);
42 - fprintf(stderr, " Output Size: %"PRIuMAX" bytes\n", (uintmax_t)CompressedSize);
43 + fprintf(stderr, " Output Size: %" PRIuMAX " bytes\n", (uintmax_t)CompressedSize);
/OK3568_Linux_fs/kernel/sound/soc/img/
H A DKconfig16 tristate "Imagination I2S Output Device Driver"
24 tristate "Imagination Parallel Output Device Driver"
40 tristate "Imagination SPDIF Output Device Driver"

12345678910>>...21