Home
last modified time | relevance | path

Searched full:conversion (Results 1 – 25 of 414) sorted by relevance

12345678910>>...17

/openbmc/u-boot/include/
H A Dadc.h31 * struct adc_channel - structure to hold channel conversion data.
32 * Useful to keep the result of a multi-channel conversion output.
35 * @data - channel conversion data
63 * @data_mask - conversion output data mask
64 * @data_timeout_us - single channel conversion timeout
65 * @multidata_timeout_us - multi channel conversion timeout
93 * start_channel() - start conversion with its default parameters
103 * start_channels() - start conversion with its default parameters
107 * conversion by the single software trigger.
116 * channel_data() - get conversion output data for the given channel.
[all …]
H A Dcharset.h3 * charset conversion utils
44 * utf8_utf16_strnlen() - length of a truncated utf-8 string after conversion
49 * Return: length in bytes after conversion to utf-16 without the
56 * utf8_utf16_strlen() - length of a utf-8 string after conversion to utf-16
59 * Return: length in bytes after conversion to utf-16 without the
114 * utf16_utf8_strnlen() - length of a truncated utf-16 string after conversion
119 * Return: length in bytes after conversion to utf-8 without the
126 * utf16_utf8_strlen() - length of a utf-16 string after conversion to utf-8
129 * Return: length in bytes after conversion to utf-8 without the
/openbmc/qemu/tests/qemu-iotests/
H A D063.out3 == Testing conversion with -n fails with no target file ==
4 == Testing conversion with -n succeeds with a target file ==
6 == Testing conversion to raw is the same after conversion with -n ==
7 == Testing conversion back to original format ==
9 == Testing conversion to a smaller file fails ==
H A D06354 echo "== Testing conversion with -n fails with no target file =="
59 echo "== Testing conversion with -n succeeds with a target file =="
66 echo "== Testing conversion to raw is the same after conversion with -n =="
80 echo "== Testing conversion back to original format =="
86 echo "== Testing conversion to a smaller file fails =="
H A D150.out.qcow23 === Mapping sparse conversion ===
7 === Mapping non-sparse conversion ===
H A D150.out.raw3 === Mapping sparse conversion ===
8 === Mapping non-sparse conversion ===
/openbmc/u-boot/drivers/adc/
H A Dsandbox.c15 * @conversion_status - conversion status: ACTIVE (started) / INACTIVE (stopped)
16 * @conversion_mode - conversion mode: single or multi-channel
35 /* Start conversion */ in sandbox_adc_start_channel()
49 /* Start conversion */ in sandbox_adc_start_channels()
60 /* For single-channel conversion mode, check if channel was selected */ in sandbox_adc_channel_data()
67 /* The conversion must be started before reading the data */ in sandbox_adc_channel_data()
82 /* Return error for single-channel conversion mode */ in sandbox_adc_channels_data()
92 /* The conversion must be started before reading the data */ in sandbox_adc_channels_data()
112 /* Start conversion */ in sandbox_adc_stop()
122 /* Stop conversion */ in sandbox_adc_probe()
H A Dexynos-adc.c48 /* Start conversion */ in exynos_adc_start_channel()
63 /* Stop conversion */ in exynos_adc_stop()
92 /* CON2 - set conversion parameters */ in exynos_adc_probe()
93 cfg = ADC_V2_CON2_C_TIME(3); /* Conversion times: (1 << 3) = 8 */ in exynos_adc_probe()
/openbmc/openbmc/poky/meta/recipes-support/icu/icu/
H A D0001-icu-Added-armeb-support.patch12 i18n/double-conversion-utils.h | 2 +-
15 diff --git a/i18n/double-conversion-utils.h b/i18n/double-conversion-utils.h
17 --- a/i18n/double-conversion-utils.h
18 +++ b/i18n/double-conversion-utils.h
/openbmc/openbmc/poky/meta/recipes-devtools/dosfstools/dosfstools/
H A Dsource-date-epoch.patch53 + long long conversion = 0;
55 + conversion = strtoll(source_date_epoch, &tmp, 10);
56 + now = conversion;
58 + || errno != 0 || (long long)now != conversion) {
94 + long long conversion = 0;
96 + conversion = strtoll(source_date_epoch, &tmp, 10);
102 + return (uint32_t)conversion;
132 long long conversion;
145 + conversion = strtoll(source_date_epoch, &tmp, 10);
146 + create_time = conversion;
[all …]
/openbmc/phosphor-logging/lib/include/phosphor-logging/lg2/
H A Dconversion.hpp91 /** Logging conversion for unsigned. */
108 /** Logging conversion for signed. */
124 /** Logging conversion for bool. */
144 /** Logging conversion for floating points. */
164 /** Logging conversion for sdbusplus enums. */
184 /** Logging conversion for string-likes. */
200 // Utiilty to handle conversion to a 'const char*' depending on V: in log_convert()
225 /** Logging conversion for pointer-types. */
249 /* Logging conversion for exceptions. */
269 /* Logging conversion for object path. */
[all …]
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/ruli/files/
H A Dfloat-conversion.patch1 clarify type conversion
4 …or: implicit conversion from 'unsigned int' to 'float' changes value from 4294967295 to 4294967296…
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/curlpp/curlpp/
H A D0002-fix-invalid-conversion-from-int-to-CURLoption.patch4 Subject: [PATCH] Fix invalid conversion from int to CURLoption
6 Options.hpp:281:74: error: invalid conversion from 'int' to 'CURLoption' [-fpermissive]
12 Fix invalid conversion by adding explicit cast to CURLoption
/openbmc/u-boot/arch/arm/mach-socfpga/
H A Dwrap_pll_config_s10.c20 u32 *conversion = (u32 *)cm_handoff_cfg; in cm_get_default_config() local
27 conversion[i] = swab32(conversion[i]); in cm_get_default_config()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/dc/
H A Ddouble-conversion_3.3.1.bb1 SUMMARY = "Double conversion libraries"
3 HOMEPAGE = "https://github.com/google/double-conversion.git"
12 git://github.com/google/double-conversion.git;protocol=https;branch=master \
/openbmc/u-boot/test/dm/
H A Dadc.c119 /* Start multi channel conversion */ in dm_test_adc_multi_channel_conversion()
124 /* Compare the expected and returned conversion data. */ in dm_test_adc_multi_channel_conversion()
138 /* Start single channel conversion */ in dm_test_adc_single_channel_shot()
140 /* Compare the expected and returned conversion data. */ in dm_test_adc_single_channel_shot()
157 /* Start single call and multi channel conversion */ in dm_test_adc_multi_channel_shot()
160 /* Compare the expected and returned conversion data. */ in dm_test_adc_multi_channel_shot()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/dc/files/
H A Drun-ptest3 # This script runs tests taken from the github CI for the Double-Conversion library.
4 # For more information, please see: https://github.com/google/double-conversion/blob/master/.github…
/openbmc/sdbusplus/include/sdbusplus/message/
H A Dnative_types.hpp17 /** Simple wrapper class for std::string to allow conversion to and from an
81 /** Simple wrapper class for std::string to allow conversion to and from an
196 * template function prototype for the conversion from string functions.
198 * @return A std::optional<T> containing the value if conversion is possible.
210 * template function prototype for the conversion to string functions.
212 * @return A std::string containing an encoding of the value, if conversion is
281 // Otherwise, if this is a string, do last-resort conversion. in process()
/openbmc/openbmc/poky/meta/recipes-multimedia/libsamplerate/
H A Dlibsamplerate0_0.2.2.bb1 SUMMARY = "Audio Sample Rate Conversion library"
2 DESCRIPTION = "Also known as Secret Rabbit Code - a library for performing sample rate conversion o…
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-connectivity/wvdial/wvstreams/
H A D0001-Fix-narrowing-conversion-error.patch4 Subject: [PATCH] Fix narrowing conversion error
6 … xplc/moduleloader.cc:67:14: error: narrowing conversion of '-1' from 'in…
/openbmc/qemu/util/
H A Dcutils.c407 /* Turn "no conversion" into an error */ in check_strtox_error()
427 * @nptr may be null, and no conversion is performed then.
429 * If no conversion is performed, store @nptr in *@endptr, 0 in
437 * If the conversion overflows @result, store INT_MAX in @result,
440 * If the conversion underflows @result, store INT_MIN in @result,
484 * @nptr may be null, and no conversion is performed then.
486 * If no conversion is performed, store @nptr in *@endptr, 0 in
494 * If the conversion overflows @result, store UINT_MAX in @result,
555 * @nptr may be null, and no conversion is performed then.
557 * If no conversion is performed, store @nptr in *@endptr, 0 in
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/libx86-1/libx86-1.1/
H A D0001-Fix-type-of-the-void-pointer-assignment.patch8 …16:9: error: incompatible integer to pointer conversion assigning to 'void *' from 'long' [-Wint-c…
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-connectivity/wifi-test-suite/files/
H A D0001-wfa_cmdproc-Store-return-value-into-location.patch7 …00:20: error: incompatible integer to pointer conversion assigning to 'int *' from 'int' [-Wint-co…
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/geany/geany-plugins/
H A D0001-scope-Use-0-instead-of-NULL-for-gboolean.patch8 …atible pointer to integer conversion initializing 'gboolean' (aka 'int') with an expression of typ…
/openbmc/libcper/docs/
H A DOEMExtensions.md10 First, we need to create a parser to actually handle the conversion of the
89 to the name and conversion methods. Open `sections/cper-section.c` and add your
113 other conversion libraries included should successfully convert your OEM CPER

12345678910>>...17