/openbmc/ipmitool/src/plugins/lanplus/ |
H A D | lanplus_crypt_impl.c | 155 uint8_t * output, in lanplus_encrypt_aes_cbc_128() argument 185 if(!EVP_EncryptUpdate(&ctx, output, (int *)bytes_written, input, input_length)) in lanplus_encrypt_aes_cbc_128() 195 if(!EVP_EncryptFinal_ex(&ctx, output + *bytes_written, (int *)&tmplen)) in lanplus_encrypt_aes_cbc_128() 230 uint8_t * output, in lanplus_decrypt_aes_cbc_128() argument 260 if (!EVP_DecryptUpdate(&ctx, output, (int *)bytes_written, input, input_length)) in lanplus_decrypt_aes_cbc_128() 271 if (!EVP_DecryptFinal_ex(&ctx, output + *bytes_written, (int *)&tmplen)) in lanplus_decrypt_aes_cbc_128() 291 printbuf(output, *bytes_written, "Decrypted this data"); in lanplus_decrypt_aes_cbc_128()
|
/openbmc/linux/lib/ |
H A D | memcpy_kunit.c | 505 unsigned char output[sizeof(unsigned long)] __nonstring; in strtomem_test() member 516 strtomem(wrap.output, input); in strtomem_test() 518 KUNIT_EXPECT_EQ(test, wrap.output[0], input[0]); in strtomem_test() 519 KUNIT_EXPECT_EQ(test, wrap.output[1], input[1]); in strtomem_test() 520 for (size_t i = 2; i < sizeof(wrap.output); i++) in strtomem_test() 521 KUNIT_EXPECT_EQ(test, wrap.output[i], 0xFF); in strtomem_test() 526 strtomem(wrap.output, truncate); in strtomem_test() 528 for (size_t i = 0; i < sizeof(wrap.output); i++) in strtomem_test() 529 KUNIT_EXPECT_EQ(test, wrap.output[i], truncate[i]); in strtomem_test() 534 strtomem_pad(wrap.output, input, 0xAA); in strtomem_test() [all …]
|
/openbmc/linux/Documentation/devicetree/bindings/clock/ |
H A D | silabs,si5341.txt | 12 The Si5341 and Si5340 are programmable i2c clock generators with up to 10 output 42 The second value is the output or synthesizer index. 53 feedback divider. Must be such that the PLL output is in the valid range. For 60 temporarily stop all output clocks, don't do this if the chip is generating 67 - vddoX-supply (where X is an output index): Regulator node for VDDO for the 68 specified output. The driver selects the output VDD_SEL setting based on this 76 The child nodes list the output clocks. 79 If a child node for a clock output is not set, the configuration remains 83 - reg: number of clock output. 90 - silabs,common-mode: Manually override output common mode, see [2] for values [all …]
|
/openbmc/openbmc/poky/meta/lib/oeqa/runtime/cases/ |
H A D | connman.py | 15 (_, 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/linux/arch/arm/boot/dts/ti/keystone/ |
H A D | keystone-k2e-clocks.dtsi | 21 clock-output-names = "papllclk"; 30 clock-output-names = "ddr-3a-pll-clk"; 39 clock-output-names = "usb1"; 49 clock-output-names = "hyperlink-0"; 59 clock-output-names = "pcie1"; 69 clock-output-names = "xge"; 85 clock-output-names = "tsipclka"; 92 clock-output-names = "tsipclkb";
|
/openbmc/openbmc/poky/meta/lib/oeqa/utils/ |
H A D | dump.py | 67 def _write_dump(self, command, output): argument 72 json.dump(output, json_file, indent=4) 75 dump_file.write(output) 98 (status, output) = self.runner.run_serial(cmd) 101 self._write_dump(cmd.split()[0], output) 135 output = self.runner.run_monitor(cmd_name, cmd_data) 137 output = self.runner.run_monitor(cmd_name) 138 self._write_dump(cmd_name, output)
|
/openbmc/phosphor-ipmi-flash/bmc/log-handler/ |
H A D | log_handlers_builder.cpp | 44 HandlerConfig<LogBlobHandler::ActionPack> output; in buildHandlerFromJson() local 47 item.at("blob").get_to(output.blobId); in buildHandlerFromJson() 52 if (!std::regex_search(output.blobId, matches, regexpr)) in buildHandlerFromJson() 63 output.handler = std::make_unique<FileHandler>(path); in buildHandlerFromJson() 108 output.actions = std::move(pack); in buildHandlerFromJson() 109 handlers.push_back(std::move(output)); in buildHandlerFromJson()
|
/openbmc/linux/Documentation/userspace-api/media/v4l/ |
H A D | vidioc-g-audioout.rst | 13 VIDIOC_G_AUDOUT - VIDIOC_S_AUDOUT - Query or select the current audio output 38 To query the current audio output applications zero out the ``reserved`` 43 output. 46 current audio output applications can initialize the ``index`` field and 49 ``VIDIOC_S_AUDOUT`` ioctl. Drivers switch to the requested output or 51 write-only ioctl, it does not return the current audio output attributes 70 - Identifies the audio output, set by the driver or application. 73 - Name of the audio output, a NUL-terminated ASCII string, for 97 No audio outputs combine with the current video output, or the 98 number of the selected audio output is out of bounds or it does not
|
/openbmc/qemu/qapi/ |
H A D | meson.build | 9 'qobject-output-visitor.c', 11 'string-output-visitor.c', 119 output: qapi_util_outputs + qapi_specific_outputs + qapi_nonmodule_outputs, 125 # These loops must be synchronized with the output of the above custom target. 128 foreach output : qapi_util_outputs 129 if output.endswith('.h') 132 if output.endswith('.trace-events') 139 foreach output : qapi_specific_outputs + qapi_nonmodule_outputs 140 if output.endswith('.h') 143 if output.endswith('.trace-events')
|
/openbmc/openbmc/meta-arm/scripts/ |
H A D | machine-summary.py | 178 def render(self, context, output: pathlib.Path): 199 def render(self, context, output: pathlib.Path): 200 with open(output, "wt") as f: 206 def render(self, context, output: pathlib.Path): 207 if output.exists() and not output.is_dir(): 211 if not output.exists(): 212 output.mkdir(parents=True) 214 with open(output / "index.html", "wt") as f: 222 with open(output / f"{machine}.html", "wt") as f: 239 formatter.render(context, args.output)
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/netcat/netcat-openbsd/ |
H A D | 0001-bundle-own-base64-encode-decode-functions.patch | 121 + The encoding process represents 24-bit groups of input bits as output 129 + output string. 165 + output will be an integral multiple of 4 characters 168 + here, the final unit of encoded output will be two 171 + here, the final unit of encoded output will be three 179 + u_char output[4]; 188 + output[0] = input[0] >> 2; 189 + output[1] = ((input[0] & 0x03) << 4) + (input[1] >> 4); 190 + output[2] = ((input[1] & 0x0f) << 2) + (input[2] >> 6); 191 + output[3] = input[2] & 0x3f; [all …]
|
/openbmc/linux/Documentation/devicetree/bindings/pinctrl/ |
H A D | ste,nomadik.txt | 18 parameters, such as input, output, pull up, pull down... 43 - ste,output: <0/1/2> 44 0: output low, 45 1: output high, 46 2: output (value is not specified). 58 - ste,sleep-output: <0/1/2> 59 0: sleep output low, 60 1: sleep output high, 61 2: sleep output (value is not specified). 93 ste,sleep-output = <1>; [all …]
|
/openbmc/linux/Documentation/hwmon/ |
H A D | fsp-3y.rst | 18 * in2_input 12V output voltage 19 * in3_input 5V output voltage 21 * curr2_input 12V output current 22 * curr3_input 5V output current 28 * power2_input output power
|
/openbmc/linux/sound/pci/echoaudio/ |
H A D | indigoio_dsp.c | 32 static int set_vmixer_gain(struct echoaudio *chip, u16 output, u16 pipe, 106 static int set_vmixer_gain(struct echoaudio *chip, u16 output, u16 pipe, in set_vmixer_gain() argument 112 output >= num_busses_out(chip))) in set_vmixer_gain() 118 chip->vmixer_gain[output][pipe] = gain; in set_vmixer_gain() 119 index = output * num_pipes_out(chip) + pipe; in set_vmixer_gain() 123 "set_vmixer_gain: pipe %d, out %d = %d\n", pipe, output, gain); in set_vmixer_gain()
|
/openbmc/qemu/tests/tcg/multiarch/ |
H A D | float_convs.c | 47 double output; in convert_single_to_double() local 52 output = input; in convert_single_to_double() 55 out_fmt = fmt_f64(output); in convert_single_to_double() 67 TYPE ## _t output; \ 71 output = input; \ 73 printf("%11s: %" FMT " (%s)\n", to, output, flag_fmt); \
|
H A D | float_convd.c | 47 float output; in convert_double_to_single() local 52 output = input; in convert_double_to_single() 55 out_fmt = fmt_f32(output); in convert_double_to_single() 67 TYPE ## _t output; \ 71 output = input; \ 73 printf("%11s: %" FMT " (%s)\n", to, output, flag_fmt); \
|
/openbmc/qemu/tests/qemu-iotests/ |
H A D | 223 | 176 $QEMU_IMG map --output=json --image-opts \ 178 $QEMU_IMG map --output=json --image-opts \ 186 $QEMU_IMG map --output=json --image-opts \ 194 $QEMU_IMG map --output=json --image-opts \ 221 $QEMU_IMG map --output=json --image-opts \ 226 $QEMU_IMG map --output=json --image-opts --max-length=12345 \ 228 $QEMU_IMG map --output=json --image-opts --start-offset=12345 \
|
/openbmc/linux/arch/mips/boot/dts/mscc/ |
H A D | serval_common.dtsi | 89 output-low; 94 output-high; 99 output-high; 104 output-high; 109 output-high; 114 output-high; 119 output-high;
|
/openbmc/openbmc/meta-openembedded/meta-perl/recipes-perl/libtext/libtext-diff-perl/ |
H A D | run-ptest | 4 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/libdata/files/ |
H A D | run-ptest | 4 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/poky/meta/files/ptest-perl/ |
H A D | run-ptest | 4 perl -I . $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 D | run-ptest | 4 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/libmime/files/ |
H A D | run-ptest | 4 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/libdigest/files/ |
H A D | run-ptest | 4 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 D | run-ptest | 4 perl $case >$case.output 2>&1 6 cat $case.output 9 elif grep -i 'SKIP' $case.output; then 15 rm -f $case.output
|