Home
last modified time | relevance | path

Searched refs:output (Results 201 – 225 of 6070) sorted by relevance

12345678910>>...243

/openbmc/qemu/.gitlab-ci.d/custom-runners/
H A Dubuntu-22.04-aarch64.yml22 - make --output-sync -j`nproc --ignore=40`
24 - make --output-sync -j`nproc --ignore=40` check
45 - make --output-sync -j`nproc --ignore=40`
46 - make --output-sync -j`nproc --ignore=40` check
67 - make --output-sync -j`nproc --ignore=40`
68 - make --output-sync -j`nproc --ignore=40` check
86 - make --output-sync -j`nproc --ignore=40`
87 - make --output-sync -j`nproc --ignore=40` check
108 - make --output-sync -j`nproc --ignore=40`
129 - make --output-sync -j`nproc --ignore=40`
[all …]
/openbmc/linux/Documentation/devicetree/bindings/display/bridge/
H A Dthine,thc63lvd1024.yaml15 streams to parallel data outputs. The chip supports single/dual input/output
19 Single or dual operation mode, output data mapping and DDR output modes are
30 The device can operate in single or dual input and output modes.
37 When operating in single output mode all pixels are output from the first
38 CMOS/TTL port and port@3 shall not contain any endpoint. In dual output
39 mode pixels are output from both CMOS/TTL ports and both port@2 and
53 description: First digital CMOS/TTL parallel output
57 description: Second digital CMOS/TTL parallel output
73 Power supply for the TTL output, TTL CLOCKOUT signal, LVDS input, PLL and
/openbmc/openbmc/poky/scripts/
H A Dverify-bashisms51 output = e.output.replace(fn.name, function)
52 if not output or not output.startswith('possible bashism'):
58 [' ' + x for x in output.splitlines()])
62 output = BASHISM_WARNING.split(output)[1:]
71 for message, source in zip(output[0::2], output[1::2]):
/openbmc/qemu/hw/input/
H A Dads7846.c30 int output; member
77 s->output = s->input[(value >> 4) & 7]; in ads7846_transfer()
82 case 1: s->output += s->noise ^ 2; break; in ads7846_transfer()
83 case 3: s->output += s->noise ^ 0; break; in ads7846_transfer()
84 case 4: s->output += s->noise ^ 7; break; in ads7846_transfer()
85 case 5: s->output += s->noise ^ 5; break; in ads7846_transfer()
89 s->output >>= 4; /* 8 bits instead of 12 */ in ads7846_transfer()
96 return s->output; in ads7846_transfer()
138 VMSTATE_INT32(output, ADS7846State),
/openbmc/linux/Documentation/hwmon/
H A Dbpa-rs600.rst37 curr2_input Measured output current
38 curr2_max Maximum output current
53 in2_input Measured output voltage
54 in2_max Maximum output voltage
56 in2_min Maximum output voltage
65 power2_input Measured output power
66 power2_max Maximum output power
72 temp2_input Measured temperature around output connector
H A Dlt7182s.rst51 curr[3-4]_input Measured output current
52 curr[3-4]_highest Highest measured output current
53 curr[3-4]_max Maximum output current
73 in[3-4|6-7]_input Measured output voltage
74 in[3-4|6-7]_highest Highest measured output voltage
75 in[3-4|6-7]_lcrit Critical minimum output voltage
77 in[3-4|6-7]_min Minimum output voltage
79 in[3-4|6-7]_max Maximum output voltage
81 in[3-4|6-7]_crit Critical maximum output voltage
85 power[1-2]_input Measured output power
/openbmc/linux/drivers/media/platform/renesas/vsp1/
H A Dvsp1_uds.c106 return (input - 1) * 4096 / (output - 1); in uds_compute_ratio()
266 const struct v4l2_mbus_framefmt *output; in uds_configure_stream() local
277 hscale = uds_compute_ratio(input->width, output->width); in uds_configure_stream()
278 vscale = uds_compute_ratio(input->height, output->height); in uds_configure_stream()
315 const struct v4l2_mbus_framefmt *output; in uds_configure_partition() local
330 (output->height in uds_configure_partition()
338 const struct v4l2_mbus_framefmt *output; in uds_max_width() local
346 hscale = output->width / input->width; in uds_max_width()
377 const struct v4l2_mbus_framefmt *output; in uds_partition() local
390 / output->width; in uds_partition()
[all …]
/openbmc/openbmc/meta-security/lib/oeqa/runtime/cases/
H A Daide.py15 status, output = self.target.run('aide --help')
17 'Status and output:%s and %s' % (status, output))
22 status, output = self.target.run('aide --init')
23 match = re.search('Number of entries:', output)
25 msg = ('Aide db init failed: output is:\n%s' % output)
/openbmc/openbmc/poky/meta/lib/oeqa/runtime/cases/
H A Dssh.py16 (status, output) = self.target.run('sleep 20', timeout=2)
19 (status, output) = self.target.run('uname -a')
20 self.assertEqual(status, 0, msg='SSH Test failed: %s' % output)
21 (status, output) = self.target.run('cat /etc/controllerimage')
23 "shouldn't be here %s" % output
H A Dldd.py17 status, output = self.target.run('which ldd')
18 msg = 'ldd does not exist in PATH: which ldd: %s' % output
24 status, output = self.target.run(cmd)
27 status, output = self.target.run("ldd /bin/true")
28 self.assertEqual(status, 0, msg="ldd failed to execute: %s" % output)
H A Dconnman.py15 (_, output) = self.target.run('systemctl status -l %s' % service)
16 return output
23 (status, output) = self.target.run('/usr/sbin/connmand --help')
24 msg = 'Failed to get connman help. Output: %s' % output
30 (status, output) = self.target.run(cmd)
/openbmc/qemu/tests/tcg/hexagon/
H A Dreg_mut.c26 #define WRITE_REG_NOCLOBBER(output, reg_name, input) \ argument
29 : "=r"(output) \
33 #define WRITE_REG_ENCODED(output, reg_name, input, encoding) \ argument
37 : "=r"(output) \
41 #define WRITE_REG_PAIR_ENCODED(output, reg_name, input, encoding) \ argument
45 : "=r"(output) \
/openbmc/qemu/target/hexagon/
H A Dmeson.build37 output: 'semantics_generated.pyinc',
54 output: 'shortcode_generated.h.inc',
63 output: 'tcg_func_table_generated.c.inc',
72 output: 'printinsn_generated.h.inc',
81 output: 'op_regs_generated.h.inc',
90 output: 'op_attribs_generated.h.inc',
99 output: 'opcodes_def_generated.h.inc',
118 output: 'iset.py',
129 output: 'dectree_generated.h.inc',
165 output: 'idef_parser_input.h.inc',
[all …]
/openbmc/qemu/tests/qemu-iotests/
H A D171.out1 QA output created by 171
24 write failed: Input/output error
27 write failed: Input/output error
30 write failed: Input/output error
33 writev failed: Input/output error
40 read failed: Input/output error
43 read failed: Input/output error
46 read failed: Input/output error
49 readv failed: Input/output error
63 write failed: Input/output error
[all …]
/openbmc/linux/Documentation/devicetree/bindings/pinctrl/
H A Dste,abx500.txt40 output-low;
52 output-low;
76 output-low;
88 output-low;
100 output-low;
117 output-low;
129 output-low;
145 output-low;
162 output-low;
178 output-low;
[all …]
/openbmc/linux/arch/arm/boot/dts/ti/omap/
H A Domap34xx-omap36xx-clocks.dtsi25 clock-output-names = "aes1_ick";
33 clock-output-names = "rng_ick";
41 clock-output-names = "sha11_ick";
49 clock-output-names = "des1_ick";
57 clock-output-names = "pka_ick";
73 clock-output-names = "cam_mclk";
113 clock-output-names = "icr_ick";
121 clock-output-names = "des2_ick";
129 clock-output-names = "mspro_ick";
168 clock-output-names = "sr1_fck";
[all …]
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Time/
H A Dmeson.build5 output: [ 'error.cpp', 'error.hpp', ],
9 '--output', meson.current_build_dir(),
20 output: [ 'EpochTime.md' ],
24 '--output', meson.current_build_dir(),
35 output: [ 'Synchronization.md' ],
39 '--output', meson.current_build_dir(),
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/HardwareIsolation/
H A Dmeson.build5 output: [ 'error.cpp', 'error.hpp', ],
9 '--output', meson.current_build_dir(),
20 output: [ 'Create.md' ],
24 '--output', meson.current_build_dir(),
35 output: [ 'Entry.md' ],
39 '--output', meson.current_build_dir(),
/openbmc/phosphor-dbus-interfaces/gen/org/open_power/Host/
H A Dmeson.build5 output: [ 'error.cpp', 'error.hpp', ],
9 '--output', meson.current_build_dir(),
20 output: [ 'Access.md' ],
24 '--output', meson.current_build_dir(),
35 output: [ 'Boot.md' ],
39 '--output', meson.current_build_dir(),
/openbmc/linux/Documentation/devicetree/bindings/clock/
H A Dallwinner,sun6i-a31-pll6-clk.yaml19 The first output is the regular PLL output, the second is a PLL
20 output at twice the rate.
31 clock-output-names:
39 - clock-output-names
50 clock-output-names = "pll6", "pll6x2";
/openbmc/linux/Documentation/translations/zh_CN/mm/
H A Dpage_owner.rst108 ./page_owner_sort <input> <output> --sort=n,+pid,-tgid
109 ./page_owner_sort <input> <output> --sort=at
123 ./page_owner_sort <input> <output> --cull=stacktrace
124 ./page_owner_sort <input> <output> --cull=st,pid,name
125 ./page_owner_sort <input> <output> --cull=n,f
142 ./page_owner_sort <input> <output> --pid=1
143 ./page_owner_sort <input> <output> --tgid=1,2,3
144 ./page_owner_sort <input> <output> --name name1,name2
/openbmc/phosphor-ipmi-flash/bmc/firmware-handler/
H A Dfirmware_handlers_builder.cpp44 HandlerConfig<ActionPack> output; in buildHandlerFromJson() local
47 item.at("blob").get_to(output.blobId); in buildHandlerFromJson()
50 if (!std::regex_match(output.blobId, std::regex("^\\/flash\\/.+"))) in buildHandlerFromJson()
53 "Invalid blob name: '" + output.blobId + in buildHandlerFromJson()
63 output.handler = std::make_unique<FileHandler>(path); in buildHandlerFromJson()
137 output.actions = std::move(pack); in buildHandlerFromJson()
138 handlers.push_back(std::move(output)); in buildHandlerFromJson()
/openbmc/openbmc/meta-openembedded/meta-perl/recipes-perl/libmime/files/
H A Drun-ptest4 perl $case >$case.output 2>&1
6 cat $case.output
9 elif grep -i 'SKIP' $case.output; then
15 rm -f $case.output
/openbmc/openbmc/meta-openembedded/meta-perl/recipes-perl/libnet/files/
H A Drun-ptest4 perl $case >$case.output 2>&1
6 cat $case.output
9 elif grep -i 'SKIP' $case.output; then
15 rm -f $case.output
/openbmc/openbmc/meta-openembedded/meta-perl/recipes-perl/libauthen/files/
H A Drun-ptest4 perl $case >$case.output 2>&1
6 cat $case.output
9 elif grep -i 'SKIP' $case.output; then
15 rm -f $case.output

12345678910>>...243