Home
last modified time | relevance | path

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

/external/stlport/stlport/stl/
D_rope.c107 size_t __buf_start_pos = __leaf_pos; in _S_setbuf() local
112 if (__buf_start_pos + __len <= __pos) { in _S_setbuf()
113 __buf_start_pos = __pos - __len/4; in _S_setbuf()
114 if (__buf_start_pos + __len > __leaf_end) { in _S_setbuf()
115 __buf_start_pos = __leaf_end - __len; in _S_setbuf()
118 if (__buf_start_pos + __len > __leaf_end) { in _S_setbuf()
119 __len = __leaf_end - __buf_start_pos; in _S_setbuf()
121 (*__fn)(__buf_start_pos - __leaf_pos, __len, __x._M_tmp_buf._M_data); in _S_setbuf()
122 __x._M_buf_ptr = __x._M_tmp_buf._M_data + (__pos - __buf_start_pos); in _S_setbuf()