| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/vendor/nunicode/src/libnu/ |
| H A D | strings.c | 6 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 D | strcoll.c | 11 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 D | utf8.c | 6 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 D | CVE-2019-7574.patch | 29 - 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 D | CVE-2019-7577.patch | 64 - 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 D | CVE-2019-7575.patch | 31 - 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 D | CVE-2019-7572.patch | 53 - 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 D | strcoll_internal.h | 26 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 D | strings.h | 38 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 D | strcoll.h | 47 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 D | casemap.h | 63 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 D | qcom,sdw.txt | 18 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 D | url.cpp | 33 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 D | qcom,q6afe.txt | 50 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 D | qcom,usb-8x16-phy.txt | 10 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 D | i2c-qcom-cci.txt | 15 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 D | pamu.txt | 13 - 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 D | dcsr.txt | 42 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 D | qcom,camss.txt | 13 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 D | qcom-pm8xxx.txt | 28 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 D | qcom,pcie.txt | 19 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 D | qcom,smem.txt | 14 Value type: <prop-encoded-array> 19 Value type: <prop-encoded-array> 24 Value type: <prop-encoded-array>
|
| H A D | qcom,glink.txt | 20 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 D | vidioc-g-jpegcomp.rst | 47 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 D | qcom,wcnss-pil.txt | 16 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>
|