| /OK3568_Linux_fs/buildroot/package/argp-standalone/ |
| H A D | 0002-isprint.patch | 27 int __key = __opt->key; 28 - return __key > 0 && isprint (__key); 29 + return __key > 0 && __key <= UCHAR_MAX && isprint (__key); 38 int __key = __opt->key; 41 - return __key > 0 && isprint (__key); 42 + return __key > 0 && __key <= UCHAR_MAX && isprint (__key);
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-support/argp-standalone/files/ |
| H A D | 0002-isprint.patch | 33 int __key = __opt->key; 34 - return __key > 0 && isprint (__key); 35 + return __key > 0 && __key <= UCHAR_MAX && isprint (__key); 44 int __key = __opt->key; 47 - return __key > 0 && isprint (__key); 48 + return __key > 0 && __key <= UCHAR_MAX && isprint (__key);
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/parallel/ |
| H A D | losertree.h | 134 __insert_start(const _Tp& __key, int __source, bool __sup) in __insert_start() argument 142 ::new(&(_M_losers[__i]._M_key)) _Tp(__key); in __insert_start() 146 _M_losers[__pos]._M_key = __key; in __insert_start() 222 __delete_min_insert(_Tp __key, bool __sup) in __delete_min_insert() argument 238 && ((_M_comp(_M_losers[__pos]._M_key, __key)) in __delete_min_insert() 239 || (!_M_comp(__key, _M_losers[__pos]._M_key) in __delete_min_insert() 245 swap(_M_losers[__pos]._M_key, __key); in __delete_min_insert() 251 _M_losers[0]._M_key = __key; in __delete_min_insert() 324 __delete_min_insert(_Tp __key, bool __sup) in __delete_min_insert() argument 338 && _M_comp(_M_losers[__pos]._M_key, __key))) in __delete_min_insert() [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/parallel/ |
| H A D | losertree.h | 134 __insert_start(const _Tp& __key, int __source, bool __sup) in __insert_start() argument 142 ::new(&(_M_losers[__i]._M_key)) _Tp(__key); in __insert_start() 146 _M_losers[__pos]._M_key = __key; in __insert_start() 222 __delete_min_insert(_Tp __key, bool __sup) in __delete_min_insert() argument 238 && ((_M_comp(_M_losers[__pos]._M_key, __key)) in __delete_min_insert() 239 || (!_M_comp(__key, _M_losers[__pos]._M_key) in __delete_min_insert() 245 swap(_M_losers[__pos]._M_key, __key); in __delete_min_insert() 251 _M_losers[0]._M_key = __key; in __delete_min_insert() 324 __delete_min_insert(_Tp __key, bool __sup) in __delete_min_insert() argument 338 && _M_comp(_M_losers[__pos]._M_key, __key))) in __delete_min_insert() [all …]
|
| /OK3568_Linux_fs/kernel/include/net/netfilter/ |
| H A D | nf_tables_offload.h | 78 #define NFT_OFFLOAD_MATCH_FLAGS(__key, __base, __field, __len, __reg, __flags) \ argument 84 (__reg)->key = __key; \ 87 #define NFT_OFFLOAD_MATCH(__key, __base, __field, __len, __reg) \ argument 88 NFT_OFFLOAD_MATCH_FLAGS(__key, __base, __field, __len, __reg, 0) 90 #define NFT_OFFLOAD_MATCH_EXACT(__key, __base, __field, __len, __reg) \ argument 91 NFT_OFFLOAD_MATCH(__key, __base, __field, __len, __reg) \
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/backward/ |
| H A D | hash_map | 212 find(const key_type& __key) 213 { return _M_ht.find(__key); } 216 find(const key_type& __key) const 217 { return _M_ht.find(__key); } 220 operator[](const key_type& __key) 221 { return _M_ht.find_or_insert(value_type(__key, _Tp())).second; } 224 count(const key_type& __key) const 225 { return _M_ht.count(__key); } 228 equal_range(const key_type& __key) 229 { return _M_ht.equal_range(__key); } [all …]
|
| H A D | hashtable.h | 517 find(const key_type& __key) in _GLIBCXX_VISIBILITY() 519 size_type __n = _M_bkt_num_key(__key); in _GLIBCXX_VISIBILITY() 522 __first && !_M_equals(_M_get_key(__first->_M_val), __key); in _GLIBCXX_VISIBILITY() 529 find(const key_type& __key) const in _GLIBCXX_VISIBILITY() 531 size_type __n = _M_bkt_num_key(__key); in _GLIBCXX_VISIBILITY() 534 __first && !_M_equals(_M_get_key(__first->_M_val), __key); in _GLIBCXX_VISIBILITY() 541 count(const key_type& __key) const in _GLIBCXX_VISIBILITY() 543 const size_type __n = _M_bkt_num_key(__key); in _GLIBCXX_VISIBILITY() 548 if (_M_equals(_M_get_key(__cur->_M_val), __key)) in _GLIBCXX_VISIBILITY() 554 equal_range(const key_type& __key); in _GLIBCXX_VISIBILITY() [all …]
|
| H A D | hash_set | 215 find(const key_type& __key) const 216 { return _M_ht.find(__key); } 219 count(const key_type& __key) const 220 { return _M_ht.count(__key); } 223 equal_range(const key_type& __key) const 224 { return _M_ht.equal_range(__key); } 227 erase(const key_type& __key) 228 {return _M_ht.erase(__key); } 409 find(const key_type& __key) const 410 { return _M_ht.find(__key); } [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/backward/ |
| H A D | hash_map | 212 find(const key_type& __key) 213 { return _M_ht.find(__key); } 216 find(const key_type& __key) const 217 { return _M_ht.find(__key); } 220 operator[](const key_type& __key) 221 { return _M_ht.find_or_insert(value_type(__key, _Tp())).second; } 224 count(const key_type& __key) const 225 { return _M_ht.count(__key); } 228 equal_range(const key_type& __key) 229 { return _M_ht.equal_range(__key); } [all …]
|
| H A D | hashtable.h | 517 find(const key_type& __key) in _GLIBCXX_VISIBILITY() 519 size_type __n = _M_bkt_num_key(__key); in _GLIBCXX_VISIBILITY() 522 __first && !_M_equals(_M_get_key(__first->_M_val), __key); in _GLIBCXX_VISIBILITY() 529 find(const key_type& __key) const in _GLIBCXX_VISIBILITY() 531 size_type __n = _M_bkt_num_key(__key); in _GLIBCXX_VISIBILITY() 534 __first && !_M_equals(_M_get_key(__first->_M_val), __key); in _GLIBCXX_VISIBILITY() 541 count(const key_type& __key) const in _GLIBCXX_VISIBILITY() 543 const size_type __n = _M_bkt_num_key(__key); in _GLIBCXX_VISIBILITY() 548 if (_M_equals(_M_get_key(__cur->_M_val), __key)) in _GLIBCXX_VISIBILITY() 554 equal_range(const key_type& __key); in _GLIBCXX_VISIBILITY() [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/ext/ |
| H A D | hash_map | 212 find(const key_type& __key) 213 { return _M_ht.find(__key); } 216 find(const key_type& __key) const 217 { return _M_ht.find(__key); } 220 operator[](const key_type& __key) 221 { return _M_ht.find_or_insert(value_type(__key, _Tp())).second; } 224 count(const key_type& __key) const 225 { return _M_ht.count(__key); } 228 equal_range(const key_type& __key) 229 { return _M_ht.equal_range(__key); } [all …]
|
| H A D | hash_set | 215 find(const key_type& __key) const 216 { return _M_ht.find(__key); } 219 count(const key_type& __key) const 220 { return _M_ht.count(__key); } 223 equal_range(const key_type& __key) const 224 { return _M_ht.equal_range(__key); } 227 erase(const key_type& __key) 228 {return _M_ht.erase(__key); } 409 find(const key_type& __key) const 410 { return _M_ht.find(__key); } [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/ext/ |
| H A D | hash_map | 212 find(const key_type& __key) 213 { return _M_ht.find(__key); } 216 find(const key_type& __key) const 217 { return _M_ht.find(__key); } 220 operator[](const key_type& __key) 221 { return _M_ht.find_or_insert(value_type(__key, _Tp())).second; } 224 count(const key_type& __key) const 225 { return _M_ht.count(__key); } 228 equal_range(const key_type& __key) 229 { return _M_ht.equal_range(__key); } [all …]
|
| H A D | hash_set | 215 find(const key_type& __key) const 216 { return _M_ht.find(__key); } 219 count(const key_type& __key) const 220 { return _M_ht.count(__key); } 223 equal_range(const key_type& __key) const 224 { return _M_ht.equal_range(__key); } 227 erase(const key_type& __key) 228 {return _M_ht.erase(__key); } 409 find(const key_type& __key) const 410 { return _M_ht.find(__key); } [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/ |
| H A D | search.h | 129 extern void *tsearch (const void *__key, void **__rootp, 134 extern void *tfind (const void *__key, void *const *__rootp, 138 extern void *tdelete (const void *__restrict __key, 171 extern void *lfind (const void *__key, const void *__base, 176 extern void *lsearch (const void *__key, void *__base,
|
| H A D | argp.h | 113 typedef error_t (*argp_parser_t) (int __key, char *__arg, 227 char *(*help_filter) (int __key, const char *__text, void *__input); 538 int __key = __opt->key; in __NTH() local 539 return __key > 0 && __key <= UCHAR_MAX && isprint (__key); in __NTH()
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/ |
| H A D | search.h | 129 extern void *tsearch (const void *__key, void **__rootp, 134 extern void *tfind (const void *__key, void *const *__rootp, 138 extern void *tdelete (const void *__restrict __key, 171 extern void *lfind (const void *__key, const void *__base, 176 extern void *lsearch (const void *__key, void *__base,
|
| H A D | argp.h | 113 typedef error_t (*argp_parser_t) (int __key, char *__arg, 227 char *(*help_filter) (int __key, const char *__text, void *__input); 538 int __key = __opt->key; in __NTH() local 539 return __key > 0 && __key <= UCHAR_MAX && isprint (__key); in __NTH()
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/aarch64-none-linux-gnu/bits/ |
| H A D | gthr-single.h | 223 __gthread_key_create (__gthread_key_t *__key _GLIBCXX_UNUSED, void (*__func) (void *) _GLIBCXX_UNUS… in __gthread_key_create() 229 __gthread_key_delete (__gthread_key_t __key _GLIBCXX_UNUSED) in __gthread_key_delete() 235 __gthread_getspecific (__gthread_key_t __key _GLIBCXX_UNUSED) in __gthread_getspecific() 241 __gthread_setspecific (__gthread_key_t __key _GLIBCXX_UNUSED, const void *__v _GLIBCXX_UNUSED) in __gthread_setspecific()
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/arm-none-linux-gnueabihf/bits/ |
| H A D | gthr-single.h | 223 __gthread_key_create (__gthread_key_t *__key _GLIBCXX_UNUSED, void (*__func) (void *) _GLIBCXX_UNUS… in __gthread_key_create() 229 __gthread_key_delete (__gthread_key_t __key _GLIBCXX_UNUSED) in __gthread_key_delete() 235 __gthread_getspecific (__gthread_key_t __key _GLIBCXX_UNUSED) in __gthread_getspecific() 241 __gthread_setspecific (__gthread_key_t __key _GLIBCXX_UNUSED, const void *__v _GLIBCXX_UNUSED) in __gthread_setspecific()
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/libcxx/include/ |
| H A D | __threading_support | 197 int __libcpp_tls_create(__libcpp_tls_key* __key, 201 void *__libcpp_tls_get(__libcpp_tls_key __key); 204 int __libcpp_tls_set(__libcpp_tls_key __key, void *__p); 379 int __libcpp_tls_create(__libcpp_tls_key *__key, void (*__at_exit)(void *)) 381 return pthread_key_create(__key, __at_exit); 384 void *__libcpp_tls_get(__libcpp_tls_key __key) 386 return pthread_getspecific(__key); 389 int __libcpp_tls_set(__libcpp_tls_key __key, void *__p) 391 return pthread_setspecific(__key, __p);
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/libcxx/include/ |
| H A D | __threading_support | 197 int __libcpp_tls_create(__libcpp_tls_key* __key, 201 void *__libcpp_tls_get(__libcpp_tls_key __key); 204 int __libcpp_tls_set(__libcpp_tls_key __key, void *__p); 379 int __libcpp_tls_create(__libcpp_tls_key *__key, void (*__at_exit)(void *)) 381 return pthread_key_create(__key, __at_exit); 384 void *__libcpp_tls_get(__libcpp_tls_key __key) 386 return pthread_getspecific(__key); 389 int __libcpp_tls_set(__libcpp_tls_key __key, void *__p) 391 return pthread_setspecific(__key, __p);
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/bits/ |
| H A D | mman-shared.h | 65 int pkey_set (int __key, unsigned int __access_rights) __THROW; 69 int pkey_get (int __key) __THROW; 73 int pkey_free (int __key) __THROW;
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/bits/ |
| H A D | mman-shared.h | 65 int pkey_set (int __key, unsigned int __access_rights) __THROW; 69 int pkey_get (int __key) __THROW; 73 int pkey_free (int __key) __THROW;
|
| /OK3568_Linux_fs/kernel/include/net/sctp/ |
| H A D | auth.h | 56 #define key_for_each(__key, __list_head) \ argument 57 list_for_each_entry(__key, __list_head, key_list) 59 #define key_for_each_safe(__key, __tmp, __list_head) \ argument 60 list_for_each_entry_safe(__key, __tmp, __list_head, key_list)
|