Home
last modified time | relevance | path

Searched refs:utf8 (Results 1 – 25 of 165) sorted by relevance

1234567

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/vendor/nunicode/include/libnu/
H A Dutf8.h34 const char* nu_utf8_read(const char *utf8, uint32_t *unicode) { in nu_utf8_read() argument
35 uint32_t c = *(unsigned char *)(utf8); in nu_utf8_read()
40 utf8_2b(utf8, unicode); in nu_utf8_read()
42 return utf8 + 2; in nu_utf8_read()
46 utf8_3b(utf8, unicode); in nu_utf8_read()
48 return utf8 + 3; in nu_utf8_read()
52 utf8_4b(utf8, unicode); in nu_utf8_read()
54 return utf8 + 4; in nu_utf8_read()
61 return utf8 + 1; in nu_utf8_read()
79 const char* nu_utf8_revread(uint32_t *unicode, const char *utf8) { in nu_utf8_revread() argument
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/vendor/nunicode/src/libnu/
H A Dutf8.c82 char* nu_utf8_write(uint32_t unicode, char *utf8) { in nu_utf8_write() argument
85 if (utf8 != 0) { in nu_utf8_write()
87 case 1: *utf8 = (char)(unicode); break; in nu_utf8_write()
88 case 2: b2_utf8(unicode, utf8); break; in nu_utf8_write()
89 case 3: b3_utf8(unicode, utf8); break; in nu_utf8_write()
90 default: b4_utf8(unicode, utf8); break; /* len == 4 */ in nu_utf8_write()
94 return utf8 + codepoint_len; in nu_utf8_write()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/default/
H A Dutf.cpp16 std::u16string utf8_to_utf16::convert(std::string const& utf8) { in convert() argument
19 return converter.from_bytes(utf8); in convert()
21 return boost::locale::conv::utf_to_utf<char16_t>(utf8.c_str(), utf8.c_str() + utf8.size()); in convert()
/OK3568_Linux_fs/buildroot/dl/sox/git/src/
H A Did3.c162 id3_utf8_t * utf8; in lsx_id3_read_tag() local
195 if ((utf8 = utf8_id3tag_findframe(info.tag, id3tagmap[i][0], 0))) { in lsx_id3_read_tag()
196 char * comment = lsx_malloc(strlen(id3tagmap[i][1]) + 1 + strlen((char *)utf8) + 1); in lsx_id3_read_tag()
197 sprintf(comment, "%s=%s", id3tagmap[i][1], utf8); in lsx_id3_read_tag()
200 free(utf8); in lsx_id3_read_tag()
203 if ((utf8 = utf8_id3tag_findframe(info.tag, "TLEN", 0))) { in lsx_id3_read_tag()
204 unsigned long tlen = strtoul((char *)utf8, NULL, 10); in lsx_id3_read_tag()
209 free(utf8); in lsx_id3_read_tag()
/OK3568_Linux_fs/buildroot/package/libtomcrypt/
H A D0001-fix-CVE-2019-17362.patch14 src/pk/asn1/der/utf8/der_decode_utf8_string.c | 2 +-
17 diff --git a/src/pk/asn1/der/utf8/der_decode_utf8_string.c b/src/pk/asn1/der/utf8/der_decode_utf8_s…
19 --- a/src/pk/asn1/der/utf8/der_decode_utf8_string.c
20 +++ b/src/pk/asn1/der/utf8/der_decode_utf8_string.c
/OK3568_Linux_fs/kernel/fs/unicode/
H A DMakefile4 obj-$(CONFIG_UNICODE_NORMALIZATION_SELFTEST) += utf8-selftest.o
6 unicode-y := utf8-norm.o utf8-core.o
8 $(obj)/utf8-norm.o: $(obj)/utf8data.h
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/qt/src/
H A Dutf.cpp8 std::u16string utf8_to_utf16::convert(std::string const& utf8) { in convert() argument
9 auto utf16 = QString::fromUtf8(utf8.data(), utf8.length()); in convert()
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/hddtemp/hddtemp/
H A Dhddtemp-no-nls-support.patch37 diff -ru hddtemp-0.3-beta15.orig/src/utf8.c hddtemp-0.3-beta15/src/utf8.c
38 --- hddtemp-0.3-beta15.orig/src/utf8.c 2006-04-19 03:37:02.000000000 +0100
39 +++ hddtemp-0.3-beta15/src/utf8.c 2008-06-27 00:02:15.000000000 +0100
/OK3568_Linux_fs/buildroot/boot/grub2/
H A D0010-xnu-Fix-double-free-in-grub_xnu_devprop_add_property.patch9 grub_xnu_devprop_add_property() should not free utf8 and utf16 as it get
31 - prop->name = utf8;
48 + prop->name = utf8;
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bs4/tests/
H A Dtest_soup.py88 utf8 = b"\xc3\xa9"
89 soup = self.soup(utf8, fromEncoding="utf8")
298 utf8 = b"Sacr\xc3\xa9 bleu! \xe2\x98\x83"
299 dammit = UnicodeDammit(utf8)
402 utf8 = ("\N{SNOWMAN}" * 3).encode("utf8")
410 doc = utf8 + windows_1252 + utf8
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/vendor/nunicode/
H A Dfiles.txt12 include/libnu/utf8.h
20 src/libnu/utf8.c
/OK3568_Linux_fs/app/forlinx/flapp/src/plugins/allwinner/MediaUI/common/
H A Dcommonfunction.cpp143 QTextCodec *utf8 = QTextCodec::codecForName("UTF-8"); in UTF82GBK() local
145 str = utf8->toUnicode(inStr.toLocal8Bit()); in UTF82GBK()
/OK3568_Linux_fs/app/forlinx/flapp/src/plugins/allwinner/music/common/
H A Dcommonfunction.cpp141 QTextCodec *utf8 = QTextCodec::codecForName("UTF-8"); in UTF82GBK() local
143 str = utf8->toUnicode(inStr.toLocal8Bit()); in UTF82GBK()
/OK3568_Linux_fs/app/forlinx/flapp/src/plugins/allwinner/video/common/
H A Dcommonfunction.cpp143 QTextCodec *utf8 = QTextCodec::codecForName("UTF-8"); in UTF82GBK() local
145 str = utf8->toUnicode(inStr.toLocal8Bit()); in UTF82GBK()
/OK3568_Linux_fs/kernel/fs/vboxsf/
H A Ddir.c122 end = &info->name.string.utf8[info->name.size]; in vboxsf_dir_emit()
129 end = &info->name.string.utf8[info->name.size]; in vboxsf_dir_emit()
150 info->name.string.utf8, in vboxsf_dir_emit()
162 return dir_emit(ctx, info->name.string.utf8, info->name.length, in vboxsf_dir_emit()
451 memcpy(ssymname->string.utf8, symname, symname_size); in vboxsf_dir_symlink()
/OK3568_Linux_fs/buildroot/package/efivar/
H A D0003-Fix-all-the-places-Werror-address-of-packed-member-c.patch145 -utf8_to_ucs2(uint16_t *ucs2, ssize_t size, int terminate, uint8_t *utf8)
146 +utf8_to_ucs2(void *ucs2void, ssize_t size, int terminate, uint8_t *utf8)
155 @@ -162,10 +170,13 @@ utf8_to_ucs2(uint16_t *ucs2, ssize_t size, int terminate, uint8_t *utf8)
156 val = utf8[i] & 0x7f;
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/qemu/qemu/
H A D0008_have_dma_buf_rw_function_take_a_void_pointer.patch2 From: =?utf8?q?Philippe=20Mathieu-Daud=C3=A9?= <philmd@redhat.com>
6 Content-Type: text/plain; charset=utf8
H A D0021_let_st_pointer_pci_dma_function_propagate_MemTxResult.patch2 From: =?utf8?q?Philippe=20Mathieu-Daud=C3=A9?= <philmd@redhat.com>
6 Content-Type: text/plain; charset=utf8
H A DCVE-2021-3611_2.patch2 From: =?utf8?q?Philippe=20Mathieu-Daud=C3=A9?= <philmd@redhat.com>
7 Content-Type: text/plain; charset=utf8
H A DCVE-2021-3750-2.patch2 From: =?utf8?q?Philippe=20Mathieu-Daud=C3=A9?= <philmd@redhat.com>
7 Content-Type: text/plain; charset=utf8
H A D0011_let_dma_buf_rw_function_take_MemTxAttrs_argument.patch2 From: =?utf8?q?Philippe=20Mathieu-Daud=C3=A9?= <philmd@redhat.com>
6 Content-Type: text/plain; charset=utf8
/OK3568_Linux_fs/yocto/meta-openembedded/meta-perl/recipes-perl/libcgi/
H A Dlibcgi-perl_4.54.bb29 rm -rf ${B}/t/utf8.t
45 perl-module-utf8 \
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-core/sdbus-c++/sdbus-c++-libsystemd/
H A D0005-src-basic-missing.h-check-for-missing-strndupa.patch110 #include "utf8.h"
120 #include "utf8.h"
238 #include "utf8.h"
277 #include "utf8.h"
318 #include "utf8.h"
338 #include "utf8.h"
436 #include "utf8.h"
468 #include "utf8.h"
488 #include "utf8.h"
506 #include "utf8.h"
/OK3568_Linux_fs/kernel/arch/arm/configs/
H A Dpalmz72_defconfig68 CONFIG_FAT_DEFAULT_IOCHARSET="utf8"
71 CONFIG_NLS_DEFAULT="utf8"
/OK3568_Linux_fs/kernel/fs/fat/
H A DKconfig96 Note that "utf8" is not recommended for FAT filesystems.
97 If unsure, you shouldn't set "utf8" here - select the next option
109 Set this if you would like to have "utf8" mount option set
113 particular mount by adding "utf8=0" to mount options.

1234567