Home
last modified time | relevance | path

Searched refs:splice (Results 201 - 225 of 262) sorted by relevance

1234567891011

/third_party/libfuse/lib/
H A Dfuse_lowlevel.c750 * 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 DARMExpandPseudoInsts.cpp1010 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 DRISCVISelLowering.cpp1127 DoneMBB->splice(DoneMBB->begin(), BB, in emitReadCycleWidePseudo()
1318 TailMBB->splice(TailMBB->end(), HeadMBB, in emitSelectPseudo()
/third_party/typescript/tests/baselines/reference/
H A Dparserharness.js1576 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 Dapi.js[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp1764 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 DMipsSEISelLowering.cpp3052 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 Dtest_os.py97 # 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 Dnet.js2257 this._workers.splice(index, 1);
/third_party/node/test/fixtures/wpt/resources/
H A Dtestharness.js3952 array.splice(index, 1);
/third_party/rust/crates/libc/src/unix/bsd/netbsdlike/openbsd/
H A Dmod.rs223 pub struct splice { structure names
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Linker/
H A DIRMover.cpp1075 // 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 DHexagonHardwareLoops.cpp1351 BB->splice(++BumpI->getIterator(), BB, CmpI->getIterator()); in orderBumpCompare()
H A DHexagonVLIWPacketizer.cpp182 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 DPPCMIPeephole.cpp1455 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 DWebAssemblyISelLowering.cpp379 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 DControlHeightReduction.cpp1791 F.getBasicBlockList().splice(ExitBlock->getIterator(), in cloneScopeBlocks()
/third_party/rust/crates/memchr/bench/data/code/
H A Drust-library.rs7325 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 Dgtest.cc1430 hunk_.splice(hunk_.end(), hunk_removes_);
1431 hunk_.splice(hunk_.end(), hunk_adds_);
/third_party/mesa3d/src/gtest/src/
H A Dgtest.cc1174 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 Dgtest.cc1447 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 DAMDGPURegisterBankInfo.cpp798 RemainderBB->splice(RemainderBB->begin(), &MBB, Range.end(), MBB.end()); in executeInWaterfallLoop()
828 LoopBB->splice(LoopBB->end(), &MBB, Range.begin(), MBB.end()); in executeInWaterfallLoop()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/
H A DIRTranslator.cpp2413 NewEntryBB.splice(NewEntryBB.begin(), EntryBB, EntryBB->begin(),
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A DMachineBlockPlacement.cpp2701 F->splice(InsertPos, ChainBB); in buildCFGChains()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
H A DAArch64FrameLowering.cpp803 MBB.splice(FirstSPPopI, &MBB, LastPopI); in adaptForLdStOpt()

Completed in 174 milliseconds

1234567891011