Home
last modified time | relevance | path

Searched refs:__v (Results 1 – 12 of 12) sorted by relevance

/external/kernel-headers/original/asm-arm/
Dunaligned.h56 __typeof__(*(ptr)) __v; \
59 case 1: __v = *(ptr); break; \
60 case 2: __v = __get_unaligned_2_le(__p); break; \
61 case 4: __v = __get_unaligned_4_le(__p); break; \
66 __v = ((unsigned long long)__v2 << 32 | __v1); \
69 default: __v = __bug_unaligned_x(__p); break; \
71 __v; \
76 __typeof__(*(ptr)) __v; \
79 case 1: __v = *(ptr); break; \
80 case 2: __v = __get_unaligned_2_be(__p); break; \
[all …]
Dio.h117 #define inb(p) ({ __u8 __v = __raw_readb(__io(p)); __v; })
118 #define inw(p) ({ __u16 __v = le16_to_cpu((__force __le16) \
119 __raw_readw(__io(p))); __v; })
120 #define inl(p) ({ __u32 __v = le32_to_cpu((__force __le32) \
121 __raw_readl(__io(p))); __v; })
166 #define readb(c) ({ __u8 __v = __raw_readb(__mem_pci(c)); __v; })
167 #define readw(c) ({ __u16 __v = le16_to_cpu((__force __le16) \
168 __raw_readw(__mem_pci(c))); __v; })
169 #define readl(c) ({ __u32 __v = le32_to_cpu((__force __le32) \
170 __raw_readl(__mem_pci(c))); __v; })
[all …]
/external/bluetooth/glib/glib/
Dgtypes.h163 ({ register guint16 __v, __x = ((guint16) (val)); \
165 __v = GUINT16_SWAP_LE_BE_CONSTANT (__x); \
168 : "=r" (__v) \
171 __v; }))
177 ({ register guint32 __v, __x = ((guint32) (val)); \
179 __v = GUINT32_SWAP_LE_BE_CONSTANT (__x); \
184 : "=r" (__v) \
187 __v; }))
191 ({ register guint32 __v, __x = ((guint32) (val)); \
193 __v = GUINT32_SWAP_LE_BE_CONSTANT (__x); \
[all …]
/external/bluetooth/bluez/lib/bluetooth/
Dbluetooth.h105 typeof(*(ptr)) __v; \
107 __p->__v; \
113 typeof(*(ptr)) __v; \
115 __p->__v = (val); \
/external/blktrace/btt/
Diostat.c39 __u64 __v = (val); \
40 (dip)->stats. fld += __v; \
41 (dip)->all_stats. fld += __v; \
46 __u64 __v = (val); \
47 (dip)->stats. fld -= __v; \
48 (dip)->all_stats. fld -= __v; \
/external/stlport/stlport/stl/
D_function.h345 _Constant_void_fun(const result_type& __v) : _M_val(__v) {} in _Constant_void_fun()
353 constant_void_fun(const _Result& __v) in constant_void_fun()
354 : _STLP_PRIV _Constant_void_fun<_Result>(__v) {} in constant_void_fun()
359 constant_unary_fun(const _Result& __v) in constant_unary_fun()
360 : _STLP_PRIV _Constant_unary_fun<_Result, _Argument>(__v) {} in constant_unary_fun()
366 constant_binary_fun(const _Result& __v) in constant_binary_fun()
367 : _STLP_PRIV _Constant_binary_fun<_Result, _Arg1, _Arg2>(__v) {} in constant_binary_fun()
D_function_base.h188 _Constant_unary_fun(const result_type& __v) : _M_val(__v) {}
199 _Constant_binary_fun(const _Result& __v) : _M_val(__v) {}
D_num_get.c297 __copy_sign(_InputIter __first, _InputIter __last, __iostring& __v, in __copy_sign() argument
304 __v.push_back('-'); in __copy_sign()
315 __iostring& __v, const _CharT* __digits) { in __copy_digits() argument
321 __v.push_back((char)__c); in __copy_digits()
333 __iostring& __v, const _CharT * __digits, in __copy_grouped_digits() argument
351 __v.push_back((char)__c); in __copy_grouped_digits()
D_threads.h66 # define __add_and_fetch(__l,__v) add_then_test((unsigned long*)__l,__v) argument
67 # define __test_and_set(__l,__v) test_and_set(__l,__v) argument
D_sparc_atomic.h53 extern "C" __stl_atomic_t _STLP_atomic_exchange(__stl_atomic_t * __x, __stl_atomic_t __v);
/external/speex/libspeex/
Dcb_search_sse.h41 __m128 __v; in _spx_mm_getr_ps() member
44 __u.__v = U; in _spx_mm_getr_ps()
/external/stlport/stlport/
Dtype_traits129 template <class _Tp, _Tp __v>
132 static const _Tp value = __v;
133 // enum { value = __v }; ?
136 typedef integral_constant<_Tp, __v> type;