/AliOS-Things-master/components/linkkit/external/nghttp2/ |
A D | nghttp2_buf.c | 101 if (*chain == NULL) { in buf_chain_new() 154 bufs->head = chain; in nghttp2_bufs_init3() 183 bufs->head = chain; in nghttp2_bufs_realloc() 202 for (chain = bufs->head; chain;) { in nghttp2_bufs_free() 223 chain->next = NULL; in nghttp2_bufs_wrap_init() 230 bufs->head = chain; in nghttp2_bufs_wrap_init() 345 bufs->cur = chain; in bufs_alloc_chain() 466 for (chain = bufs->head; chain; chain = chain->next) { in nghttp2_bufs_remove() 482 for (chain = bufs->head; chain; chain = chain->next) { in nghttp2_bufs_remove() 504 for (chain = bufs->head; chain; chain = chain->next) { in nghttp2_bufs_remove_copy() [all …]
|
/AliOS-Things-master/components/mbedtls/library/ |
A D | ssl_cache.c | 72 cur = cache->chain; in mbedtls_ssl_cache_get() 153 cur = cache->chain; in mbedtls_ssl_cache_set() 207 if( cache->chain == NULL ) in mbedtls_ssl_cache_set() 213 cur = cache->chain; in mbedtls_ssl_cache_set() 214 cache->chain = cur->next; in mbedtls_ssl_cache_set() 232 cache->chain = cur; in mbedtls_ssl_cache_set() 305 cur = cache->chain; in mbedtls_ssl_cache_free() 324 cache->chain = NULL; in mbedtls_ssl_cache_free()
|
A D | ctr_drbg.c | 160 unsigned char chain[MBEDTLS_CTR_DRBG_BLOCKSIZE]; in block_cipher_df() local 207 memset( chain, 0, MBEDTLS_CTR_DRBG_BLOCKSIZE ); in block_cipher_df() 213 chain[i] ^= p[i]; in block_cipher_df() 218 … if( ( ret = mbedtls_aes_crypt_ecb( &aes_ctx, MBEDTLS_AES_ENCRYPT, chain, chain ) ) != 0 ) in block_cipher_df() 224 memcpy( tmp + j, chain, MBEDTLS_CTR_DRBG_BLOCKSIZE ); in block_cipher_df() 259 mbedtls_platform_zeroize( chain, sizeof( chain ) ); in block_cipher_df()
|
A D | x509_crl.c | 300 int mbedtls_x509_crl_parse_der( mbedtls_x509_crl *chain, in mbedtls_x509_crl_parse_der() argument 307 mbedtls_x509_crl *crl = chain; in mbedtls_x509_crl_parse_der() 539 int mbedtls_x509_crl_parse( mbedtls_x509_crl *chain, const unsigned char *buf, size_t buflen ) in mbedtls_x509_crl_parse() argument 547 if( chain == NULL || buf == NULL ) in mbedtls_x509_crl_parse() 574 if( ( ret = mbedtls_x509_crl_parse_der( chain, in mbedtls_x509_crl_parse() 597 return( mbedtls_x509_crl_parse_der( chain, buf, buflen ) ); in mbedtls_x509_crl_parse() 604 int mbedtls_x509_crl_parse_file( mbedtls_x509_crl *chain, const char *path ) in mbedtls_x509_crl_parse_file() argument 613 ret = mbedtls_x509_crl_parse( chain, buf, n ); in mbedtls_x509_crl_parse_file()
|
A D | x509_crt.c | 1100 mbedtls_x509_crt *crt = chain, *prev = NULL; in mbedtls_x509_crt_parse_der() 1134 if( crt != chain ) in mbedtls_x509_crt_parse_der() 1157 if( chain == NULL || buf == NULL ) in mbedtls_x509_crt_parse() 1172 return mbedtls_x509_crt_parse_der( chain, buf, buflen ); in mbedtls_x509_crt_parse() 1174 return mbedtls_x509_crt_parse_der( chain, buf, buflen ); in mbedtls_x509_crt_parse() 1226 ret = mbedtls_x509_crt_parse_der( chain, pem.buf, pem.buflen ); in mbedtls_x509_crt_parse() 1262 int mbedtls_x509_crt_parse_file( mbedtls_x509_crt *chain, const char *path ) in mbedtls_x509_crt_parse_file() argument 1271 ret = mbedtls_x509_crt_parse( chain, buf, n ); in mbedtls_x509_crt_parse_file() 1279 int mbedtls_x509_crt_parse_path( mbedtls_x509_crt *chain, const char *path ) in mbedtls_x509_crt_parse_path() argument 1329 w_ret = mbedtls_x509_crt_parse_file( chain, filename ); in mbedtls_x509_crt_parse_path() [all …]
|
/AliOS-Things-master/components/mbedtls/include/mbedtls/ |
A D | x509_crl.h | 109 int mbedtls_x509_crl_parse_der( mbedtls_x509_crl *chain, 123 int mbedtls_x509_crl_parse( mbedtls_x509_crl *chain, const unsigned char *buf, size_t buflen ); 136 int mbedtls_x509_crl_parse_file( mbedtls_x509_crl *chain, const char *path );
|
A D | x509_crt.h | 231 int mbedtls_x509_crt_parse_der( mbedtls_x509_crt *chain, const unsigned char *buf, 264 int mbedtls_x509_crt_parse( mbedtls_x509_crt *chain, const unsigned char *buf, size_t buflen ); 280 int mbedtls_x509_crt_parse_file( mbedtls_x509_crt *chain, const char *path ); 295 int mbedtls_x509_crt_parse_path( mbedtls_x509_crt *chain, const char *path );
|
A D | ssl_cache.h | 78 mbedtls_ssl_cache_entry *chain; /*!< start of the chain */ member
|
A D | config.h.bak | 3188 …_X509_MAX_INTERMEDIATE_CA 8 /**< Maximum number of intermediate CAs in a verification chain. */
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/enc/ |
A D | backward_references_enc.c | 235 int32_t* chain = (int32_t*)p->offset_length_; in VP8LHashChainFill() local 275 memset(chain + pos, 0xff, (len - MAX_LENGTH) * sizeof(*chain)); in VP8LHashChainFill() 283 chain[pos] = hash_to_first_index[hash_code]; in VP8LHashChainFill() 290 chain[pos] = hash_to_first_index[hash_code]; in VP8LHashChainFill() 296 chain[pos] = hash_to_first_index[GetPixPairHash64(argb + pos)]; in VP8LHashChainFill() 318 pos = chain[base_position]; in VP8LHashChainFill() 344 for (; pos >= min_pos && --iter; pos = chain[pos]) { in VP8LHashChainFill()
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/ruy/cmake/ |
A D | bazel_to_cmake.py | 195 …unique_values = sorted(set(itertools.chain.from_iterable(select_dict.values()))) # sorting ensures…
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/ |
A D | libtiff-CVE-2018-5784.patch | 7 leading to an infinite loop while traversing the chain. The libtiff
|
/AliOS-Things-master/components/SDL2/src/render/direct3d/ |
A D | SDL_render_d3d.c | 1682 IDirect3DSwapChain9 *chain; in D3D_CreateRenderer() local 1793 result = IDirect3DDevice9_GetSwapChain(data->device, 0, &chain); in D3D_CreateRenderer() 1799 result = IDirect3DSwapChain9_GetPresentParameters(chain, &pparams); in D3D_CreateRenderer() 1801 IDirect3DSwapChain9_Release(chain); in D3D_CreateRenderer() 1806 IDirect3DSwapChain9_Release(chain); in D3D_CreateRenderer()
|
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/doc/ |
A D | algorithm.txt | 23 the next 3 bytes. If the hash chain for this index is not empty, all 24 strings in the chain are compared with the current input string, and
|
A D | rfc1951.txt | 802 compressor examines the hash chain for XYZ. If the chain is empty, 804 byte in the input. If the hash chain is not empty, indicating that 807 compares all strings on the XYZ hash chain with the actual input data
|
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/contrib/masmx64/ |
A D | gvmat64.asm | 70 chainlenwmask equ rsp + 8 - LocalVarsSize ; high word: current chain len
|
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/contrib/masmx86/ |
A D | match686.asm | 120 chainlenwmask equ esp + 0 ; high word: current chain len
|
/AliOS-Things-master/components/SDL2/src/video/cocoa/ |
A D | SDL_cocoawindow.m | 299 /* The view responder chain gets messed with during setStyleMask */ 306 /* The view responder chain gets messed with during setStyleMask */ 1272 /* The default implementation doesn't pass rightMouseDown to responder chain */ 1818 /* The view responder chain gets messed with during setStyleMask */ 1875 /* The view responder chain gets messed with during setStyleMask */
|
/AliOS-Things-master/components/mbedtls/ |
A D | ChangeLog | 885 callback) or chain length limitations. 960 * Accept empty trusted CA chain in authentication mode 1044 traversing a chain of trusted CA. The issue would cause both flags, 1411 * When verifying a certificate chain, if an intermediate certificate is 1568 chain verification. 1720 length of an X.509 verification chain. 1943 This affects certificates in the user-supplied chain except the top 2258 length of an X.509 verification chain (default = 8). 2446 information (not the entire chain) 2846 + Added verification callback on certificate chain [all …]
|
/AliOS-Things-master/components/mbedtls/programs/ |
A D | README.md | 116 * [`x509/cert_app.c`](x509/cert_app.c): connects to a TLS server and verifies its certificate chain.
|
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/os400/ |
A D | zlib.inc | 363 D chain 10I 0 value
|
/AliOS-Things-master/components/SDL2/src/gfx/ |
A D | README | 148 The usual autotools build chain should be used. MacPorts or fink may
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/ |
A D | ChangeLog | 926 d9637758 Compute the hash chain once and for all for lossless compression. 1111 6c702b81 Speed up hash chain initialization using memset. 1132 a1411782 Optimization in hash chain comparison for 64 bit Arrays were compared 32 bits at a time, i… 1252 90fcfcd9 Insert less hash chain entries from the beginnings of long copies.
|
/AliOS-Things-master/components/py_engine/engine/tools/ |
A D | uncrustify.cfg | 2718 # Whether to enforce that all blocks of an 'if'/'else if'/'else' chain either 2726 # Whether to add braces to all blocks of an 'if'/'else if'/'else' chain.
|
/AliOS-Things-master/components/SDL2/src/image/external/jpeg-9b/ |
A D | libjpeg.txt | 1782 a chain of buffers. 2509 following the cinfo->marker_list pointer chain. All the special markers in
|