Home
last modified time | relevance | path

Searched refs:__l (Results 1 – 18 of 18) sorted by relevance

/external/stlport/stlport/stl/
D_hash_map.h105 hash_map(_InputIterator __f, _InputIterator __l) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
107 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
109 hash_map(_InputIterator __f, _InputIterator __l, size_type __n) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
111 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
113 hash_map(_InputIterator __f, _InputIterator __l, size_type __n, in _STLP_CREATE_HASH_ITERATOR_TRAITS()
116 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
119 hash_map(_InputIterator __f, _InputIterator __l, size_type __n, in _STLP_CREATE_HASH_ITERATOR_TRAITS()
122 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
125 hash_map(_InputIterator __f, _InputIterator __l, size_type __n, in _STLP_CREATE_HASH_ITERATOR_TRAITS()
129 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
[all …]
D_hash_set.h107 hash_set(_InputIterator __f, _InputIterator __l) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
109 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
111 hash_set(_InputIterator __f, _InputIterator __l, size_type __n) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
113 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
115 hash_set(_InputIterator __f, _InputIterator __l, size_type __n, in _STLP_CREATE_HASH_ITERATOR_TRAITS()
118 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
120 hash_set(_InputIterator __f, _InputIterator __l, size_type __n, in _STLP_CREATE_HASH_ITERATOR_TRAITS()
124 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
127 hash_set(_InputIterator __f, _InputIterator __l, size_type __n, in _STLP_CREATE_HASH_ITERATOR_TRAITS()
130 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
[all …]
D_string_workaround.h82 basic_string(_InputIterator __f, _InputIterator __l, in basic_string() argument
86 _M_initialize_dispatch(__f, __l, _Integral()); in basic_string()
90 basic_string(_InputIterator __f, _InputIterator __l) in basic_string() argument
93 _M_initialize_dispatch(__f, __l, _Integral()); in basic_string()
114 void _M_range_initialize(_InputIter __f, _InputIter __l, in _M_range_initialize() argument
118 _M_appendT(__f, __l, __tag); in _M_range_initialize()
122 void _M_range_initialize(_ForwardIter __f, _ForwardIter __l, in _M_range_initialize() argument
124 difference_type __n = _STLP_STD::distance(__f, __l); in _M_range_initialize()
126 this->_M_finish = uninitialized_copy(__f, __l, this->_M_Start()); in _M_range_initialize()
131 void _M_range_initializeT(_InputIter __f, _InputIter __l) { in _M_range_initializeT() argument
[all …]
D_unordered_set.h89 unordered_set(_InputIterator __f, _InputIterator __l, in _STLP_CREATE_HASH_ITERATOR_TRAITS()
94 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
96 unordered_set(const value_type* __f, const value_type* __l, in _STLP_CREATE_HASH_ITERATOR_TRAITS()
101 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
103 unordered_set(const_iterator __f, const_iterator __l, in _STLP_CREATE_HASH_ITERATOR_TRAITS()
108 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
133 void insert(_InputIterator __f, _InputIterator __l) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
135 void insert(const_iterator __f, const_iterator __l) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
136 {_M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
137 void insert(const value_type* __f, const value_type* __l) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
[all …]
D_unordered_map.h95 unordered_map(_InputIterator __f, _InputIterator __l, in _STLP_CREATE_HASH_ITERATOR_TRAITS()
100 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
102 unordered_map(const value_type* __f, const value_type* __l, in _STLP_CREATE_HASH_ITERATOR_TRAITS()
107 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
109 unordered_map(const_iterator __f, const_iterator __l, in _STLP_CREATE_HASH_ITERATOR_TRAITS()
114 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
139 void insert(_InputIterator __f, _InputIterator __l) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
141 void insert(const value_type* __f, const value_type* __l) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
142 { _M_ht.insert_unique(__f,__l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
143 void insert(const_iterator __f, const_iterator __l) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
[all …]
D_string.h261 basic_string(_InputIterator __f, _InputIterator __l, in basic_string() argument
265 _M_initialize_dispatch(__f, __l, _Integral()); in basic_string()
269 basic_string(_InputIterator __f, _InputIterator __l) in basic_string() argument
272 _M_initialize_dispatch(__f, __l, _Integral()); in basic_string()
277 basic_string(const _CharT* __f, const _CharT* __l, in basic_string() argument
280 _STLP_FIX_LITERAL_BUG(__f) _STLP_FIX_LITERAL_BUG(__l) in basic_string()
281 _M_range_initialize(__f, __l); in basic_string()
284 basic_string(const _CharT* __f, const _CharT* __l) in basic_string() argument
286 _STLP_FIX_LITERAL_BUG(__f) _STLP_FIX_LITERAL_BUG(__l) in basic_string()
287 _M_range_initialize(__f, __l); in basic_string()
[all …]
D_hashtable.h425 void insert_unique(_InputIterator __f, _InputIterator __l)
426 { insert_unique(__f, __l, _STLP_ITERATOR_CATEGORY(__f, _InputIterator)); }
429 void insert_equal(_InputIterator __f, _InputIterator __l)
430 { insert_equal(__f, __l, _STLP_ITERATOR_CATEGORY(__f, _InputIterator)); }
433 void insert_unique(_InputIterator __f, _InputIterator __l,
435 for ( ; __f != __l; ++__f)
440 void insert_equal(_InputIterator __f, _InputIterator __l,
442 for ( ; __f != __l; ++__f)
447 void insert_unique(_ForwardIterator __f, _ForwardIterator __l,
449 size_type __n = _STLP_STD::distance(__f, __l);
[all …]
D_rope.c321 _RopeLeaf* __l = __STATIC_CAST(_RopeLeaf*, this); in _M_free_tree() local
322 _STLP_STD::_Destroy(__l); // ->_Rope_RopeLeaf<_CharT,_Alloc>::~_Rope_RopeLeaf(); in _M_free_tree()
324 _RopeLeaf).deallocate(__l, 1); in _M_free_tree()
663 _RopeLeaf* __l = __STATIC_CAST(_RopeLeaf*, __base); in _S_substring() local
669 const _CharT* __section = __l->_M_data + __start; in _S_substring()
818 _RopeLeaf* __l = __STATIC_CAST(_RopeLeaf*, __r); in _S_apply_to_pieces() local
819 return __c(__l->_M_data + __begin, __end - __begin); in _S_apply_to_pieces()
931 _RopeLeaf* __l = __STATIC_CAST(_RopeLeaf*, __r); in _S_flatten() local
932 return _STLP_PRIV __ucopy_n(__l->_M_data, __l->_M_size._M_data, __buffer).second; in _S_flatten()
1147 _RopeLeaf* __l = (_RopeLeaf*)__r; in _S_fetch() local
[all …]
D_string.c64 _Not_within_traits(const _CharT* __f, const _CharT* __l) in _Not_within_traits()
65 : _M_first(__f), _M_last(__l) {} in _Not_within_traits()
242 basic_string<_CharT,_Traits,_Alloc>::_M_assign(const _CharT* __f, const _CharT* __l) { in _M_assign() argument
243 ptrdiff_t __n = __l - __f; in _M_assign()
250 _M_append(__f + size(), __l); in _M_assign()
390 const _CharT* __f, const _CharT* __l, in _M_replace() argument
392 const ptrdiff_t __n = __l - __f; in _M_replace()
395 if (!__self_ref || __l < __first || __f >= __last) in _M_replace()
396 _M_copy(__f, __l, __first); in _M_replace()
398 _M_move(__f, __l, __first); in _M_replace()
[all …]
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_rope.h503 _Rope_RopeConcatenation(_RopeRep* __l, _RopeRep* __r, allocator_type __a)
505 (max)(__l->_M_depth, __r->_M_depth) + 1, false,
506__l->_M_size._M_data + __r->_M_size._M_data, __a), _M_left(__l), _M_right(__r)
601 _Rope_RopeSubstring(_RopeRep* __b, size_t __s, size_t __l, allocator_type __a)
602 : _Rope_RopeFunction<_CharT,_Alloc>(this, __l, false, __a),
604 _STLP_ASSERT(__l > 0)
605 _STLP_ASSERT(__s + __l <= __b->_M_size._M_data)
1222 size_t __l, allocator_type __a) {
1225 return new(__space) _RopeSubstring(__b, __s, __l, __a);
D_algo.c450 _Distance __l = __n - __k; in __rotate_aux() local
456 if (__k == __l) { in __rotate_aux()
467 if (__k < __l) { in __rotate_aux()
468 for (_Distance __j = 0; __j < __l/__d; __j++) { in __rotate_aux()
469 if (__p > __first + __l) { in __rotate_aux()
470 *__p = *(__p - __l); in __rotate_aux()
471 __p -= __l; in __rotate_aux()
486 *__p = * (__p - __l); in __rotate_aux()
487 __p -= __l; in __rotate_aux()
/external/stlport/stlport/stl/debug/
D_debug.c408 __stl_debug_engine<_Dummy>::_IndexedError(int __error_ind, const char* __f, int __l) { in _IndexedError() argument
410 __f, __l, _Message_table[__error_ind]); in _IndexedError()
415 …bug_engine<_Dummy>::_VerboseAssert(const char* __expr, int __error_ind, const char* __f, int __l) { in _VerboseAssert() argument
417 __f, __l, _Message_table[__error_ind], __f, __l, __expr); in _VerboseAssert()
423 __stl_debug_engine<_Dummy>::_Assert(const char* __expr, const char* __f, int __l) { in _Assert() argument
424 __stl_debug_message(_Message_table[_StlFormat_ASSERTION_FAILURE],__f, __l, __expr); in _Assert()
451 __stl_debug_engine<_Dummy>::_Invalidate_all(__owned_list* __l) { in _Invalidate_all() argument
452 _STLP_ACQUIRE_LOCK(__l->_M_lock); in _Invalidate_all()
453 _Stamp_all(__l, 0); in _Invalidate_all()
454 __l->_M_node._M_next =0; in _Invalidate_all()
[all …]
D_string.h82 void _Invalidate_iterators(const iterator& __f, const iterator& __l) in _Invalidate_iterators() argument
83 { _STLP_PRIV __invalidate_range(&_M_iter_list, __f, __l); } in _Invalidate_iterators()
133 basic_string(const _CharT* __f, const _CharT* __l,
135 : _ConstructCheck(__f, __l), in _ConstructCheck() argument
136 _M_non_dbg_impl(__f, __l, __a), _M_iter_list(&_M_non_dbg_impl) { in _ConstructCheck()
138 basic_string(const_iterator __f, const_iterator __l,
140 : _ConstructCheck(__f, __l), in _ConstructCheck() argument
141 _M_non_dbg_impl(__f._M_iterator, __l._M_iterator, __a), _M_iter_list(&_M_non_dbg_impl) { in _ConstructCheck()
145 basic_string(_InputIterator __f, _InputIterator __l, in basic_string() argument
147 : _ConstructCheck(__f, __l), in basic_string()
[all …]
D_hashtable.h227 void insert_unique(_InputIterator __f, _InputIterator __l) { in insert_unique() argument
228 _STLP_DEBUG_CHECK(_STLP_PRIV __check_range(__f, __l)) in insert_unique()
229 _M_non_dbg_impl.insert_unique(_STLP_PRIV _Non_Dbg_iter(__f), _STLP_PRIV _Non_Dbg_iter(__l)); in insert_unique()
233 void insert_equal(_InputIterator __f, _InputIterator __l){ in insert_equal() argument
234 _STLP_DEBUG_CHECK(_STLP_PRIV __check_range(__f, __l)) in insert_equal()
235 _M_non_dbg_impl.insert_equal(_STLP_PRIV _Non_Dbg_iter(__f), _STLP_PRIV _Non_Dbg_iter(__l)); in insert_equal()
239 void insert_unique(const value_type* __f, const value_type* __l) { in insert_unique() argument
240 _STLP_DEBUG_CHECK(_STLP_PRIV __check_ptr_range(__f, __l)) in insert_unique()
241 _M_non_dbg_impl.insert_unique(__f, __l); in insert_unique()
244 void insert_equal(const value_type* __f, const value_type* __l) { in insert_equal() argument
[all …]
D_iterator.h388 __construct_checker(const _InputIter& __f, const _InputIter& __l) { in __construct_checker() argument
390 _M_check_dispatch(__f, __l, _Integral()); in __construct_checker()
397 …void _M_check_dispatch(const _InputIter& __f, const _InputIter& __l, const __false_type& /*IsInteg… in _M_check_dispatch() argument
398 _STLP_DEBUG_CHECK(__check_range(__f,__l)) in _M_check_dispatch()
403 __construct_checker(const value_type* __f, const value_type* __l) { in __construct_checker() argument
404 _STLP_DEBUG_CHECK(__check_ptr_range(__f,__l)) in __construct_checker()
408 __construct_checker(const _IteType& __f, const _IteType& __l) { in __construct_checker() argument
409 _STLP_DEBUG_CHECK(__check_range(__f,__l)) in __construct_checker()
D_debug.h99 static void _STLP_CALL _IndexedError(int __ind, const char* __f, int __l);
104 static void _STLP_CALL _Assert(const char* __expr, const char* __f, int __l);
107 …tic void _STLP_CALL _VerboseAssert(const char* __expr, int __error_ind, const char* __f, int __l);
/external/bluetooth/glib/glib/
Dgtypes.h203 guint32 __l[2]; } __w, __r; \
209 __r.__l[0] = GUINT32_SWAP_LE_BE (__w.__l[1]); \
210 __r.__l[1] = GUINT32_SWAP_LE_BE (__w.__l[0]); \