/third_party/libfuse/lib/ |
H A D | fuse_lowlevel.c | 750 * EINVAL might mean that splice can't handle 825 " unique: %llu, success, outsize: %i (splice)\n", 839 res = splice(llp->pipe[0], NULL, ch ? ch->fd : se->fd, NULL, 844 perror("fuse: splice from pipe"); 849 fuse_log(FUSE_LOG_ERR, "fuse: short splice from pipe: %u/%u\n", 2885 res = splice(ch ? ch->fd : se->fd, NULL, llp->pipe[1], NULL, 2901 perror("fuse: splice from device"); 2906 fuse_log(FUSE_LOG_ERR, "short splice from fuse device\n");
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
H A D | ARMExpandPseudoInsts.cpp | 1010 DoneBB->splice(DoneBB->end(), &MBB, MI, MBB.end()); in ExpandCMP_SWAP() 1130 DoneBB->splice(DoneBB->end(), &MBB, MI, MBB.end()); in ExpandCMP_SWAP_64()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/RISCV/ |
H A D | RISCVISelLowering.cpp | 1127 DoneMBB->splice(DoneMBB->begin(), BB, in emitReadCycleWidePseudo() 1318 TailMBB->splice(TailMBB->end(), HeadMBB, in emitSelectPseudo()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | parserharness.js | 1576 this.editRanges.splice(0, this.maxScriptVersions - this.editRanges.length); 3445 this.editRanges.splice(0, this.maxScriptVersions - this.editRanges.length);
|
/third_party/node/test/fixtures/postject-copy/node_modules/postject/dist/ |
H A D | api.js | [all...] |
/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...] |
/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()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/base/ |
H A D | frame_node.cpp | 2745 responseLinkResult.splice(responseLinkResult.end(), std::move(newComingResponseLinkTargets)); in TouchTest() 2752 result.splice(result.end(), std::move(newComingTargets)); in TouchTest() 3001 axisResult.splice(axisResult.end(), std::move(newComingTargets)); in AxisTest()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/ |
H A D | IRTranslator.cpp | 2413 NewEntryBB.splice(NewEntryBB.begin(), EntryBB, EntryBB->begin(),
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | MachineBlockPlacement.cpp | 2701 F->splice(InsertPos, ChainBB); in buildCFGChains()
|