Searched defs:__len (Results 1 - 25 of 31) sorted by relevance

12

/external/stlport/stlport/stl/
H A D_tempbuf.c37 __get_temporary_buffer(ptrdiff_t __len, _Tp*) argument
39 if (__len > ptrdiff_t(INT_MAX / sizeof(_Tp)))
40 __len = INT_MAX / sizeof(_Tp);
42 while (__len > 0) {
43 _Tp* __tmp = (_Tp*) malloc((size_t)__len * sizeof(_Tp));
45 return pair<_Tp*, ptrdiff_t>(__tmp, __len);
46 __len /= 2;
H A D_string_hash.h36 size_t __len = __s.size(); local
38 for ( size_t __i = 0; __i < __len; ++__i)
H A D_heap.c112 _Distance __len, _Tp __val) {
115 while (__secondChild < __len) {
122 if (__secondChild == __len) {
147 _Distance __len, _Tp __val, _Compare __comp)
151 while (__secondChild < __len) {
161 if (__secondChild == __len) {
194 _Distance __len = __last - __first;
195 _Distance __parent = (__len - 2)/2;
198 __adjust_heap(__first, __parent, __len, _Tp(*(__first + __parent)));
220 _Distance __len
111 __adjust_heap(_RandomAccessIterator __first, _Distance __holeIndex, _Distance __len, _Tp __val) argument
146 __adjust_heap(_RandomAccessIterator __first, _Distance __holeIndex, _Distance __len, _Tp __val, _Compare __comp) argument
[all...]
H A D_string_sum_methods.h109 const size_type __len = __old_size + (max)(__old_size, __s_size) + 1; local
110 pointer __new_start = this->_M_start_of_storage.allocate(__len);
115 this->_M_reset(__new_start, __new_finish, __new_start + __len);
133 const size_type __len = __old_size + (max)(__old_size, __s_size) + 1; local
134 pointer __new_start = this->_M_start_of_storage.allocate(__len);
139 this->_M_reset(__new_start, __new_finish, __new_start + __len);
H A D_tempbuf.h49 __get_temporary_buffer(ptrdiff_t __len, _Tp*);
54 inline pair<_Tp*, ptrdiff_t> _STLP_CALL get_temporary_buffer(ptrdiff_t __len) { argument
55 return __get_temporary_buffer(__len, (_Tp*) 0);
66 get_temporary_buffer(ptrdiff_t __len, _Tp*) { argument
67 return __get_temporary_buffer(__len, (_Tp*) 0);
H A D_list.c97 size_type __len = 0; local
98 for ( ; __i != end() && __len < __new_size; ++__i, ++__len);
100 if (__len == __new_size)
103 insert(end(), __new_size - __len, __x);
H A D_slist.c106 void slist<_Tp,_Alloc>::resize(size_type __len, const _Tp& __x) { argument
108 while (__cur->_M_next != 0 && __len > 0) {
109 --__len;
115 _M_insert_after_fill(__cur, __len, __x);
H A D_vector.c87 size_type __len = _M_compute_next_size(__fill_len); local
88 pointer __new_start = this->_M_end_of_storage.allocate(__len, __len);
102 this->_M_end_of_storage.deallocate(__new_start,__len)))
104 _M_set(__new_start, __new_finish, __new_start + __len);
110 size_type __len = _M_compute_next_size(__fill_len); local
111 pointer __new_start = this->_M_end_of_storage.allocate(__len, __len);
118 _M_set(__new_start, __new_finish, __new_start + __len);
188 size_type __len
[all...]
H A D_algobase.c455 _Distance __len = _STLP_STD::distance(__first, __last); local
459 while (__len > 0) {
460 __half = __len >> 1;
467 __len = __len - __half - 1;
470 __len = __half;
H A D_num_put.c148 __copy_integer_and_fill(const _CharT* __buf, ptrdiff_t __len, argument
152 if (__len >= __wid)
153 return _STLP_STD::copy(__buf, __buf + __len, __oi);
160 __STATIC_CAST(streamsize, __wid - __len)));
164 __oi = _STLP_STD::copy(__buf, __buf + __len, __oi);
167 else if (__dir == ios_base::internal && __len != 0 &&
171 return _STLP_STD::copy(__buf + 1, __buf + __len, __oi);
173 else if (__dir == ios_base::internal && __len >= 2 &&
179 return _STLP_STD::copy(__buf + 2, __buf + __len, __oi);
183 return _STLP_STD::copy(__buf, __buf + __len, __o
203 ptrdiff_t __len = __iend - __buf; local
235 ptrdiff_t __len = __iend - __buf; local
[all...]
H A D_tree.c689 int __len = __black_count(_M_leftmost(), _M_root()); local
705 if (!__L && !__R && __black_count(__x, _M_root()) != __len)
H A D_string.c200 size_type __len = _M_compute_next_size(__n); local
201 pointer __new_start = this->_M_start_of_storage.allocate(__len, __len);
206 this->_M_reset(__new_start, __new_finish, __new_start + __len);
266 size_type __len = _M_compute_next_size(1); local
267 pointer __new_start = this->_M_start_of_storage.allocate(__len, __len);
274 this->_M_reset(__new_start, __new_finish, __new_start + __len);
301 size_type __len = _M_compute_next_size(__n); local
302 pointer __new_start = this->_M_start_of_storage.allocate(__len, __le
358 size_type __len = _M_compute_next_size(__n); local
374 size_type __len = (size_type)(__last - __first); local
393 const difference_type __len = __last - __first; local
423 const size_t __len = size(); local
454 const size_type __len = size(); local
470 const size_type __len = size(); local
499 const size_type __len = size(); local
543 const size_type __len = size(); local
561 const size_type __len = size(); local
[all...]
H A D_string_workaround.h221 size_type __len = this->_M_compute_next_size(__n); local
222 pointer __new_start = this->_M_start_of_storage.allocate(__len, __len);
227 this->_M_reset(__new_start, __new_finish, __new_start + __len);
377 size_type __len = this->_M_compute_next_size(__n); local
378 pointer __new_start = this->_M_start_of_storage.allocate(__len, __len);
384 this->_M_reset(__new_start, __new_finish, __new_start + __len);
H A D_bvector.h404 size_type __len = size() ? 2 * size() : _STLP_WORD_BIT; local
405 __chunk_type* __q = this->_M_bit_alloc(__len);
410 this->_M_end_of_storage._M_data = __q + _Base::_M_bits_to_chunks(__len);
457 size_type __len = size() + (max)(size(), __n); local
458 __chunk_type* __q = this->_M_bit_alloc(__len);
463 this->_M_end_of_storage._M_data = __q + _Base::_M_bits_to_chunks(__len);
639 size_type __len = _STLP_STD::distance(__first, __last); local
640 if (__len < size())
730 size_type __len = size() + (max)(size(), __n); local
731 __chunk_type* __q = this->_M_bit_alloc(__len);
751 size_type __len = size() + (max)(size(), __n); local
772 size_type __len = size() + (max)(size(), __n); local
[all...]
H A D_deque.h639 size_type __len = __last - __first;
640 if (__len > __size) {
652 size_type __len = _STLP_STD::distance(__first, __last); local
653 if (__len > size()) {
816 const size_type __len = size(); local
817 if (__new_size < __len)
820 insert(this->_M_finish, __new_size - __len, __x);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rbug/
H A Drbug_core.c43 uint32_t __len = 0; local
51 PAD(__len, 8);
53 __data = (uint8_t*)MALLOC(__len);
58 WRITE(4, uint32_t, ((uint32_t)(__len / 4)));
63 if (__pos != __len) {
66 rbug_connection_send_start(__con, RBUG_OP_NOOP, __len);
67 rbug_connection_write(__con, __data, __len);
78 uint32_t __len = 0; local
86 PAD(__len, 8);
88 __data = (uint8_t*)MALLOC(__len);
114 uint32_t __len = 0; local
152 uint32_t __len = 0; local
191 uint32_t __len = 0; local
[all...]
H A Drbug_shader.c44 uint32_t __len = 0; local
53 PAD(__len, 8);
55 __data = (uint8_t*)MALLOC(__len);
60 WRITE(4, uint32_t, ((uint32_t)(__len / 4)));
66 if (__pos != __len) {
69 rbug_connection_send_start(__con, RBUG_OP_SHADER_LIST, __len);
70 rbug_connection_write(__con, __data, __len);
83 uint32_t __len = 0; local
93 PAD(__len, 8);
95 __data = (uint8_t*)MALLOC(__len);
125 uint32_t __len = 0; local
170 uint32_t __len = 0; local
214 uint32_t __len = 0; local
259 uint32_t __len = 0; local
[all...]
H A Drbug_context.c43 uint32_t __len = 0; local
51 PAD(__len, 8);
53 __data = (uint8_t*)MALLOC(__len);
58 WRITE(4, uint32_t, ((uint32_t)(__len / 4)));
63 if (__pos != __len) {
66 rbug_connection_send_start(__con, RBUG_OP_CONTEXT_LIST, __len);
67 rbug_connection_write(__con, __data, __len);
79 uint32_t __len = 0; local
88 PAD(__len, 8);
90 __data = (uint8_t*)MALLOC(__len);
118 uint32_t __len = 0; local
159 uint32_t __len = 0; local
200 uint32_t __len = 0; local
245 uint32_t __len = 0; local
293 uint32_t __len = 0; local
333 uint32_t __len = 0; local
382 uint32_t __len = 0; local
435 uint32_t __len = 0; local
[all...]
H A Drbug_texture.c43 uint32_t __len = 0; local
51 PAD(__len, 8);
53 __data = (uint8_t*)MALLOC(__len);
58 WRITE(4, uint32_t, ((uint32_t)(__len / 4)));
63 if (__pos != __len) {
66 rbug_connection_send_start(__con, RBUG_OP_TEXTURE_LIST, __len);
67 rbug_connection_write(__con, __data, __len);
79 uint32_t __len = 0; local
88 PAD(__len, 8);
90 __data = (uint8_t*)MALLOC(__len);
127 uint32_t __len = 0; local
190 uint32_t __len = 0; local
244 uint32_t __len = 0; local
298 uint32_t __len = 0; local
365 uint32_t __len = 0; local
[all...]
/external/mesa3d/src/gallium/auxiliary/rbug/
H A Drbug_core.c43 uint32_t __len = 0; local
51 PAD(__len, 8);
53 __data = (uint8_t*)MALLOC(__len);
58 WRITE(4, uint32_t, ((uint32_t)(__len / 4)));
63 if (__pos != __len) {
66 rbug_connection_send_start(__con, RBUG_OP_NOOP, __len);
67 rbug_connection_write(__con, __data, __len);
78 uint32_t __len = 0; local
86 PAD(__len, 8);
88 __data = (uint8_t*)MALLOC(__len);
114 uint32_t __len = 0; local
152 uint32_t __len = 0; local
191 uint32_t __len = 0; local
[all...]
H A Drbug_shader.c44 uint32_t __len = 0; local
53 PAD(__len, 8);
55 __data = (uint8_t*)MALLOC(__len);
60 WRITE(4, uint32_t, ((uint32_t)(__len / 4)));
66 if (__pos != __len) {
69 rbug_connection_send_start(__con, RBUG_OP_SHADER_LIST, __len);
70 rbug_connection_write(__con, __data, __len);
83 uint32_t __len = 0; local
93 PAD(__len, 8);
95 __data = (uint8_t*)MALLOC(__len);
125 uint32_t __len = 0; local
170 uint32_t __len = 0; local
214 uint32_t __len = 0; local
259 uint32_t __len = 0; local
[all...]
H A Drbug_context.c43 uint32_t __len = 0; local
51 PAD(__len, 8);
53 __data = (uint8_t*)MALLOC(__len);
58 WRITE(4, uint32_t, ((uint32_t)(__len / 4)));
63 if (__pos != __len) {
66 rbug_connection_send_start(__con, RBUG_OP_CONTEXT_LIST, __len);
67 rbug_connection_write(__con, __data, __len);
79 uint32_t __len = 0; local
88 PAD(__len, 8);
90 __data = (uint8_t*)MALLOC(__len);
118 uint32_t __len = 0; local
159 uint32_t __len = 0; local
200 uint32_t __len = 0; local
245 uint32_t __len = 0; local
293 uint32_t __len = 0; local
333 uint32_t __len = 0; local
382 uint32_t __len = 0; local
435 uint32_t __len = 0; local
[all...]
H A Drbug_texture.c43 uint32_t __len = 0; local
51 PAD(__len, 8);
53 __data = (uint8_t*)MALLOC(__len);
58 WRITE(4, uint32_t, ((uint32_t)(__len / 4)));
63 if (__pos != __len) {
66 rbug_connection_send_start(__con, RBUG_OP_TEXTURE_LIST, __len);
67 rbug_connection_write(__con, __data, __len);
79 uint32_t __len = 0; local
88 PAD(__len, 8);
90 __data = (uint8_t*)MALLOC(__len);
127 uint32_t __len = 0; local
190 uint32_t __len = 0; local
244 uint32_t __len = 0; local
298 uint32_t __len = 0; local
365 uint32_t __len = 0; local
[all...]
/external/libcxx/src/support/solaris/
H A Dxlocale.c74 size_t mbsrtowcs_l(wchar_t *__dest, const char **__src, size_t __len, argument
78 __dest, __src, __len, __ps);
/external/stlport/stlport/stl/debug/
H A D_list.h294 size_type __len = 0; local
295 for ( ; __i != _M_non_dbg_impl.end() && __len < __new_size; ++__i, ++__len);
297 if (__len == __new_size)
300 _M_non_dbg_impl.insert(_M_non_dbg_impl.end(), __new_size - __len, __x);

Completed in 449 milliseconds

12