Home
last modified time | relevance | path

Searched refs:__i (Results 1 – 25 of 57) sorted by relevance

123

/external/kernel-headers/original/uapi/linux/netfilter_bridge/
Debtables.h201 unsigned int __i; \
205 for (__i = sizeof(struct ebt_entry); \
206 __i < (e)->watchers_offset; \
207 __i += __match->match_size + \
209 __match = (void *)(e) + __i; \
216 if (__i != (e)->watchers_offset) \
224 unsigned int __i; \
228 for (__i = e->watchers_offset; \
229 __i < (e)->target_offset; \
230 __i += __watcher->watcher_size + \
[all …]
/external/libcxx/src/
Dvalarray.cpp26 for (size_t __i = 0; __i < __size_.size(); ++__i) in __init() local
27 __k *= __size_[__i]; in __init()
35 size_t __i = __indices.size() - 1; in __init() local
38 if (++__indices[__i] < __size_[__i]) in __init()
41 __1d_[__k] = __1d_[__k-1] + __stride_[__i]; in __init()
42 for (size_t __j = __i + 1; __j != __indices.size(); ++__j) in __init()
48 if (__i == 0) in __init()
50 __indices[__i--] = 0; in __init()
Ddebug.cpp174 __libcpp_db::__find_c_from_i(void* __i) const in __find_c_from_i()
179 __i_node* i = __find_iterator(__i); in __find_c_from_i()
185 __libcpp_db::__insert_ic(void* __i, const void* __c) in __insert_ic() argument
202 __i_node* i = __insert_iterator(__i); in __insert_ic()
250 __libcpp_db::__erase_i(void* __i) in __erase_i() argument
257 size_t hi = hash<void*>()(__i) % static_cast<size_t>(__iend_ - __ibeg_); in __erase_i()
262 while (p->__i_ != __i) in __erase_i()
404 __libcpp_db::__iterator_copy(void* __i, const void* __i0) in __iterator_copy() argument
409 __i_node* i = __find_iterator(__i); in __iterator_copy()
413 i = __insert_iterator(__i); in __iterator_copy()
[all …]
/external/libcxx/include/
Dvalarray424 result_type operator[](size_t __i) const {return __op_(__a0_[__i]);}
445 value_type operator[](size_t __i) const {return __op_(__a0_[__i], __a1_[__i]);}
669 result_type operator[](size_t __i) const
670 {return __expr_[__start_ + __i * __stride_];}
716 ptrdiff_t __i = static_cast<ptrdiff_t>(__j);
717 ptrdiff_t __m = (__sn_ * __i - __ul_) >> _Np;
718 return (__expr_[(__i + __n_) & __m] & __m) | (value_type() & ~__m);
764 result_type operator[](size_t __i) const
766 if (__i < __m_)
767 return __expr_[__i + __o1_];
[all …]
D__debug105 explicit __libcpp_debug_exception(__libcpp_debug_info const& __i);
135 __i_node(void* __i, __i_node* __next, __c_node* __c)
136 : __i_(__i), __next_(__next), __c_(__c) {}
167 void __add(__i_node* __i);
168 _LIBCPP_HIDDEN void __remove(__i_node* __i);
186 _C_node<_Cont>::__dereferenceable(const void* __i) const
189 const iterator* __j = static_cast<const iterator*>(__i);
196 _C_node<_Cont>::__decrementable(const void* __i) const
199 const iterator* __j = static_cast<const iterator*>(__i);
206 _C_node<_Cont>::__addable(const void* __i, ptrdiff_t __n) const
[all …]
Dbitset236 for (size_t __i = 0; __i < sizeof(__t)/sizeof(__t[0]); ++__i, __v >>= __bits_per_word)
237 __t[__i] = static_cast<__storage_type>(__v);
278 for (size_type __i = 0; __i < _N_words; ++__i)
279 __first_[__i] &= __v.__first_[__i];
287 for (size_type __i = 0; __i < _N_words; ++__i)
288 __first_[__i] |= __v.__first_[__i];
296 for (size_type __i = 0; __i < _N_words; ++__i)
297 __first_[__i] ^= __v.__first_[__i];
324 const_iterator __i = _VSTD::find(__make_iter(sizeof(unsigned long) * CHAR_BIT), __e, true);
325 if (__i != __e)
[all …]
Dalgorithm1113 _ForwardIterator __i = __first;
1114 while (++__i != __last)
1116 if (__pred(*__first, *__i))
1118 __first = __i;
1309 for (_ForwardIterator1 __i = __first1; __i != __last1; ++__i)
1311 // Have we already counted the number of *__i in [f1, l1)?
1312 for (_ForwardIterator1 __j = __first1; __j != __i; ++__j)
1313 if (__pred(*__j, *__i))
1316 // Count number of *__i in [f2, l2)
1319 if (__pred(*__i, *__j))
[all …]
Dlist775 const_iterator* __i = static_cast<const_iterator*>((*__p)->__i_);
776 if (__i->__ptr_ == __c.__end_as_link())
788 const_iterator* __i = static_cast<const_iterator*>((*__p)->__i_);
789 if (__i->__ptr_ == __end_as_link())
1029 void splice(const_iterator __p, list& __c, const_iterator __i);
1032 void splice(const_iterator __p, list&& __c, const_iterator __i)
1033 {splice(__p, __c, __i);}
1073 bool __dereferenceable(const const_iterator* __i) const;
1074 bool __decrementable(const const_iterator* __i) const;
1075 bool __addable(const const_iterator* __i, ptrdiff_t __n) const;
[all …]
D__hash_table318 __hash_iterator(const __hash_iterator& __i)
319 : __node_(__i.__node_)
321 __get_db()->__iterator_copy(this, &__i);
331 __hash_iterator& operator=(const __hash_iterator& __i)
333 if (this != &__i)
335 __get_db()->__iterator_copy(this, &__i);
336 __node_ = __i.__node_;
435 __hash_const_iterator(const __hash_const_iterator& __i)
436 : __node_(__i.__node_)
438 __get_db()->__iterator_copy(this, &__i);
[all …]
D__std_stream119 for (int __i = 0; __i < __nread; ++__i)
124 __extbuf[__i] = static_cast<char>(__c);
165 for (int __i = __nread; __i > 0;)
167 if (ungetc(traits_type::to_int_type(__extbuf[--__i]), __file_) == EOF)
317 streamsize __i = 0;
318 for (; __i < __n; ++__i, ++__s)
321 return __i;
Distream321 _Ip __i(__is);
323 for (; __i != __eof; ++__i)
324 if (!__ct.is(__ct.space, *__i))
326 if (__i == __eof)
756 typename _Traits::int_type __i = __is.rdbuf()->sgetc();
757 if (_Traits::eq_int_type(__i, _Traits::eof()))
762 _CharT __ch = _Traits::to_char_type(__i);
812 typename _Traits::int_type __i = __is.rdbuf()->sbumpc();
813 if (_Traits::eq_int_type(__i, _Traits::eof()))
816 __c = _Traits::to_char_type(__i);
[all …]
Drandom2311 for (size_t __i = 1; __i < __n; ++__i)
2312 __x_[__i] = (__f * (__x_[__i-1] ^ __rshift<__w - 2>(__x_[__i-1])) + __i) & _Max;
2327 for (size_t __i = 0; __i < __n; ++__i)
2328 __x_[__i] = static_cast<result_type>(__ar[__i] & _Max);
2334 for (size_t __i = 1; __i < __n; ++__i)
2335 if (__x_[__i] != 0)
2352 for (size_t __i = 0; __i < __n; ++__i)
2353 __x_[__i] = static_cast<result_type>(
2354 (__ar[2 * __i] + ((uint64_t)__ar[2 * __i + 1] << 32)) & _Max);
2360 for (size_t __i = 1; __i < __n; ++__i)
[all …]
Dforward_list806 void splice_after(const_iterator __p, forward_list&& __x, const_iterator __i);
812 void splice_after(const_iterator __p, forward_list& __x, const_iterator __i);
1067 iterator __i = before_begin();
1068 iterator __j = _VSTD::next(__i);
1070 for (; __j != __e && __f != __l; ++__i, (void) ++__j, ++__f)
1073 insert_after(__i, __f, __l);
1075 erase_after(__i, __e);
1082 iterator __i = before_begin();
1083 iterator __j = _VSTD::next(__i);
1085 for (; __j != __e && __n > 0; --__n, ++__i, ++__j)
[all …]
Diterator533 void __advance(_InputIter& __i,
537 ++__i;
542 void __advance(_BiDirIter& __i,
547 ++__i;
550 --__i;
555 void __advance(_RandIter& __i,
558 __i += __n;
563 void advance(_InputIter& __i,
566 __advance(__i, __n, typename iterator_traits<_InputIter>::iterator_category());
751 reverse_iterator<_Iter> make_reverse_iterator(_Iter __i)
[all …]
Ddeque1035 for (typename __map::const_iterator __i = __map_.begin(), __e = __map_.end();
1036 __i != __e; ++__i)
1037 if (*__i == nullptr)
1105 typename __map::iterator __i = __map_.begin();
1107 for (; __i != __e; ++__i)
1108 __alloc_traits::deallocate(__alloc(), *__i, __block_size);
1166 for (iterator __i = begin(), __e = end(); __i != __e; ++__i)
1167 __alloc_traits::destroy(__a, _VSTD::addressof(*__i));
1324 reference operator[](size_type __i);
1326 const_reference operator[](size_type __i) const;
[all …]
Dstreambuf399 streamsize __i = 0;
400 while(__i < __n)
404 const streamsize __len = _VSTD::min(__einp_ - __ninp_, __n - __i);
407 __i += __len;
414 ++__i;
419 return __i;
449 streamsize __i = 0;
451 while( __i < __n)
458 ++__i;
462 streamsize __chunk_size = _VSTD::min(__eout_ - __nout_, __n - __i);
[all …]
Dregex1194 for (typename string_type::const_iterator __i = __s.begin(), __e = __s.end();
1195 __i != __e; ++__i)
1197 if (static_cast<unsigned>(*__i) >= 127)
1199 __n.push_back(char(*__i));
1247 for (typename string_type::const_iterator __i = __s.begin(), __e = __s.end();
1248 __i != __e; ++__i)
1250 if (static_cast<unsigned>(*__i) >= 127)
1252 __n.push_back(char(*__i));
1563 for (size_t __i = __mexp_begin_-1; __i != __mexp_end_-1; ++__i)
1565 __s.__sub_matches_[__i].first = __s.__last_;
[all …]
Dmutex396 __lock_first(int __i, _L0& __l0, _L1& __l1, _L2& __l2, _L3& ...__l3)
400 switch (__i)
405 __i = try_lock(__l1, __l2, __l3...);
406 if (__i == -1)
412 ++__i;
418 __i = try_lock(__l2, __l3..., __l0);
419 if (__i == -1)
425 if (__i == sizeof...(_L3) + 1)
426 __i = 0;
428 __i += 2;
[all …]
/external/kernel-headers/original/uapi/linux/netfilter/
Dx_tables.h130 unsigned int __i; \
134 for (__i = sizeof(type); \
135 __i < (e)->target_offset; \
136 __i += __m->u.match_size) { \
137 __m = (void *)e + __i; \
149 unsigned int __i, __n; \
153 for (__i = 0, __n = 0; __i < (size); \
154 __i += __entry->next_offset, __n++) { \
155 __entry = (void *)(entries) + __i; \
/external/iproute2/include/linux/netfilter/
Dx_tables.h129 unsigned int __i; \
133 for (__i = sizeof(type); \
134 __i < (e)->target_offset; \
135 __i += __m->u.match_size) { \
136 __m = (void *)e + __i; \
148 unsigned int __i, __n; \
152 for (__i = 0, __n = 0; __i < (size); \
153 __i += __entry->next_offset, __n++) { \
154 __entry = (void *)(entries) + __i; \
/external/iptables/include/linux/netfilter/
Dx_tables.h129 unsigned int __i; \
133 for (__i = sizeof(type); \
134 __i < (e)->target_offset; \
135 __i += __m->u.match_size) { \
136 __m = (void *)e + __i; \
148 unsigned int __i, __n; \
152 for (__i = 0, __n = 0; __i < (size); \
153 __i += __entry->next_offset, __n++) { \
154 __entry = (void *)(entries) + __i; \
/external/autotest/client/tests/tsc/src/
Dsched.h28 unsigned int __i; \
30 for (__i = 0; __i < sizeof (cpu_set_t) / sizeof (__cpu_mask); ++__i) \
31 __arr->__bits[__i] = 0; \
/external/libcxx/include/experimental/
Dfunctional232 for ( difference_type __i = 0; __f != __l; ++__f, (void) ++__i )
233 __skip_->insert(*__f, __i);
308 for ( std::size_t __i = 1; __i < __count; ++__i )
310 while ( __k > 0 && !__pred ( __f[__k], __f[__i] ))
313 if ( __pred ( __f[__k], __f[__i] ))
315 __prefix [ __i ] = __k;
329 for ( std::size_t __i = 0; __i <= __count; __i++ )
330 __suffix[__i] = __count - __scratch[__count-1];
335 for ( std::size_t __i = 0; __i < __count; __i++ )
337 const std::size_t __j = __count - __scratch[__i];
[all …]
/external/mesa3d/src/util/
Dbitset.h131 #define BITSET_FOREACH_SET(__i, __tmp, __set, __size) \ argument
132 for (__tmp = *(__set), __i = 0; \
133 (__i = __bitset_next_set(__i, &__tmp, __set, __size)) < __size;)
/external/python/cpython2/Lib/plat-os2emx/
Dgrp.py69 for __i in __group_path:
71 __f = open(__i, 'r')
73 group_file = __i

123