| /OK3568_Linux_fs/buildroot/package/glibc/2.28-69-g1e5c5303a522764d7e9d2302a60e4a32cdb902f1/ |
| H A D | 0009-Redefine-_IO_iconv_t-to-store-a-single-gconv-step-po.patch | 38 - cc->__cd_in.__cd.__data[0].__invocation_counter = 0; 39 - cc->__cd_in.__cd.__data[0].__internal_use = 1; 40 - cc->__cd_in.__cd.__data[0].__flags = __GCONV_IS_LAST; 41 - cc->__cd_in.__cd.__data[0].__statep = &result->_wide_data->_IO_state; 46 - cc->__cd_out.__cd.__data[0].__invocation_counter = 0; 47 - cc->__cd_out.__cd.__data[0].__internal_use = 1; 48 - cc->__cd_out.__cd.__data[0].__flags 50 - cc->__cd_out.__cd.__data[0].__statep = 94 - cc->__cd_in.__cd.__data[0].__invocation_counter = 0; 95 - cc->__cd_in.__cd.__data[0].__internal_use = 1; [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/experimental/ |
| H A D | buffer | 375 __to_mbuf(_Tp* __data, size_t __n) 376 { return { __n ? __data : nullptr, __n * sizeof(_Tp) }; } 380 __to_cbuf(const _Tp* __data, size_t __n) 381 { return { __n ? __data : nullptr, __n * sizeof(_Tp) }; } 385 buffer(_Tp (&__data)[_Nm]) noexcept 386 { return net::__to_mbuf(__data, _Nm); } 390 buffer(const _Tp (&__data)[_Nm]) noexcept 391 { return net::__to_cbuf(__data, _Nm); } 395 buffer(array<_Tp, _Nm>& __data) noexcept 396 { return net::__to_mbuf(__data.data(), _Nm); } [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/experimental/ |
| H A D | buffer | 375 __to_mbuf(_Tp* __data, size_t __n) 376 { return { __n ? __data : nullptr, __n * sizeof(_Tp) }; } 380 __to_cbuf(const _Tp* __data, size_t __n) 381 { return { __n ? __data : nullptr, __n * sizeof(_Tp) }; } 385 buffer(_Tp (&__data)[_Nm]) noexcept 386 { return net::__to_mbuf(__data, _Nm); } 390 buffer(const _Tp (&__data)[_Nm]) noexcept 391 { return net::__to_cbuf(__data, _Nm); } 395 buffer(array<_Tp, _Nm>& __data) noexcept 396 { return net::__to_mbuf(__data.data(), _Nm); } [all …]
|
| /OK3568_Linux_fs/kernel/include/trace/hooks/ |
| H A D | vendor_hooks.h | 26 int __traceiter_##_name(void *__data, proto); \ 38 int __nocfi __traceiter_##_name(void *__data, proto) \ 46 __data = (it_func_ptr)->data; \ 47 ((void(*)(void *, proto))(it_func))(__data, args); \ 65 void *__data; \ 72 __data = (it_func_ptr)->data; \ 106 PARAMS(void *__data, proto), \ 107 PARAMS(__data, args))
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/libcxx/include/ |
| H A D | span | 211 _LIBCPP_INLINE_VISIBILITY constexpr span() noexcept : __data{nullptr} 217 _LIBCPP_INLINE_VISIBILITY constexpr span(pointer __ptr, index_type __count) : __data{__ptr} 219 _LIBCPP_INLINE_VISIBILITY constexpr span(pointer __f, pointer __l) : __data{__f} 222 …LINE_VISIBILITY constexpr span(element_type (&__arr)[_Extent]) noexcept : __data{__arr} {} 223 …SIBILITY constexpr span( array<value_type, _Extent>& __arr) noexcept : __data{__arr.data()} {} 224 …SIBILITY constexpr span(const array<value_type, _Extent>& __arr) noexcept : __data{__arr.data()} {} 230 : __data{_VSTD::data(__c)} 237 : __data{_VSTD::data(__c)} 246 : __data{__other.data()} {} 254 …: __data{__other.data()} { _LIBCPP_ASSERT(_Extent == __other.size(), "size mismatch in span's cons… [all …]
|
| H A D | string_view | 220 basic_string_view() _NOEXCEPT : __data (nullptr), __size(0) {} 230 : __data(__s), __size(__len) 239 : __data(__s), __size(_Traits::length(__s)) {} 249 const_iterator cbegin() const _NOEXCEPT { return __data; } 252 const_iterator cend() const _NOEXCEPT { return __data + __size; } 281 const_reference operator[](size_type __pos) const _NOEXCEPT { return __data[__pos]; } 287 ? (__throw_out_of_range("string_view::at"), __data[0]) 288 : __data[__pos]; 294 return _LIBCPP_ASSERT(!empty(), "string_view::front(): string is empty"), __data[0]; 300 return _LIBCPP_ASSERT(!empty(), "string_view::back(): string is empty"), __data[__size-1]; [all …]
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/libcxx/include/ |
| H A D | span | 211 _LIBCPP_INLINE_VISIBILITY constexpr span() noexcept : __data{nullptr} 217 _LIBCPP_INLINE_VISIBILITY constexpr span(pointer __ptr, index_type __count) : __data{__ptr} 219 _LIBCPP_INLINE_VISIBILITY constexpr span(pointer __f, pointer __l) : __data{__f} 222 …LINE_VISIBILITY constexpr span(element_type (&__arr)[_Extent]) noexcept : __data{__arr} {} 223 …SIBILITY constexpr span( array<value_type, _Extent>& __arr) noexcept : __data{__arr.data()} {} 224 …SIBILITY constexpr span(const array<value_type, _Extent>& __arr) noexcept : __data{__arr.data()} {} 230 : __data{_VSTD::data(__c)} 237 : __data{_VSTD::data(__c)} 246 : __data{__other.data()} {} 254 …: __data{__other.data()} { _LIBCPP_ASSERT(_Extent == __other.size(), "size mismatch in span's cons… [all …]
|
| H A D | string_view | 220 basic_string_view() _NOEXCEPT : __data (nullptr), __size(0) {} 230 : __data(__s), __size(__len) 239 : __data(__s), __size(_Traits::length(__s)) {} 249 const_iterator cbegin() const _NOEXCEPT { return __data; } 252 const_iterator cend() const _NOEXCEPT { return __data + __size; } 281 const_reference operator[](size_type __pos) const _NOEXCEPT { return __data[__pos]; } 287 ? (__throw_out_of_range("string_view::at"), __data[0]) 288 : __data[__pos]; 294 return _LIBCPP_ASSERT(!empty(), "string_view::front(): string is empty"), __data[0]; 300 return _LIBCPP_ASSERT(!empty(), "string_view::back(): string is empty"), __data[__size-1]; [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/locking/ |
| H A D | futex-requeue-pi.rst | 29 lock(cond->__data.__lock); 32 unlock(cond->__data.__lock); 33 futex_wait(cond->__data.__futex); 34 lock(cond->__data.__lock); 36 unlock(cond->__data.__lock); 42 lock(cond->__data.__lock); 43 unlock(cond->__data.__lock); 63 lock(cond->__data.__lock); 66 unlock(cond->__data.__lock); 67 futex_wait_requeue_pi(cond->__data.__futex); [all …]
|
| /OK3568_Linux_fs/kernel/include/linux/ |
| H A D | tracepoint.h | 183 void *__data; \ 206 __data = (it_func_ptr)->data; \ 301 int __traceiter_##_name(void *__data, proto); \ 313 int __nocfi __traceiter_##_name(void *__data, proto) \ 323 __data = (it_func_ptr)->data; \ 324 ((void(*)(void *, proto))(it_func))(__data, args); \ 425 PARAMS(void *__data, proto), \ 426 PARAMS(__data, args)) 431 PARAMS(void *__data, proto), \ 432 PARAMS(__data, args))
|
| /OK3568_Linux_fs/kernel/arch/s390/pci/ |
| H A D | pci_insn.c | 119 u64 __data; in ____pcilg() local 127 : [cc] "+d" (cc), [data] "=d" (__data), [req] "+d" (__req) in ____pcilg() 131 *data = __data; in ____pcilg() 137 u64 __data; in __pcilg() local 140 cc = ____pcilg(&__data, req, offset, status); in __pcilg() 142 *data = __data; in __pcilg() 179 u64 __data; in __pcilg_mio() local 187 : [cc] "+d" (cc), [data] "=d" (__data), "+d" (r3) in __pcilg_mio() 191 *data = __data; in __pcilg_mio()
|
| /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 | pthreadtypes.h | 69 struct __pthread_mutex_s __data; member 77 struct __pthread_cond_s __data; member 88 struct __pthread_rwlock_arch_t __data; member
|
| /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 | pthreadtypes.h | 69 struct __pthread_mutex_s __data; member 77 struct __pthread_cond_s __data; member 88 struct __pthread_rwlock_arch_t __data; member
|
| /OK3568_Linux_fs/kernel/block/ |
| H A D | bfq-iosched.c | 6605 u64 __data = __VAR; \ 6607 __data = jiffies_to_msecs(__data); \ 6609 __data = div_u64(__data, NSEC_PER_MSEC); \ 6610 return bfq_var_show(__data, (page)); \ 6627 u64 __data = __VAR; \ 6628 __data = div_u64(__data, NSEC_PER_USEC); \ 6629 return bfq_var_show(__data, (page)); \ 6639 unsigned long __data, __min = (MIN), __max = (MAX); \ 6642 ret = bfq_var_store(&__data, (page)); \ 6645 if (__data < __min) \ [all …]
|
| /OK3568_Linux_fs/kernel/drivers/pinctrl/vt8500/ |
| H A D | pinctrl-wmt.h | 28 #define WMT_GROUP(__name, __data) \ argument 31 .pins = __data, \ 32 .npins = ARRAY_SIZE(__data), \
|
| /OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/include/uAPI2/ |
| H A D | rk_aiq_user_api2_helper.h | 37 type_name *__data = (type_name *)data; \ 38 return rkaiq_uapi_##api_name##_set(__ctx, __data); \ 44 type_name *__data = (type_name *)data; \ 45 return rkaiq_uapi_##api_name##_get(__ctx, __data); \
|
| /OK3568_Linux_fs/kernel/net/ipv4/ |
| H A D | ip_options.c | 50 memcpy(iph + sizeof(struct iphdr), opt->__data, opt->optlen); in ip_options_build() 103 dptr = dopt->__data; in __ip_options_echo() 269 optptr = opt->__data; in __ip_options_compile() 498 unsigned char *optptr = opt->__data + opt->srr - sizeof(struct iphdr); in ip_options_undo() 504 unsigned char *optptr = opt->__data + opt->rr - sizeof(struct iphdr); in ip_options_undo() 510 unsigned char *optptr = opt->__data + opt->ts - sizeof(struct iphdr); in ip_options_undo() 534 if (optlen && copy_from_sockptr(opt->opt.__data, data, optlen)) { in ip_options_get() 540 opt->opt.__data[optlen++] = IPOPT_END; in ip_options_get()
|
| /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/bits/ |
| H A D | atomic_futex.h | 74 __atomic_futex_unsigned(unsigned __data) : _M_data(__data) in _GLIBCXX_VISIBILITY() 228 __atomic_futex_unsigned(unsigned __data) : _M_data(__data) in _GLIBCXX_VISIBILITY()
|
| /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/bits/ |
| H A D | atomic_futex.h | 74 __atomic_futex_unsigned(unsigned __data) : _M_data(__data) in _GLIBCXX_VISIBILITY() 228 __atomic_futex_unsigned(unsigned __data) : _M_data(__data) in _GLIBCXX_VISIBILITY()
|
| /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 | gconv.h | 111 void *__data; /* Pointer to step-local data. */ member 144 __extension__ struct __gconv_step_data __data[0]; member
|
| /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 | gconv.h | 111 void *__data; /* Pointer to step-local data. */ member 144 __extension__ struct __gconv_step_data __data[0]; member
|
| /OK3568_Linux_fs/kernel/include/trace/ |
| H A D | bpf_probe.h | 61 __bpf_trace_##call(void *__data, proto) \ 63 struct bpf_prog *prog = __data; \ 77 typedef void (*btf_trace_##call)(void *__data, proto); \
|
| /OK3568_Linux_fs/kernel/drivers/thermal/intel/int340x_thermal/ |
| H A D | acpi_thermal_rel.h | 62 u64 __data[ACPI_NR_ART_ELEMENTS]; member 73 u64 __data[8]; member
|
| /OK3568_Linux_fs/kernel/drivers/media/dvb-frontends/ |
| H A D | stv090x_priv.h | 42 #define STV090x_WRITE_DEMOD(__state, __reg, __data) (( \ argument 44 stv090x_write_reg(__state, STV090x_P2_##__reg, __data) :\ 45 stv090x_write_reg(__state, STV090x_P1_##__reg, __data))
|
| /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 | vstring.tcc | 274 const _CharT* __data = this->_M_data(); in find() local 282 if (traits_type::eq(__data[__pos], __s[0]) in find() 283 && traits_type::compare(__data + __pos + 1, in find() 300 const _CharT* __data = this->_M_data(); in find() local 302 const _CharT* __p = traits_type::find(__data + __pos, __n, __c); in find() 304 __ret = __p - __data; in find() 320 const _CharT* __data = this->_M_data(); in rfind() local 323 if (traits_type::compare(__data + __pos, __s, __n) == 0) in rfind()
|