Searched refs:new_tail (Results 1 – 5 of 5) sorted by relevance
/third_party/musl/src/exit/linux/ |
D | atexit.c | 65 struct node *new_tail; in append_node() local 67 new_tail = head; in append_node() 69 new_tail = tail->next; in append_node() 72 new_tail->func = func; in append_node() 73 new_tail->arg = arg; in append_node() 74 new_tail->dso = dso; in append_node() 75 new_tail->internal_dso = internal_dso; in append_node() 77 new_tail->prev = tail; in append_node() 78 tail = new_tail; in append_node()
|
/third_party/musl/porting/linux/user/src/exit/ |
D | atexit.c | 65 struct node *new_tail; in append_node() local 67 new_tail = head; in append_node() 69 new_tail = tail->next; in append_node() 72 new_tail->func = func; in append_node() 73 new_tail->arg = arg; in append_node() 74 new_tail->dso = dso; in append_node() 75 new_tail->internal_dso = internal_dso; in append_node() 77 new_tail->prev = tail; in append_node() 78 tail = new_tail; in append_node()
|
/third_party/mesa3d/src/microsoft/compiler/ |
D | dxil_nir.c | 1552 nir_deref_instr *new_tail = nir_build_deref_var(b, new_var); in redirect_sampler_derefs() local 1556 new_tail = nir_build_deref_follower(b, new_tail, path.path[i]); in redirect_sampler_derefs() 1560 nir_instr_rewrite_src_ssa(&tex->instr, &tex->src[sampler_idx].src, &new_tail->dest.ssa); in redirect_sampler_derefs() 1631 nir_deref_instr *new_tail = nir_build_deref_var(b, new_var); in redirect_texture_derefs() local 1635 new_tail = nir_build_deref_follower(b, new_tail, path.path[i]); in redirect_texture_derefs() 1639 nir_instr_rewrite_src_ssa(&tex->instr, &tex->src[texture_idx].src, &new_tail->dest.ssa); in redirect_texture_derefs()
|
/third_party/node/deps/v8/src/execution/ |
D | futex-emulation.cc | 59 FutexWaitListNode* new_tail = nullptr; in DeleteNodesForIsolate() local 69 new_tail = node; in DeleteNodesForIsolate() 74 *tail = new_tail; in DeleteNodesForIsolate()
|
/third_party/rust/crates/memchr/bench/data/code/ |
D | rust-library.rs | 40794 let new_tail = new_capacity - (old_capacity - self.tail); localVariable 40796 self.copy_nonoverlapping(new_tail, self.tail, old_capacity - self.tail); 40798 self.tail = new_tail; 41184 let new_tail = target_cap - len; localVariable 41186 self.copy_nonoverlapping(new_tail, self.tail, len); 41188 self.tail = new_tail; 41992 let new_tail = self.wrap_sub(self.tail, 1); localVariable 41994 self.copy(new_tail, self.tail, 1); 41998 self.tail = new_tail;
|