Searched refs:new_last (Results 1 – 8 of 8) sorted by relevance
/third_party/boost/boost/intrusive/ |
D | linear_slist_algorithms.hpp | 235 node_ptr new_last = node_ptr(); in move_first_n_backwards() local 243 new_last = first; in move_first_n_backwards() 249 old_last = new_last; in move_first_n_backwards() 266 NodeTraits::set_next(new_last, node_ptr()); in move_first_n_backwards() 268 ret.second = new_last; in move_first_n_backwards() 292 node_ptr old_last(first), next_to_it, new_last(p); in move_first_n_forward() local 296 new_last = node_traits::get_next(new_last); in move_first_n_forward() 309 for( new_last = p in move_first_n_forward() 311 ; new_last = node_traits::get_next(new_last)){ in move_first_n_forward() 317 node_ptr new_first(node_traits::get_next(new_last)); in move_first_n_forward() [all …]
|
D | circular_slist_algorithms.hpp | 308 node_ptr new_last = node_ptr(); in move_backwards() local 315 new_last = first; in move_backwards() 325 base_t::unlink_after(new_last); in move_backwards() 337 base_t::link_after(new_last, p); in move_backwards() 338 return new_last; in move_backwards() 361 node_ptr old_last(first), next_to_it, new_last(p); in move_forward() local 365 new_last = node_traits::get_next(new_last); in move_forward() 377 for( new_last = p in move_forward() 379 ; new_last = node_traits::get_next(new_last)){ in move_forward() 386 base_t::link_after(new_last, p); in move_forward() [all …]
|
/third_party/boost/libs/range/doc/reference/algorithm/ |
D | remove_if.qbk | 44 …ator `new_last` such that the range `[begin(rng), new_last)` contains no elements where `pred(x)` …
|
D | remove.qbk | 43 …new_last` such that the range `[begin(rng), new_last)` contains no elements equal to `val`. The `r…
|
D | unique.qbk | 48 Elements in the range `[new_last, end(rng))` are dereferenceable but undefined.
|
/third_party/mesa3d/src/amd/vulkan/winsys/amdgpu/ |
D | radv_amdgpu_bo.c | 162 struct radv_amdgpu_map_range new_first, new_last; in radv_amdgpu_winsys_bo_virtual_bind() local 234 new_last = parent->ranges[last]; in radv_amdgpu_winsys_bo_virtual_bind() 251 new_last.size -= offset + size - new_last.offset; in radv_amdgpu_winsys_bo_virtual_bind() 252 new_last.bo_offset += (offset + size - new_last.offset); in radv_amdgpu_winsys_bo_virtual_bind() 253 new_last.offset = offset + size; in radv_amdgpu_winsys_bo_virtual_bind() 254 radv_amdgpu_winsys_virtual_map(ws, parent, &new_last); in radv_amdgpu_winsys_bo_virtual_bind() 266 parent->ranges[new_idx + 1] = new_last; in radv_amdgpu_winsys_bo_virtual_bind()
|
/third_party/grpc/src/core/lib/iomgr/ |
D | error.cc | 274 grpc_linked_error new_last = {new_err, UINT8_MAX}; in internal_add_error() local 293 memcpy((*err)->arena + slot, &new_last, sizeof(grpc_linked_error)); in internal_add_error()
|
/third_party/mesa3d/src/mesa/vbo/ |
D | vbo_exec_api.c | 322 fi_type *new_last = exec->vtx.vertex + exec->vtx.vertex_size_no_pos - 1; in vbo_exec_wrap_upgrade_vertex() local 341 fi_type *new = new_last; in vbo_exec_wrap_upgrade_vertex()
|