Home
last modified time | relevance | path

Searched full:converted (Results 1 – 25 of 1424) sorted by relevance

12345678910>>...57

/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/syslog-ng/files/
H A DCVE-2022-38725-0005.patch77 -_rfc3164_timestamp_eq(const gchar *ts, const gchar *expected, gchar converted[32])
78 +_rfc3164_timestamp_eq(const gchar *ts, gint len, const gchar *expected, gchar converted[32])
80 - cr_assert(_parse_rfc3164(ts, converted));
81 + cr_assert(_parse_rfc3164(ts, len, converted));
82 return strcmp(converted, expected) == 0;
86 -_rfc5424_timestamp_eq(const gchar *ts, const gchar *expected, gchar converted[32])
87 +_rfc5424_timestamp_eq(const gchar *ts, gint len, const gchar *expected, gchar converted[32])
89 - cr_assert(_parse_rfc5424(ts, converted));
90 + cr_assert(_parse_rfc5424(ts, len, converted));
91 return strcmp(converted, expected) == 0;
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/conversion/
H A Dconstant.cpp8 optional<bool> converted = toBool(value); in operator ()() local
9 if (!converted) { in operator ()()
13 return *converted; in operator ()()
17 optional<float> converted = toNumber(value); in operator ()() local
18 if (!converted) { in operator ()()
22 return *converted; in operator ()()
26 optional<std::string> converted = toString(value); in operator ()() local
27 if (!converted) { in operator ()()
31 return *converted; in operator ()()
H A Dlayer.cpp155 optional<std::unique_ptr<Layer>> converted; in operator ()() local
158 converted = convertVectorLayer<FillLayer>(*id, value, error); in operator ()()
160 converted = convertVectorLayer<FillExtrusionLayer>(*id, value, error); in operator ()()
162 converted = convertVectorLayer<LineLayer>(*id, value, error); in operator ()()
164 converted = convertVectorLayer<CircleLayer>(*id, value, error); in operator ()()
166 converted = convertVectorLayer<SymbolLayer>(*id, value, error); in operator ()()
168 converted = convertRasterLayer(*id, value, error); in operator ()()
170 converted = convertVectorLayer<HeatmapLayer>(*id, value, error); in operator ()()
172 converted = convertHillshadeLayer(*id, value, error); in operator ()()
174 converted = convertBackgroundLayer(*id, value, error); in operator ()()
[all …]
/OK3568_Linux_fs/buildroot/dl/sox/git/scripts/
H A Dbatch-example.bat7 rem In this example, the converted files end up in a folder called `converted',
12 mkdir converted
13 FOR %%A IN (%*) DO sox %%A "converted/%%~nxA" rate -v 44100
/OK3568_Linux_fs/kernel/drivers/acpi/acpica/
H A Dnsconvert.c25 * PARAMETERS: original_object - Object to be converted
26 * return_object - Where the new converted object is returned
89 * PARAMETERS: original_object - Object to be converted
90 * return_object - Where the new converted object is returned
172 * PARAMETERS: original_object - Object to be converted
173 * return_object - Where the new converted object is returned
227 * _FDE and _GTM. The Package can be converted to a Buffer. in acpi_ns_convert_to_buffer()
276 * original_object - ASCII String Object to be converted
277 * return_object - Where the new converted object is returned
342 * original_object - Object to be converted
[all …]
H A Dexconvrt.c26 * PARAMETERS: obj_desc - Object to be converted. Must be an
149 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Converted value: %8.8X%8.8X\n", in acpi_ex_convert_to_integer()
163 * PARAMETERS: obj_desc - Object to be converted. Must be an
248 * PARAMETERS: integer - Value to be converted
251 * data_width - Size of data item to be converted, in bytes
360 * PARAMETERS: obj_desc - Object to be converted. Must be an
448 * From ACPI: "If the input is a buffer, it is converted to a in acpi_ex_convert_to_string()
473 * "The entire contents of the buffer are converted to a string of in acpi_ex_convert_to_string()
486 * From ACPI: "If Data is a buffer, it is converted to a string of in acpi_ex_convert_to_string()
562 * source_desc - Source object to be converted.
[all …]
H A Dutstrsuppt.c28 * return_value_ptr - Where the converted value is returned
30 * RETURN: Status and 64-bit converted integer
82 * return_value_ptr - Where the converted value is returned
84 * RETURN: Status and 64-bit converted integer
136 * return_value_ptr - Where the converted value is returned
138 * RETURN: Status and 64-bit converted integer
319 * 1) Multiply the current accumulated/converted value by the
357 * PARAMETERS: multiplicand - Current accumulated converted integer
411 * PARAMETERS: addend1 - Current accumulated converted integer
H A Duthex.c30 * RETURN: The converted Ascii character
49 * return_byte - Where converted byte is returned
51 * RETURN: Status and converted hex byte
54 * to a single converted byte value.
H A Dutstrtoul64.c60 * return_value - Where the converted integer is
63 * RETURN: Status and converted integer. Returns an exception on a
159 * RETURN: Converted integer
179 * The converted integer is initialized to the value zero.
190 * the current accumulated value of the converted integer (NO ERROR).
243 * RETURN: Converted integer
271 * conversion and returns the current accumulated value of the converted
H A Dexutils.c277 * PARAMETERS: out_string - Where to put the converted string (8 bytes)
278 * compressed_id - EISAID to be converted
325 * PARAMETERS: out_string - Where to put the converted string. At least
328 * value - Value to be converted
330 * RETURN: Converted string in out_string
359 * PARAMETERS: out_string - Where to put the converted string (7 bytes)
360 * class_code - PCI class code to be converted (3 bytes)
362 * RETURN: Converted string in out_string
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/
H A Dparser.cpp130 optional<TransitionOptions> converted = conversion::convert<TransitionOptions>(value, error); in parseTransition() local
131 if (!converted) { in parseTransition()
136 transition = std::move(*converted); in parseTransition()
141 optional<Light> converted = conversion::convert<Light>(value, error); in parseLight() local
142 if (!converted) { in parseLight()
147 light = std::move(*converted); in parseLight()
267 …optional<std::unique_ptr<Layer>> converted = conversion::convert<std::unique_ptr<Layer>>(value, er… in parseLayer() local
268 if (!converted) { in parseLayer()
272 layer = std::move(*converted); in parseLayer()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/algorithm/string/
H A Dcase_conv.hpp39 Each element of the input sequence is converted to lower
40 case. The result is a copy of the input converted to lower case.
84 Each element of the input sequence is converted to lower
105 Each element of the input sequence is converted to upper
106 case. The result is a copy of the input converted to upper case.
149 Each element of the input sequence is converted to upper
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/expression/
H A Dvalue.cpp131 std::vector<mbgl::Value> converted; in fromExpressionValue() local
132 converted.reserve(values.size()); in fromExpressionValue()
134 converted.emplace_back(fromExpressionValue(v)); in fromExpressionValue()
136 return converted; in fromExpressionValue()
139 std::unordered_map<std::string, mbgl::Value> converted; in fromExpressionValue() local
140 converted.reserve(values.size()); in fromExpressionValue()
142 converted.emplace(entry.first, fromExpressionValue(entry.second)); in fromExpressionValue()
144 return converted; in fromExpressionValue()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/core/
H A Dradian_access.hpp87 // Specialize, any "degree" coordinate system will be converted to radian
152 // Specialize, any "degree" coordinate system will be converted to radian
202 point is in Degree, Radian value will be converted to Degree
242 point is in Degree, Radian value will be converted to Degree
/OK3568_Linux_fs/kernel/drivers/media/radio/
H A Dradio-rtrack2.c7 * Converted to new API by Alan Cox <alan@lxorguk.ukuu.org.uk>
10 * Converted to the radio-isa framework by Hans Verkuil <hans.verkuil@cisco.com>
11 * Converted to V4L2 API by Mauro Carvalho Chehab <mchehab@kernel.org>
/OK3568_Linux_fs/kernel/drivers/gpio/
H A DTODO115 - Look over and identify any remaining easily converted drivers and
172 - Look over and identify any remaining easily converted drivers and
176 have been converted to the above infrastructure.
182 have been converted to the above infrastructure.
/OK3568_Linux_fs/kernel/Documentation/userspace-api/media/mediactl/
H A Dmedia-ioc-g-topology.rst75 stored, converted to a 64-bits integer. It can be zero. if zero,
90 stored, converted to a 64-bits integer. It can be zero. if zero,
105 converted to a 64-bits integer. It can be zero. if zero, the ioctl
119 converted to a 64-bits integer. It can be zero. if zero, the ioctl
/OK3568_Linux_fs/u-boot/include/
H A Dvsprintf.h18 * @param cp The string to be converted
20 * @param res The converted result value
21 * @return 0 if conversion is successful and *res is set to the converted
35 * return the converted value of prefix part of the string.
/OK3568_Linux_fs/kernel/drivers/scsi/lpfc/
H A Dlpfc_attr.c91 * @hdw: ascii string holding converted integer plus a string terminator.
638 * @dev: class converted to a Scsi_host structure.
655 * @dev: class converted to a Scsi_host structure.
674 * @dev: class converted to a Scsi_host structure.
696 * @dev: class converted to a Scsi_host structure.
715 * @dev: class converted to a Scsi_host structure.
734 * @dev: class converted to a Scsi_host structure.
753 * @dev: class converted to a Scsi_host structure.
772 * @dev: class converted to a Scsi_host structure.
791 * @dev: class converted to a Scsi_host structure.
[all …]
/OK3568_Linux_fs/external/linux-rga/core/utils/
H A Dutils.h23 * When a pointer is converted to uint64_t, it must first be assigned to
24 * an integer of the same size, and then converted to uint64_t. The opposite
/OK3568_Linux_fs/u-boot/lib/
H A Dhexdump.c28 * @linebuf: where to put the converted data
33 * 16 or 32 bytes of input data converted to hex + ASCII output.
37 * The converted output is always NUL-terminated.
169 * 16 or 32 bytes of input data converted to hex + ASCII output.
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/bits/
H A Dcodecvt.h89 * The characters in [from,from_end) are converted and written to in _GLIBCXX_VISIBILITY()
91 * character following the last successfully converted character, in _GLIBCXX_VISIBILITY()
100 * all the input is converted, returns codecvt_base::ok. If no in _GLIBCXX_VISIBILITY()
134 * For example, if 4 external characters always converted to 1 internal in _GLIBCXX_VISIBILITY()
169 * The characters in [from,from_end) are converted and written to in _GLIBCXX_VISIBILITY()
171 * character following the last successfully converted character, in _GLIBCXX_VISIBILITY()
180 * all the input is converted, returns codecvt_base::ok. If no in _GLIBCXX_VISIBILITY()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/bits/
H A Dcodecvt.h89 * The characters in [from,from_end) are converted and written to in _GLIBCXX_VISIBILITY()
91 * character following the last successfully converted character, in _GLIBCXX_VISIBILITY()
100 * all the input is converted, returns codecvt_base::ok. If no in _GLIBCXX_VISIBILITY()
134 * For example, if 4 external characters always converted to 1 internal in _GLIBCXX_VISIBILITY()
169 * The characters in [from,from_end) are converted and written to in _GLIBCXX_VISIBILITY()
171 * character following the last successfully converted character, in _GLIBCXX_VISIBILITY()
180 * all the input is converted, returns codecvt_base::ok. If no in _GLIBCXX_VISIBILITY()
/OK3568_Linux_fs/kernel/arch/arm/mach-ixp4xx/
H A Dixp4xx-of.c19 * could eventually be converted into a syscon once all boards
20 * are converted to device tree.
/OK3568_Linux_fs/kernel/Documentation/arm/nwfpe/
H A Dnotes.rst16 f4 had been converted to an extended value in the emulator.
19 converted to extended, then stored. If an lfm/sfm combination had been used,

12345678910>>...57