HomeSort by: relevance | last modified time | path
    Searched refs:splice (Results 1 - 25 of 236) sorted by relevancy

1 2 3 4 5 6 7 8 910

  /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/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/mit/isl/dist/
isl_multi_splice_templ.c 38 __isl_give MULTI(BASE) *FN(MULTI(BASE),splice)(
  /src/crypto/external/apache2/openssl/dist/apps/
CA.pl.in 113 push @ret, join("", splice(@frag)) if (@frag > 0);
116 push @ret, join("", splice(@frag)) if (@frag > 0);
193 push @ret, join("", splice(@frag)) if (@frag > 0);
196 push @ret, join("", splice(@frag)) if (@frag);
  /src/crypto/external/apache2/openssl/dist/external/perl/Text-Template-1.56/t/
delimiters.t 72 while (my ($test, $result) = splice @tests, 0, 2) {
basic.t 140 while (my ($test, $result) = splice @tests, 0, 2) {
  /src/crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/t/
delimiters.t 72 while (my ($test, $result) = splice @tests, 0, 2) {
  /src/external/gpl3/gdb/dist/gdbsupport/
owning_intrusive_list.h 90 void splice (owning_intrusive_list &&other) noexcept
91 { this->base::splice (std::move (other)); }
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
SymbolRewriter.h 125 Descriptors.splice(Descriptors.begin(), DL);
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyDebugValueManager.cpp 61 MBB->splice(Insert, DBI->getParent(), DBI);
WebAssemblyFixBrTableDefaults.cpp 133 // Remove any branches from the header and splice in the jump table instead
135 HeaderMBB->splice(HeaderMBB->end(), MBB, MBB->begin(), MBB->end());
  /src/crypto/external/apache2/openssl/dist/crypto/perlasm/
x86masm.pl 170 { push(@out,("DB\t").join(',',splice(@_,0,16))."\n") while(@_); }
173 { push(@out,("DW\t").join(',',splice(@_,0,8))."\n") while(@_); }
176 { push(@out,("DD\t").join(',',splice(@_,0,4))."\n") while(@_); }
  /src/crypto/external/bsd/openssl/dist/crypto/perlasm/
x86masm.pl 169 { push(@out,("DB\t").join(',',splice(@_,0,16))."\n") while(@_); }
172 { push(@out,("DW\t").join(',',splice(@_,0,8))."\n") while(@_); }
175 { push(@out,("DD\t").join(',',splice(@_,0,4))."\n") while(@_); }
  /src/crypto/external/bsd/openssl.old/dist/crypto/perlasm/
x86masm.pl 169 { push(@out,("DB\t").join(',',splice(@_,0,16))."\n") while(@_); }
172 { push(@out,("DW\t").join(',',splice(@_,0,8))."\n") while(@_); }
175 { push(@out,("DD\t").join(',',splice(@_,0,4))."\n") while(@_); }
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
stl_list.h 217 // Splice the node at __i into *this.
221 // Splice all nodes from *this after __i.
1468 splice(__position, __tmp);
1513 splice(__position, __tmp);
1621 splice(const_iterator __position, list&& __x) noexcept
1623 splice(iterator __position, list& __x)
1640 splice(const_iterator __position, list& __x) noexcept
1641 { splice(__position, std::move(__x)); }
1656 splice(const_iterator __position, list&& __x, const_iterator __i) noexcept
1668 splice(iterator __position, list& __x, iterator __i
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
stl_list.h 216 // Splice the node at __i into *this.
220 // Splice all nodes from *this after __i.
1459 splice(__position, __tmp);
1504 splice(__position, __tmp);
1612 splice(const_iterator __position, list&& __x) noexcept
1614 splice(iterator __position, list& __x)
1631 splice(const_iterator __position, list& __x) noexcept
1632 { splice(__position, std::move(__x)); }
1647 splice(const_iterator __position, list&& __x, const_iterator __i) noexcept
1659 splice(iterator __position, list& __x, iterator __i
    [all...]
  /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/lib/IR/
BasicBlock.cpp 134 MovePos->getParent()->getBasicBlockList().splice(
139 MovePos->getParent()->getBasicBlockList().splice(
397 New->getInstList().splice(New->end(), this->getInstList(), I, end());
426 New->getInstList().splice(New->end(), this->getInstList(), begin(), I);
  /src/crypto/external/bsd/openssl/dist/test/recipes/
70-test_tls13hrr.t 151 splice @{$proxy->record_list}, $i, 0, $dup_hrr;
  /src/crypto/external/bsd/openssl.old/dist/test/recipes/
70-test_tls13hrr.t 124 splice @{$proxy->record_list}, $i, 0, $dup_hrr;
  /src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/
LanaiDelaySlotFiller.cpp 120 MBB.splice(std::next(I), &MBB, FI, I);
124 MBB.splice(std::next(I), &MBB, J);
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCEarlyReturn.cpp 163 PrevMBB.splice(PrevMBB.end(), &ReturnMBB, I);
  /src/external/apache2/llvm/dist/llvm/utils/
llvm-native-gxx 24 splice (@ARGV, $i, 1);
  /src/external/gpl3/gdb.old/dist/gdb/unittests/
intrusive_list-selftests.c 522 list1.splice (std::move (list2));
542 list1.splice (std::move (list2));
562 list1.splice (std::move (list2));
578 list1.splice (std::move (list2));

Completed in 36 milliseconds

1 2 3 4 5 6 7 8 910