HomeSort by: relevance | last modified time | path
    Searched defs:splice (Results 1 - 8 of 8) sorted by relevancy

  /src/sys/external/bsd/drm2/linux/
linux_dma_fence_chain.c 248 struct dma_fence *prev, *splice; local
259 splice = get_prev(prev_chain);
263 splice = NULL;
266 if (atomic_cas_ptr(&chain->dfc_prev, prev, splice) == prev)
267 dma_fence_put(prev); /* transferred to splice */
269 dma_fence_put(splice);
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
simple_ilist.h 110 simple_ilist(simple_ilist &&X) { splice(end(), X); }
113 splice(end(), X);
237 /// Splice in another list.
238 void splice(iterator I, simple_ilist &L2) { function in class:llvm::simple_ilist
239 splice(I, L2, L2.begin(), L2.end());
242 /// Splice in a node from another list.
243 void splice(iterator I, simple_ilist &L2, iterator Node) { function in class:llvm::simple_ilist
244 splice(I, L2, Node, std::next(Node));
247 /// Splice in a range of nodes from another list.
248 void splice(iterator I, simple_ilist &, iterator First, iterator Last) function in class:llvm::simple_ilist
    [all...]
ilist.h 283 // transfer - The heart of the splice function. Move linked list nodes from
293 base_list_type::splice(position, L2, first, last);
328 // Splice members - defined in terms of transfer...
329 void splice(iterator where, iplist_impl &L2) { function in class:llvm::iplist_impl
333 void splice(iterator where, iplist_impl &L2, iterator first) { function in class:llvm::iplist_impl
338 void splice(iterator where, iplist_impl &L2, iterator first, iterator last) { function in class:llvm::iplist_impl
341 void splice(iterator where, iplist_impl &L2, reference N) { function in class:llvm::iplist_impl
342 splice(where, L2, iterator(N));
344 void splice(iterator where, iplist_impl &L2, pointer N) { function in class:llvm::iplist_impl
345 splice(where, L2, iterator(N))
    [all...]
  /src/external/gpl2/texinfo/dist/util/
texi-docstring-magic.el 80 (defun texi-docstring-magic-splice-sep (strings sep)
213 (texi-docstring-magic-splice-sep args " ")
215 ;; (texi-docstring-magic-splice-sep extras " ")
  /src/usr.bin/diff/
diff.c 113 static char *splice(char *, char *);
371 argv[0] = splice(argv[0], argv[1]);
376 argv[1] = splice(argv[1], argv[0]);
557 splice(char *dir, char *path) function
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachineBasicBlock.h 954 void splice(iterator Where, MachineBasicBlock *Other, iterator From) { function in class:llvm::MachineBasicBlock
955 // The range splice() doesn't allow noop moves, but this one does.
957 splice(Where, Other, From, std::next(From));
965 void splice(iterator Where, MachineBasicBlock *Other, function in class:llvm::MachineBasicBlock
967 Insts.splice(Where.getInstrIterator(), Other->Insts,
  /src/external/gpl3/gcc/dist/gcc/
dwarf2out.cc 25932 bool splice = true;
25964 splice = false;
25970 splice = false;
25972 if (splice)
25914 bool splice = true; local
  /src/external/gpl3/gcc.old/dist/gcc/
dwarf2out.cc 25794 bool splice = true;
25826 splice = false;
25832 splice = false;
25834 if (splice)
25776 bool splice = true; local

Completed in 59 milliseconds