Searched refs:slice (Results 151 - 175 of 226) sorted by relevance

12345678910

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AsmParser/
H A DAArch64AsmParser.cpp3167 StringRef Head = Name.slice(Start, Next);
3172 Kind = Name.slice(Next, StringRef::npos);
3805 StringRef Head = Name.slice(Start, Next);
3821 Head = Name.slice(Start + 1, Next);
3838 Head = Name.slice(Start, Next);
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DELFDumper.cpp325 return Table.slice(0, Size);
3165 return GotEntries.slice(Skip, LocalNum - Skip);
3173 return GotEntries.slice(LocalNum, GlobalNum);
3182 return GotEntries.slice(LocalNum + GlobalNum, OtherNum);
3221 return PltEntries.slice(2, PltEntries.size() - 2);
3376 Sec = Sec.slice(O->size);
3559 for (uint32_t Ndx : Data.slice(1)) {
6099 W.printBinary("Magic", makeArrayRef(E->e_ident).slice(ELF::EI_MAG0, 4));
6122 W.printBinary("Unused", makeArrayRef(E->e_ident).slice(ELF::EI_PAD));
/freebsd-13-stable/contrib/llvm-project/lldb/source/Core/
H A DValueObject.cpp2298 child_name.SetString(temp_expression.slice(0, next_sep_pos));
2424 temp_expression.slice(1, close_bracket_position);
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprConstant.cpp535 CGM, makeArrayRef(Elems).slice(First, Length),
536 makeArrayRef(Offsets).slice(First, Length), Offset, getSize(DesiredTy),
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSTLExtras.h1076 /// drop_front/slice/etc.. Derived range classes must implement the following
1150 DerivedT slice(size_t n, size_t m) const {
1158 return slice(n, size() - n);
/freebsd-13-stable/contrib/llvm-project/lld/COFF/
H A DDriver.cpp1123 if (llvm::libDriverMain(argsArr.slice(1)) != 0)
1715 ArrayRef<StringRef>(searchPaths).slice(1)));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DWARFLinker/
H A DDWARFLinker.cpp970 StringRef Bytes = Data.getData().slice(OpOffset, Op.getEndOffset());
1728 Params, LineData.slice(*StmtList + 4, PrologueEnd),
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/AsmParser/
H A DPPCAsmParser.cpp1596 StringRef Mnemonic = Name.slice(0, Dot);
1604 StringRef DotStr = Name.slice(Dot, StringRef::npos);
/freebsd-13-stable/contrib/llvm-project/lld/ELF/
H A DLinkerScript.cpp447 MutableArrayRef<InputSectionBase *>(ret).slice(sizeBefore), pat);
/freebsd-13-stable/contrib/llvm-project/lld/lib/Driver/
H A DDarwinLdDriver.cpp323 table.ParseArgs(args.slice(1), missingIndex, missingCount);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Host/common/
H A DEditline.cpp958 PrintCompletion(output_file, results.slice(cur_pos, next_size), max_len);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp826 llvm::StringRef(m_bytes).slice(content_start, content_end));
/freebsd-13-stable/contrib/llvm-project/clang/lib/Driver/
H A DDriver.cpp994 ParseDriverMode(ClangExecutable, ArgList.slice(1));
1001 ParseArgStrings(ArgList.slice(1), IsCLMode(), ContainsError));
1244 StringRef ParentProcess = Data.slice(ParentProcPos+15, LineEnd).trim();
1256 ParentProcess.slice(OpenBracket + 1, CloseBracket)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombinePHI.cpp491 makeArrayRef(FixedOperands).slice(1));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DValueMapper.cpp828 makeArrayRef(AppendingInits).slice(PrefixSize));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Lanai/AsmParser/
H A DLanaiAsmParser.cpp1080 Mnemonic = Mnemonic.slice(0, 1);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ProfileData/Coverage/
H A DCoverageMappingReader.cpp1039 makeArrayRef(Filenames).slice(R.FilenamesBegin, R.FilenamesSize),
/freebsd-13-stable/sys/kern/
H A Dsched_4bsd.c100 int ts_slice; /* Remaining part of time slice. */
111 #define TDF_SLICEEND TDF_SCHED2 /* Thread time slice is over. */
221 SYSCTL_INT(_kern_sched, OID_AUTO, slice, CTLFLAG_RW, &sched_slice, 0,
731 * time slice (default is 100ms).
/freebsd-13-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DDarwin.cpp1128 return SDK.slice(0, SDK.size() - 4);
1634 Version = std::string(SDK.slice(StartVer, EndVer + 1));
1909 StringRef SDKName = SDK.slice(0, StartVer);
H A DGnu.cpp1823 MinorStr = MinorStr.slice(0, EndNumber);
1845 if (PatchText.slice(0, EndNumber).getAsInteger(10, GoodVersion.Patch) ||
2885 !VersionText.slice(1, StringRef::npos).getAsInteger(10, Version)) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DConstants.cpp1451 SrcTy ? SrcTy : GEPO->getSourceElementType(), Ops[0], Ops.slice(1),
3287 Ops[0], Ops.slice(1));
3289 Ops.slice(1));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DConstantFolding.cpp807 SrcElemTy, Ops.slice(1, i - 1)))) &&
1062 Ops.slice(1), GEP->isInBounds(),
1077 return ConstantFoldCall(Call, F, Ops.slice(0, Ops.size() - 1), TLI);
H A DInstructionSimplify.cpp4180 Type *LastType = GetElementPtrInst::getIndexedType(SrcTy, Ops.slice(1));
4247 all_of(Ops.slice(1).drop_back(1),
4277 Ops.slice(1));
4369 if (InsertValueIdxs.slice(0, NumCommonIdxs) ==
4370 Idxs.slice(0, NumCommonIdxs)) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp2669 PatchedName.slice(CCIdx, PatchedName.size() - 2))
2740 PatchedName.slice(5, PatchedName.size() - SuffixSize))
2769 PatchedName.slice(5, PatchedName.size() - SuffixSize))
/freebsd-13-stable/contrib/llvm-project/lld/lib/ReaderWriter/YAML/
H A DReaderWriterYAML.cpp476 StringRef modStr = scalar.slice(0, modStart);

Completed in 594 milliseconds

12345678910