/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/ |
H A D | MipsISelLowering.cpp | 1764 exitMBB->splice(exitMBB->begin(), BB, in emitAtomicBinaryPartword() 1948 exitMBB->splice(exitMBB->begin(), BB, in emitAtomicCmpSwapPartword() 4577 sinkMBB->splice(sinkMBB->begin(), BB, in emitPseudoSELECT() 4654 sinkMBB->splice(sinkMBB->begin(), BB, in emitPseudoD_SELECT()
|
H A D | MipsSEISelLowering.cpp | 3052 Sink->splice(Sink->begin(), BB, std::next(MachineBasicBlock::iterator(MI)), in emitBPOSGE32() 3121 Sink->splice(Sink->begin(), BB, std::next(MachineBasicBlock::iterator(MI)), in emitMSACBranchPseudo()
|
/third_party/python/Lib/test/ |
H A D | test_os.py | 97 # bpo-41625: On AIX, splice() only works with a socket, not with a pipe. 99 'on AIX, splice() only accepts sockets') 404 @unittest.skipUnless(hasattr(os, 'splice'), 'test needs os.splice()') 407 os.splice(0, 1, -10) 409 @unittest.skipUnless(hasattr(os, 'splice'), 'test needs os.splice()') 427 i = os.splice(in_fd, write_fd, 5) 442 @unittest.skipUnless(hasattr(os, 'splice'), 'test needs os.splice()') [all...] |
/kernel/linux/linux-5.10/drivers/block/ |
H A D | loop.c | 74 #include <linux/splice.h>
|
/kernel/linux/linux-5.10/drivers/char/ |
H A D | virtio_console.c | 14 #include <linux/splice.h> 925 * Rproc_serial does not yet support splice. To support splice in port_fops_splice_write()
|
/kernel/linux/linux-5.10/lib/ |
H A D | iov_iter.c | 10 #include <linux/splice.h>
|
/kernel/linux/linux-5.10/fs/nfsd/ |
H A D | vfs.c | 19 #include <linux/splice.h>
|
/kernel/linux/linux-6.6/fs/nfsd/ |
H A D | vfs.c | 19 #include <linux/splice.h> 1001 * nfsd_splice_read - Perform a VFS read using a splice pipe
|
/kernel/linux/linux-6.6/drivers/char/ |
H A D | virtio_console.c | 14 #include <linux/splice.h> 919 * Rproc_serial does not yet support splice. To support splice in port_fops_splice_write()
|
/kernel/linux/linux-6.6/drivers/block/ |
H A D | loop.c | 26 #include <linux/splice.h>
|
/kernel/linux/linux-6.6/lib/ |
H A D | iov_iter.c | 11 #include <linux/splice.h>
|
/third_party/node/lib/ |
H A D | net.js | 2257 this._workers.splice(index, 1);
|
/third_party/node/test/fixtures/wpt/resources/ |
H A D | testharness.js | 3952 array.splice(index, 1);
|
/third_party/rust/crates/libc/src/unix/bsd/netbsdlike/openbsd/ |
H A D | mod.rs | 223 pub struct splice { structure names
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Linker/ |
H A D | IRMover.cpp | 1075 // Steal arguments and splice the body of Src into Dst. in linkFunctionBody() 1077 Dst.getBasicBlockList().splice(Dst.end(), Src.getBasicBlockList()); in linkFunctionBody()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
H A D | HexagonHardwareLoops.cpp | 1351 BB->splice(++BumpI->getIterator(), BB, CmpI->getIterator()); in orderBumpCompare()
|
H A D | HexagonVLIWPacketizer.cpp | 182 B.splice(InsertPt, &B, MI.getIterator()); in moveInstrOut()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/ |
H A D | PPCMIPeephole.cpp | 1455 MBBtoMoveCmp->splice(I, &MBB2, MachineBasicBlock::iterator(CMPI2)); in eliminateRedundantCompare()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyISelLowering.cpp | 379 DoneMBB->splice(DoneMBB->begin(), BB, std::next(MI.getIterator()), BB->end()); in LowerFPToInt()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/ |
H A D | ControlHeightReduction.cpp | 1791 F.getBasicBlockList().splice(ExitBlock->getIterator(), in cloneScopeBlocks()
|
/third_party/rust/crates/memchr/bench/data/code/ |
H A D | rust-library.rs | 7325 v.splice(2..4, a.iter().cloned()); in test_splice() 7327 v.splice(1..3, Some(20)); in test_splice() 7335 let t1: Vec<_> = v.splice(2..=3, a.iter().cloned()).collect(); in test_splice_inclusive_range() 7338 let t2: Vec<_> = v.splice(1..=2, Some(20)).collect(); in test_splice_inclusive_range() 7348 v.splice(5..6, a.iter().cloned()); in test_splice_out_of_bounds() 7356 v.splice(5..=5, a.iter().cloned()); in test_splice_inclusive_out_of_bounds() 7363 let t: Vec<_> = vec.splice(1..2, vec2.iter().cloned()).collect(); in test_splice_items_zero_sized() 7371 let t: Vec<_> = vec.splice(.., None).collect(); in test_splice_unbounded() 7380 std::mem::forget(v.splice(2..4, a.iter().cloned())); in test_splice_forget() 8262 next_then_drop(v.splice( in test_stable_pointers() 46890 mod splice; global() modules 49356 pub fn splice<R, I>(&mut self, range: R, replace_with: I) -> Splice<'_, I::IntoIter, A> splice() functions [all...] |
/third_party/googletest/googletest/src/ |
H A D | gtest.cc | 1430 hunk_.splice(hunk_.end(), hunk_removes_); 1431 hunk_.splice(hunk_.end(), hunk_adds_);
|
/third_party/mesa3d/src/gtest/src/ |
H A D | gtest.cc | 1174 hunk_.splice(hunk_.end(), hunk_removes_); in FlushEdits() 1175 hunk_.splice(hunk_.end(), hunk_adds_); in FlushEdits()
|
/third_party/node/deps/googletest/src/ |
H A D | gtest.cc | 1447 hunk_.splice(hunk_.end(), hunk_removes_); 1448 hunk_.splice(hunk_.end(), hunk_adds_);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPURegisterBankInfo.cpp | 798 RemainderBB->splice(RemainderBB->begin(), &MBB, Range.end(), MBB.end()); in executeInWaterfallLoop() 828 LoopBB->splice(LoopBB->end(), &MBB, Range.begin(), MBB.end()); in executeInWaterfallLoop()
|