Home
last modified time | relevance | path

Searched refs:encoded (Results 1 – 25 of 344) sorted by relevance

12345678910>>...14

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/vendor/nunicode/src/libnu/
H A Dstrings.c6 static ssize_t _nu_strlen(const char *encoded, const char *limit, nu_read_iterator_t it) { in _nu_strlen() argument
9 const char *p = encoded; in _nu_strlen()
44 static ssize_t _nu_strbytelen(const char *encoded, const char *limit, nu_read_iterator_t it) { in _nu_strbytelen() argument
46 const char *p = encoded; in _nu_strbytelen()
52 return (p - encoded); in _nu_strbytelen()
65 ssize_t nu_strlen(const char *encoded, nu_read_iterator_t it) { in nu_strlen() argument
66 return _nu_strlen(encoded, NU_UNLIMITED, it); in nu_strlen()
73 ssize_t nu_strbytelen(const char *encoded, nu_read_iterator_t it) { in nu_strbytelen() argument
74 return _nu_strbytelen(encoded, NU_UNLIMITED, it); in nu_strbytelen()
81 ssize_t nu_strnlen(const char *encoded, size_t max_len, nu_read_iterator_t it) { in nu_strnlen() argument
[all …]
H A Dstrcoll.c11 const char **encoded, const char *limit, in _compound_weight() argument
18 const char *p = *encoded; in _compound_weight()
40 np = *encoded; in _compound_weight()
50 *encoded = (w == 0 ? np : p); in _compound_weight()
227 const char* _nu_strrchr(const char *encoded, const char *limit, in _nu_strrchr() argument
238 const char *p = encoded; in _nu_strrchr()
312 const char* nu_strchr(const char *encoded, uint32_t c, nu_read_iterator_t read) { in nu_strchr() argument
313 return _nu_strchr(encoded, NU_UNLIMITED, in nu_strchr()
319 const char* nu_strcasechr(const char *encoded, uint32_t c, nu_read_iterator_t read) { in nu_strcasechr() argument
320 return _nu_strchr(encoded, NU_UNLIMITED, in nu_strcasechr()
[all …]
H A Dutf8.c6 int nu_utf8_validread(const char *encoded, size_t max_len) { in nu_utf8_validread() argument
7 int len = utf8_validread_basic(encoded, max_len); in nu_utf8_validread()
21 uint8_t p1 = *(const unsigned char *)(encoded); in nu_utf8_validread()
33 uint8_t p1 = *(const unsigned char *)(encoded); in nu_utf8_validread()
38 uint8_t p2 = *(const unsigned char *)(encoded + 1); in nu_utf8_validread()
54 uint8_t p1 = *(const unsigned char *)(encoded); in nu_utf8_validread()
60 uint8_t p2 = *(const unsigned char *)(encoded + 1); in nu_utf8_validread()
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-graphics/libsdl/libsdl-1.2.15/
H A DCVE-2019-7574.patch29 - Uint8 *freeable, *encoded, *decoded;
30 + Uint8 *freeable, *encoded, *encoded_end, *decoded;
37 encoded = *audio_buf;
38 + encoded_end = encoded + encoded_len;
46 + if (encoded + 4 > encoded_end) goto invalid_size;
48 state[c].sample = ((encoded[1]<<8)|encoded[0]);
49 encoded += 2;
54 + if (encoded + 4 > encoded_end) goto invalid_size;
55 Fill_IMA_ADPCM_block(decoded, encoded,
57 encoded += 4;
H A DCVE-2019-7577.patch64 - Uint8 *freeable, *encoded, *decoded;
65 + Uint8 *freeable, *encoded, *encoded_end, *decoded;
72 encoded = *audio_buf;
73 + encoded_end = encoded + encoded_len;
81 + if (encoded + 7 + (stereo ? 7 : 0) > encoded_end) goto too_short;
82 state[0]->hPredictor = *encoded++;
84 state[1]->hPredictor = *encoded++;
89 state[0]->iDelta = ((encoded[1]<<8)|encoded[0]);
90 encoded += sizeof(Sint16);
96 + if (encoded + 1 > encoded_end) goto too_short;
[all …]
H A DCVE-2019-7575.patch31 - Uint8 *freeable, *encoded, *encoded_end, *decoded;
32 + Uint8 *freeable, *encoded, *encoded_end, *decoded, *decoded_end;
48 - if (encoded + 7 + (stereo ? 7 : 0) > encoded_end) goto too_short;
49 + if (encoded + 7 + (stereo ? 7 : 0) > encoded_end) goto invalid_size;
50 state[0]->hPredictor = *encoded++;
52 state[1]->hPredictor = *encoded++;
65 - if (encoded + 1 > encoded_end) goto too_short;
66 + if (encoded + 1 > encoded_end) goto invalid_size;
69 nybble = (*encoded)>>4;
H A DCVE-2019-7572.patch53 - Uint8 *freeable, *encoded, *encoded_end, *decoded;
54 + Uint8 *freeable, *encoded, *encoded_end, *decoded, *decoded_end;
77 if (encoded + 4 > encoded_end) goto invalid_size;
80 Fill_IMA_ADPCM_block(decoded, encoded,
82 encoded += 4;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/vendor/nunicode/include/libnu/
H A Dstrcoll_internal.h26 const char *encoded, const char *encoded_limit, nu_read_iterator_t encoded_read,
71 const char* nu_default_compound_read(const char *encoded, const char *encoded_limit, in nu_default_compound_read() argument
77 return encoded_read(encoded, unicode); in nu_default_compound_read()
93 const char* nu_nocase_compound_read(const char *encoded, const char *encoded_limit, in nu_nocase_compound_read() argument
102 return encoded; in nu_nocase_compound_read()
108 if (encoded >= encoded_limit) { in nu_nocase_compound_read()
110 return encoded; in nu_nocase_compound_read()
113 const char *p = encoded_read(encoded, unicode); in nu_nocase_compound_read()
188 const char* _nu_strrchr(const char *encoded, const char *limit,
H A Dstrings.h38 typedef const char* (*nu_read_iterator_t)(const char *encoded, uint32_t *unicode);
48 typedef const char* (*nu_revread_iterator_t)(uint32_t *unicode, const char *encoded);
55 typedef char* (*nu_write_iterator_t)(uint32_t unicode, char *encoded);
73 const char *encoded, const char *limit, nu_read_iterator_t read,
93 ssize_t nu_strlen(const char *encoded, nu_read_iterator_t it);
115 ssize_t nu_strbytelen(const char *encoded, nu_read_iterator_t it);
126 ssize_t nu_strnlen(const char *encoded, size_t max_len, nu_read_iterator_t it);
H A Dstrcoll.h47 const char* nu_strchr(const char *encoded, uint32_t c, nu_read_iterator_t read);
55 const char* nu_strcasechr(const char *encoded, uint32_t c, nu_read_iterator_t read);
66 const char* nu_strrchr(const char *encoded, uint32_t c, nu_read_iterator_t read);
74 const char* nu_strrcasechr(const char *encoded, uint32_t c, nu_read_iterator_t read);
130 const char* nu_strnchr(const char *encoded, size_t max_len, uint32_t c,
138 const char* nu_strcasenchr(const char *encoded, size_t max_len, uint32_t c,
146 const char* nu_strrnchr(const char *encoded, size_t max_len, uint32_t c,
154 const char* nu_strrcasenchr(const char *encoded, size_t max_len, uint32_t c,
H A Dcasemap.h63 const char* _nu_toupper(const char *encoded, const char *limit, nu_read_iterator_t read,
97 const char* _nu_tolower(const char *encoded, const char *limit, nu_read_iterator_t read,
130 const char* _nu_tofold(const char *encoded, const char *limit, nu_read_iterator_t read,
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/soundwire/
H A Dqcom,sdw.txt18 Value type: <prop-encoded-array>
24 Value type: <prop-encoded-array>
34 Value type: <prop-encoded-array>
54 Value type: <prop-encoded-array>
61 Value type: <prop-encoded-array>
68 Value type: <prop-encoded-array>
76 Value type: <prop-encoded-array>
82 Value type: <prop-encoded-array>
91 Value type: <prop-encoded-array>
99 Value type: <prop-encoded-array>
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/util/
H A Durl.cpp33 std::ostringstream encoded; in percentEncode() local
35 encoded.fill('0'); in percentEncode()
36 encoded << std::hex; in percentEncode()
40 encoded << c; in percentEncode()
42 encoded << '%' << std::setw(2) << int(c); in percentEncode()
46 return encoded.str(); in percentEncode()
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/sound/
H A Dqcom,q6afe.txt50 Value type: <prop-encoded-array>
56 Value type: <prop-encoded-array>
64 Value type: <prop-encoded-array>
71 Value type: <prop-encoded-array>
78 Value type: <prop-encoded-array>
85 Value type: <prop-encoded-array>
94 Value type: <prop-encoded-array>
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/phy/
H A Dqcom,usb-8x16-phy.txt10 Value type: <prop-encoded-array>
15 Value type: <prop-encoded-array>
42 Value type: <prop-encoded-array>
52 Value type: <prop-encoded-array>
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/i2c/
H A Di2c-qcom-cci.txt15 Value type: <prop-encoded-array>
21 Value type: <prop-encoded-array>
28 Value type: <prop-encoded-array>
39 Value type: <prop-encoded-array>
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/powerpc/fsl/
H A Dpamu.txt13 - ranges : <prop-encoded-array>
20 - interrupts : <prop-encoded-array>
31 - reg : <prop-encoded-array>
51 - reg : <prop-encoded-array>
58 : <prop-encoded-array>
64 : <prop-encoded-array>
83 - fsl,liodn-reg : <prop-encoded-array>
H A Ddcsr.txt42 Value type: <prop-encoded-array>
89 Value type: <prop-encoded-array>
118 Value type: <prop-encoded-array>
155 Value type: <prop-encoded-array>
180 Value type: <prop-encoded-array>
217 Value type: <prop-encoded-array>
245 Value type: <prop-encoded-array>
276 Value type: <prop-encoded-array>
305 Value type: <prop-encoded-array>
335 Value type: <prop-encoded-array>
[all …]
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/media/
H A Dqcom,camss.txt13 Value type: <prop-encoded-array>
35 Value type: <prop-encoded-array>
53 Value type: <prop-encoded-array>
59 Value type: <prop-encoded-array>
108 Value type: <prop-encoded-array>
134 Value type: <prop-encoded-array>
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/mfd/
H A Dqcom-pm8xxx.txt28 Value type: <prop-encoded-array>
40 encoded as follows:
70 Value type: <prop-encoded-array>
75 Value type: <prop-encoded-array>
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/pci/
H A Dqcom,pcie.txt19 Value type: <prop-encoded-array>
48 Value type: <prop-encoded-array>
53 Value type: <prop-encoded-array>
68 Value type: <prop-encoded-array>
73 Value type: <prop-encoded-array>
78 Value type: <prop-encoded-array>
147 Value type: <prop-encoded-array>
216 Value type: <prop-encoded-array>
253 Value type: <prop-encoded-array>
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/soc/qcom/
H A Dqcom,smem.txt14 Value type: <prop-encoded-array>
19 Value type: <prop-encoded-array>
24 Value type: <prop-encoded-array>
H A Dqcom,glink.txt20 Value type: <prop-encoded-array>
31 Value type: <prop-encoded-array>
36 Value type: <prop-encoded-array>
54 Value type: <prop-encoded-array>
/OK3568_Linux_fs/kernel/Documentation/userspace-api/media/v4l/
H A Dvidioc-g-jpegcomp.rst47 itself, and it'll be stored in the JPEG-encoded fields (eg; interlacing
49 like 'encoded by me' or so.
53 stored in the JPEG-encoded fields. These define how the JPEG field is
54 encoded. If you omit them, applications assume you've used standard
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/remoteproc/
H A Dqcom,wcnss-pil.txt16 Value type: <prop-encoded-array>
27 Value type: <prop-encoded-array>
47 Value type: <prop-encoded-array>
58 Value type: <prop-encoded-array>
76 Value type: <prop-encoded-array>

12345678910>>...14