| /OK3568_Linux_fs/external/rockit/mpi/sdk/include/ |
| H A D | rk_common.h | 164 RK_VIDEO_ID_ImageHEIC, /**< HEIF image encoded with HEVC */ 186 RK_AUDIO_ID_ADPCM_G722, /**< Any variant of ADPCM_G722 encoded data */ 187 RK_AUDIO_ID_ADPCM_G726, /**< Any variant of ADPCM_G726 encoded data */ 188 RK_AUDIO_ID_ADPCM_G726LE, /**< G.726 ADPCM little-endian encoded data*/ 189 RK_AUDIO_ID_ADPCM_IMA_QT, /**< Any variant of ADPCM_IMA encoded data */ 190 RK_AUDIO_ID_AMR_NB, /**< Any variant of AMR_NB encoded data */ 191 RK_AUDIO_ID_AMR_WB, /**< Any variant of AMR_WB encoded data */ 193 RK_AUDIO_ID_GSMEFR, /**< Any variant of GSM Enhanced Fullrate encoded data*/ 194 RK_AUDIO_ID_GSMHR, /**< Any variant of GSM Halfrate encoded data */ 195 RK_AUDIO_ID_PDCFR, /**< Any variant of PDC Fullrate encoded data */ [all …]
|
| /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, 59 /** Default compound read, equal to simply calling encoded_read(encoded, &unicode) 62 * @param encoded encoded string 63 * @param encoded_limit upper limit for encoded. NU_UNLIMITED for 0-terminated 68 * @return pointer to next encoded codepoint 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() 81 * encoded_read(encoded, &unicode) with nu_toupper() applied internally 84 * @param encoded encoded string 85 * @param encoded_limit upper limit for encoded. NU_UNLIMITED for 0-terminated [all …]
|
| H A D | strcoll.h | 41 * @param encoded encoded string 43 * @param read read (decode) function for encoded string 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); 60 * @param encoded encoded string 62 * @param read read (decode) function for encoded string 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); 79 * @param s1 first encoded strings 80 * @param s2 second encoded strings [all …]
|
| 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, 86 * @param encoded encoded string 93 ssize_t nu_strlen(const char *encoded, nu_read_iterator_t it); 95 /** Get encoded string bytes length (encoding variant) 107 /** Get encoded string bytes length 110 * @param encoded encoded string 115 ssize_t nu_strbytelen(const char *encoded, nu_read_iterator_t it); [all …]
|
| H A D | casemap.h | 52 * @param encoded pointer to encoded string 53 * @param limit memory limit of encoded string or NU_UNLIMITED 63 const char* _nu_toupper(const char *encoded, const char *limit, nu_read_iterator_t read, 86 * @param encoded pointer to encoded string 87 * @param limit memory limit of encoded string or NU_UNLIMITED 97 const char* _nu_tolower(const char *encoded, const char *limit, nu_read_iterator_t read, 119 * @param encoded pointer to encoded string 120 * @param limit memory limit of encoded string or NU_UNLIMITED 130 const char* _nu_tofold(const char *encoded, const char *limit, nu_read_iterator_t read,
|
| H A D | utf8.h | 29 * @param utf8 pointer to UTF-8 encoded string 69 * is not going under beginning of encoded string. Normally you 75 * @param utf8 pointer to UTF-8 encoded string 101 * @param encoded buffer with encoded string 106 int nu_utf8_validread(const char *encoded, size_t max_len); 113 /** Write unicode codepoints into UTF-8 encoded string 117 * @param utf8 pointer to buffer to write UTF-8 encoded text to, 118 * should be large enough to hold encoded value
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/vendor/nunicode/src/libnu/ |
| H A D | strcoll.c | 11 const char **encoded, const char *limit, in _compound_weight() argument 18 const char *p = *encoded; in _compound_weight() 35 * to needed place, otherwise re-read encoded in the forward 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 [all …]
|
| 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 | 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/external/rockit/tgi/sdk/include/ |
| H A D | RTMediaDef.h | 62 RT_VIDEO_ID_ImageHEIC, /**< HEIF image encoded with HEVC */ 83 RT_AUDIO_ID_ADPCM_G722, /**< Any variant of ADPCM_G722 encoded data */ 84 RT_AUDIO_ID_ADPCM_G726, /**< Any variant of ADPCM_G726 encoded data */ 85 RT_AUDIO_ID_ADPCM_IMA_QT, /**< Any variant of ADPCM_IMA encoded data */ 86 RT_AUDIO_ID_AMR_NB, /**< Any variant of AMR_NB encoded data */ 87 RT_AUDIO_ID_AMR_WB, /**< Any variant of AMR_WB encoded data */ 89 RT_AUDIO_ID_GSMEFR, /**< Any variant of GSM Enhanced Fullrate encoded data*/ 90 RT_AUDIO_ID_GSMHR, /**< Any variant of GSM Halfrate encoded data */ 91 RT_AUDIO_ID_PDCFR, /**< Any variant of PDC Fullrate encoded data */ 92 RT_AUDIO_ID_PDCEFR, /**< Any variant of PDC Enhanced Fullrate encoded data */ [all …]
|
| /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;
|
| /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/kernel/drivers/soc/qcom/ |
| H A D | qmi_encdec.c | 68 * skip_to_next_elem() - Skip to next element in the structure to be encoded 77 * Return: struct info of the next element that can be encoded. 153 * @buf_dst: Buffer to store the encoded information. 154 * @buf_src: Buffer containing the elements to be encoded. 155 * @elem_len: Number of elements, in the buf_src, to be encoded. 156 * @elem_size: Size of a single instance of the element to be encoded. 160 * encoded information in the destination buffer "buf_dst". The elements are 162 * function returns the number of bytes of encoded information. 164 * Return: The number of bytes of encoded information. 182 * @buf_dst: Buffer to store the encoded information. [all …]
|
| /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/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/external/security/rk_tee_user/v2/host/openssl/include/openssl/ |
| H A D | ecdsa.h | 94 * (*pp += length of the DER encoded signature)). 97 * \return the length of the DER encoded ECDSA_SIG object or 0 101 /** Decodes a DER encoded ECDSA signature (note: this function changes *pp 104 * \param pp memory buffer with the DER encoded signature 165 /** Returns the maximum length of the DER encoded signature 167 * \return numbers of bytes required for the DER encoded signature 185 * \param sig memory for the DER encoded created signature 198 * \param sig buffer to hold the DER encoded signature 215 * \param sig pointer to the DER encoded signature 216 * \param siglen length of the DER encoded signature
|
| /OK3568_Linux_fs/kernel/usr/ |
| H A D | Kconfig | 60 Support loading of a gzip encoded initial ramdisk or cpio buffer. 68 Support loading of a bzip2 encoded initial ramdisk or cpio buffer 76 Support loading of a LZMA encoded initial ramdisk or cpio buffer 84 Support loading of a XZ encoded initial ramdisk or cpio buffer. 92 Support loading of a LZO encoded initial ramdisk or cpio buffer 100 Support loading of a LZ4 encoded initial ramdisk or cpio buffer 109 Support loading of a ZSTD encoded initial ramdisk or cpio buffer.
|
| /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/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/external/security/rk_tee_user/v2/export-ta_arm64/include/openssl/ |
| H A D | dsa.h | 224 // encoded signatures as opposed to raw |BIGNUM|s. If you don't know what 263 // DSA_size returns the size, in bytes, of an ASN.1 encoded, DSA signature 270 // DSA_SIG_parse parses a DER-encoded DSA-Sig-Value structure from |cbs| and 274 // DSA_SIG_marshal marshals |sig| as a DER-encoded DSA-Sig-Value and appends the 278 // DSA_parse_public_key parses a DER-encoded DSA public key from |cbs| and 282 // DSA_marshal_public_key marshals |dsa| as a DER-encoded DSA public key and 287 // DSA_parse_private_key parses a DER-encoded DSA private key from |cbs| and 291 // DSA_marshal_private_key marshals |dsa| as a DER-encoded DSA private key and 296 // DSA_parse_parameters parses a DER-encoded Dss-Parms structure (RFC 3279) 301 // DSA_marshal_parameters marshals |dsa| as a DER-encoded Dss-Parms structure [all …]
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/openssl/ |
| H A D | dsa.h | 224 // encoded signatures as opposed to raw |BIGNUM|s. If you don't know what 263 // DSA_size returns the size, in bytes, of an ASN.1 encoded, DSA signature 270 // DSA_SIG_parse parses a DER-encoded DSA-Sig-Value structure from |cbs| and 274 // DSA_SIG_marshal marshals |sig| as a DER-encoded DSA-Sig-Value and appends the 278 // DSA_parse_public_key parses a DER-encoded DSA public key from |cbs| and 282 // DSA_marshal_public_key marshals |dsa| as a DER-encoded DSA public key and 287 // DSA_parse_private_key parses a DER-encoded DSA private key from |cbs| and 291 // DSA_marshal_private_key marshals |dsa| as a DER-encoded DSA private key and 296 // DSA_parse_parameters parses a DER-encoded Dss-Parms structure (RFC 3279) 301 // DSA_marshal_parameters marshals |dsa| as a DER-encoded Dss-Parms structure [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/ |
| H A D | vector-builder.h | 33 encode the first element in each pattern. The number of encoded 87 the last encoded element for the containing pattern. This is 168 /* Return the number of elements that are explicitly encoded. The vec 169 starts with these explicitly-encoded elements and may contain additional 179 /* Return true if every element of the vector is explicitly encoded. */ 205 are encoded in the same way. */ 225 encoded explicitly. */ 241 the last encoded element for that pattern. */ in elt() 247 /* If there are no steps, the final encoded value is the right one. */ in elt() 251 /* Otherwise work out the value from the last two encoded elements. */ in elt() [all …]
|