Home
last modified time | relevance | path

Searched refs:output (Results 426 – 450 of 6206) sorted by relevance

1...<<11121314151617181920>>...249

/openbmc/linux/drivers/hwtracing/intel_th/
H A Dintel_th.h87 struct intel_th_output output; member
135 (thdev->output.port >= 0 || in intel_th_output_assigned()
136 thdev->output.type == GTH_NONE); in intel_th_output_assigned()
169 struct intel_th_output *output);
171 struct intel_th_output *output);
173 struct intel_th_output *output);
175 struct intel_th_output *output);
/openbmc/openbmc-test-automation/lib/
H A Dos_utils_config.robot58 ${output} ${stderr}= Execute Command systemctl status opal-prd.service
61 Log ${\n}${output} console=yes
62 Should Not Contain ${output} could not be found
67 ${output} ${stderr}= Execute Command opal-gard list
70 Should Contain ${output} No GARD entries to display
74 ${output} ${stderr}= Execute Command dmesg -xT -l emerg,alert,crit,err
77 Should Be Empty ${output}
/openbmc/linux/Documentation/devicetree/bindings/clock/
H A Dallwinner,sun4i-a10-mmc-clk.yaml20 and the output and sample clocks, with the IDs 1 and 2,
37 clock-output-names:
45 - clock-output-names
72 clock-output-names = "mmc0",
83 clock-output-names = "mmc0", "mmc0_output",
/openbmc/linux/tools/testing/selftests/powerpc/vphn/
H A Dtest-vphn.c368 __be32 output[VPHN_ASSOC_BUFSIZE] = { 0 }; in test_one() local
371 vphn_unpack_associativity(test->input, output); in test_one()
373 len = be32_to_cpu(output[0]); in test_one()
381 u32 val = be32_to_cpu(output[i]); in test_one()
/openbmc/openbmc/poky/meta/recipes-devtools/meson/meson/
H A Dmeson-setup.py35 output = Template(template).substitute(Environ()) variable
37 out_file.write(output)
41output = Template(template).substitute({'OECORE_NATIVE_SYSROOT': os.environ['OECORE_NATIVE_SYSROOT… variable
43 out_file.write(output)
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Item/Cpu/
H A Dmeson.build5 output: [ 'common.hpp', 'server.cpp', 'server.hpp', 'aserver.hpp', 'client.hpp', ],
9 '--output', meson.current_build_dir(),
20 output: [ 'OperatingConfig.md' ],
24 '--output', meson.current_build_dir(),
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Item/Dimm/
H A Dmeson.build5 output: [ 'common.hpp', 'server.cpp', 'server.hpp', 'aserver.hpp', 'client.hpp', ],
9 '--output', meson.current_build_dir(),
20 output: [ 'MemoryLocation.md' ],
24 '--output', meson.current_build_dir(),
/openbmc/u-boot/tools/
H A Dgenboardscfg.py58 def output_is_new(output): argument
66 ctime = os.path.getctime(output)
94 with open(output) as f:
377 def format_and_output(params_list, output): argument
407 with open(output, 'w') as f:
410 def gen_boards_cfg(output, jobs=1, force=False): argument
420 if not force and output_is_new(output):
421 print "%s is up to date. Nothing to do." % output
426 format_and_output(params_list, output)
444 gen_boards_cfg(options.output, jobs=options.jobs, force=options.force)
/openbmc/linux/tools/lib/perf/
H A Devlist.c440 int output, struct perf_cpu cpu) in perf_evlist__mmap_cb_mmap() argument
442 return perf_mmap__mmap(map, mp, output, cpu); in perf_evlist__mmap_cb_mmap()
467 int *output, fd, cpu; in mmap_per_evsel() local
482 output = _output_overwrite; in mmap_per_evsel()
485 output = _output; in mmap_per_evsel()
490 if (*output == -1) { in mmap_per_evsel()
491 *output = fd; in mmap_per_evsel()
513 if (ops->mmap(map, mp, *output, evlist_cpu) < 0) in mmap_per_evsel()
562 int output = -1; in mmap_per_thread() local
572 int output = -1; in mmap_per_thread() local
[all …]
/openbmc/linux/Documentation/hwmon/
H A Dinspur-ipsps1.rst33 curr2_input Measured output current in mA.
47 in2_input Measured output voltage in mV.
49 in2_lcrit Critical minimum output voltage
51 in2_max Maximum output voltage
53 in2_min Minimum output voltage
62 power2_input Measured output power in uW.
/openbmc/linux/lib/zstd/
H A Dzstd_compress_module.c144 size_t zstd_compress_stream(zstd_cstream *cstream, zstd_out_buffer *output, in zstd_compress_stream() argument
147 return ZSTD_compressStream(cstream, output, input); in zstd_compress_stream()
151 size_t zstd_flush_stream(zstd_cstream *cstream, zstd_out_buffer *output) in zstd_flush_stream() argument
153 return ZSTD_flushStream(cstream, output); in zstd_flush_stream()
157 size_t zstd_end_stream(zstd_cstream *cstream, zstd_out_buffer *output) in zstd_end_stream() argument
159 return ZSTD_endStream(cstream, output); in zstd_end_stream()
/openbmc/linux/drivers/platform/chrome/
H A Dchromeos_acpi.c132 struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL }; in chromeos_acpi_evaluate_method() local
136 status = acpi_evaluate_object(ACPI_HANDLE(dev), name, NULL, &output); in chromeos_acpi_evaluate_method()
142 if (((union acpi_object *)output.pointer)->type == ACPI_TYPE_PACKAGE) in chromeos_acpi_evaluate_method()
143 ret = chromeos_acpi_handle_package(dev, output.pointer, pkg_num, sub_pkg_num, in chromeos_acpi_evaluate_method()
146 kfree(output.pointer); in chromeos_acpi_evaluate_method()
174 struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL }; in get_gpio_pkg_num() local
180 status = acpi_evaluate_object(ACPI_HANDLE(dev), name, NULL, &output); in get_gpio_pkg_num()
186 obj = output.pointer; in get_gpio_pkg_num()
191 kfree(output.pointer); in get_gpio_pkg_num()
/openbmc/qemu/docs/devel/
H A Ddocs.rst18 in QEMU to do things like handle the ``--help`` option output
19 * a Sphinx extension in ``docs/sphinx/hxtool.py`` generates rST output
23 alternation of C code put into the C output and rST format text
28 text after the marker, is discarded and appears neither in the C output
29 nor the documentation output.
32 are put into the documentation verbatim, and discarded from the C output.
45 ``--help`` output and in the documentation. This directive should
48 a blank line in the ``--help`` output and is ignored for the rST
49 output.
/openbmc/openbmc/poky/meta/lib/oeqa/runtime/cases/
H A Drt.py16 status, output = self.target.run("uname -a")
17 self.assertEqual(status, 0, msg=output)
19 self.assertIn("PREEMPT_RT", output.split())
/openbmc/linux/Documentation/sound/cards/
H A Dmaya44.rst30 - input/output level
40 - S/PDIF output
117 * hw:0,0 output - stereo, analog output 1+2
119 * hw:0,1 output - stereo, analog output 3+4 (and SPDIF out)
129 (digital) output level for channel 1+2
153 switch for S/PDIF output.
159 Digital output selectors
177 Possibly some of these control S/PDIF output(s).
180 Selectable values for each of the digital output selectors are:
183 DAC output of the corresponding channel (default setting)
[all …]
/openbmc/linux/drivers/gpu/drm/radeon/
H A Dradeon_acpi.c213 struct atif_verify_interface output; in radeon_atif_verify_interface() local
221 memset(&output, 0, sizeof(output)); in radeon_atif_verify_interface()
229 size = min(sizeof(output), size); in radeon_atif_verify_interface()
231 memcpy(&output, info->buffer.pointer, size); in radeon_atif_verify_interface()
234 DRM_DEBUG_DRIVER("ATIF version %u\n", output.version); in radeon_atif_verify_interface()
237 radeon_atif_parse_functions(&atif->functions, output.function_bits); in radeon_atif_verify_interface()
507 struct atcs_verify_interface output; in radeon_atcs_verify_interface() local
515 memset(&output, 0, sizeof(output)); in radeon_atcs_verify_interface()
523 size = min(sizeof(output), size); in radeon_atcs_verify_interface()
525 memcpy(&output, info->buffer.pointer, size); in radeon_atcs_verify_interface()
[all …]
/openbmc/qemu/tests/vm/
H A Dbasevm.py347 output = ""
364 output += chars.decode("latin1")
365 if expect in output:
369 if "\r" in output or "\n" in output:
371 output = lines.pop()
375 self.console_log(output)
382 output = ""
390 if "\r" in output or "\n" in output:
392 output = lines.pop()
396 self.console_log(output)
[all …]
/openbmc/linux/drivers/cpufreq/
H A Dpcc-cpufreq.c305 struct acpi_buffer output = {ACPI_ALLOCATE_BUFFER, NULL}; in pcc_cpufreq_do_osc() local
333 if (!output.length) in pcc_cpufreq_do_osc()
336 out_obj = output.pointer; in pcc_cpufreq_do_osc()
354 kfree(output.pointer); in pcc_cpufreq_do_osc()
362 if (!output.length) in pcc_cpufreq_do_osc()
365 out_obj = output.pointer; in pcc_cpufreq_do_osc()
384 kfree(output.pointer); in pcc_cpufreq_do_osc()
391 struct acpi_buffer output = {ACPI_ALLOCATE_BUFFER, NULL}; in pcc_cpufreq_evaluate() local
418 out_obj = output.pointer; in pcc_cpufreq_evaluate()
529 kfree(output.pointer); in pcc_cpufreq_evaluate()
[all …]
/openbmc/linux/drivers/gpu/drm/amd/display/dc/dcn20/
H A Ddcn20_hubbub.c219 struct dc_surface_dcc_cap *output) in hubbub2_get_dcc_compression_cap() argument
228 memset(output, 0, sizeof(*output)); in hubbub2_get_dcc_compression_cap()
285 output->grph.rgb.max_uncompressed_blk_size = 256; in hubbub2_get_dcc_compression_cap()
286 output->grph.rgb.max_compressed_blk_size = 256; in hubbub2_get_dcc_compression_cap()
287 output->grph.rgb.independent_64b_blks = false; in hubbub2_get_dcc_compression_cap()
291 output->grph.rgb.max_compressed_blk_size = 128; in hubbub2_get_dcc_compression_cap()
292 output->grph.rgb.independent_64b_blks = false; in hubbub2_get_dcc_compression_cap()
296 output->grph.rgb.max_compressed_blk_size = 64; in hubbub2_get_dcc_compression_cap()
297 output->grph.rgb.independent_64b_blks = true; in hubbub2_get_dcc_compression_cap()
303 output->capable = true; in hubbub2_get_dcc_compression_cap()
[all …]
/openbmc/linux/Documentation/devicetree/bindings/media/
H A Drenesas,isp.yaml53 Single endpoint describing the R-Car VIN connected to output port 0.
58 Single endpoint describing the R-Car VIN connected to output port 1.
63 Single endpoint describing the R-Car VIN connected to output port 2.
68 Single endpoint describing the R-Car VIN connected to output port 3.
73 Single endpoint describing the R-Car VIN connected to output port 4.
78 Single endpoint describing the R-Car VIN connected to output port 5.
83 Single endpoint describing the R-Car VIN connected to output port 6.
88 Single endpoint describing the R-Car VIN connected to output port 7.
/openbmc/openbmc/poky/meta/lib/oe/
H A Dpatch.py21 def __init__(self, command, exitstatus, output): argument
24 self.output = output
28 (self.command, self.status, self.output)
257 return output
317 … return os.path.samefile(output, self.dir) or oe.path.is_path_parent(d.getVar('WORKDIR'), output)
574 output = ""
588 return output
618 if output:
623 return output
651 return output
[all …]
/openbmc/linux/arch/mips/boot/dts/mscc/
H A Djaguar2_pcb111.dts85 output-low;
90 output-high;
95 output-high;
100 output-high;
105 output-high;
/openbmc/linux/arch/arm/boot/dts/nxp/imx/
H A Dimx6ull-colibri-iris-v2.dts36 output-high;
43 * output mode.
49 output-high;
59 output-low;
71 output-low;
/openbmc/linux/drivers/gpu/drm/vkms/
H A Dvkms_output.c51 struct vkms_output *output = &vkmsdev->output; in vkms_output_init() local
53 struct drm_connector *connector = &output->connector; in vkms_output_init()
54 struct drm_encoder *encoder = &output->encoder; in vkms_output_init()
55 struct drm_crtc *crtc = &output->crtc; in vkms_output_init()
/openbmc/phosphor-ipmi-blobs/
H A Dfs.cpp30 std::vector<std::string> output; in getLibraryList() local
38 output.push_back(ps); in getLibraryList()
43 return output; in getLibraryList()

1...<<11121314151617181920>>...249