Home
last modified time | relevance | path

Searched refs:Slice (Results 1 – 16 of 16) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
HDCRC.cpp92 ArrayRef<uint8_t> Slice = Data.take_front(UINT32_MAX); in crc32() local
93 CRC = ::crc32(CRC, (const Bytef *)Slice.data(), (uInt)Slice.size()); in crc32()
94 Data = Data.drop_front(Slice.size()); in crc32()
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/
HDMinidump.h206 Expected<ArrayRef<uint8_t>> Slice = in getDataSliceAs() local
208 if (!Slice) in getDataSliceAs()
209 return Slice.takeError(); in getDataSliceAs()
210 return ArrayRef<T>(reinterpret_cast<const T *>(Slice->data()), Count); in getDataSliceAs()
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
HDLEB128.h144 uint64_t Slice = *p & 0x7f; variable
145 if (Shift >= 64 || Slice << Shift >> Shift != Slice) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
HDSROA.cpp159 class Slice { class
171 Slice() = default;
173 Slice(uint64_t BeginOffset, uint64_t EndOffset, Use *U, bool IsSplittable) in Slice() function in __anonec987c9f0111::Slice
194 bool operator<(const Slice &RHS) const { in operator <()
207 friend LLVM_ATTRIBUTE_UNUSED bool operator<(const Slice &LHS, in operator <()
212 const Slice &RHS) { in operator <()
216 bool operator==(const Slice &RHS) const { in operator ==()
220 bool operator!=(const Slice &RHS) const { return !operator==(RHS); } in operator !=()
245 using iterator = SmallVectorImpl<Slice>::iterator;
251 using const_iterator = SmallVectorImpl<Slice>::const_iterator;
[all …]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
HDLinePrinter.cpp203 BinaryStreamRef Slice(*S); in formatMsfStreamData() local
206 Substream.StreamData = Slice.drop_front(Offset).keep_front(Size); in formatMsfStreamData()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
HDValueTracking.cpp3638 ConstantDataArraySlice &Slice, in getConstantDataArrayInfo() argument
3661 return getConstantDataArrayInfo(GEP->getOperand(0), Slice, ElementSize, in getConstantDataArrayInfo()
3686 Slice.Array = nullptr; in getConstantDataArrayInfo()
3687 Slice.Offset = 0; in getConstantDataArrayInfo()
3688 Slice.Length = Length - Offset; in getConstantDataArrayInfo()
3705 Slice.Array = Array; in getConstantDataArrayInfo()
3706 Slice.Offset = Offset; in getConstantDataArrayInfo()
3707 Slice.Length = NumElts - Offset; in getConstantDataArrayInfo()
3716 ConstantDataArraySlice Slice; in getConstantStringInfo() local
3717 if (!getConstantDataArrayInfo(V, Slice, 8, Offset)) in getConstantStringInfo()
[all …]
/freebsd-11-stable/tools/tools/nanobsd/embedded/
HDcommon576 # Slice 1: FAT for ROM loading bootstrap
577 # Slice 2: Config partition
578 # Slice 3: FreeBSD partition (sized exactly)
579 # Slice 4: FreeBSD partition (empty)
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
HDValueTracking.h301 bool getConstantDataArrayInfo(const Value *V, ConstantDataArraySlice &Slice,
/freebsd-11-stable/sys/boot/fdt/dts/arm/
HDdreamplug-1001N.dts97 // Slice info reported by builtin linux when it boots...
/freebsd-11-stable/stand/pc98/boot0.5/
HDselector.s332 movw $1, mode # Slice mode
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
HDSimplifyLibCalls.cpp668 ConstantDataArraySlice Slice; in optimizeStringLength() local
669 if (getConstantDataArrayInfo(GEP->getOperand(0), Slice, CharSize)) { in optimizeStringLength()
671 if (Slice.Array == nullptr) { in optimizeStringLength()
675 for (uint64_t I = 0, E = Slice.Length; I < E; ++I) { in optimizeStringLength()
676 if (Slice.Array->getElementAsInteger(I + Slice.Offset) == 0) { in optimizeStringLength()
/freebsd-11-stable/contrib/mdocml/
HDlib.in49 LINE("libdisk", "Interface to Slice and Partition Labels Library (libdisk, \\-ldisk)")
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
HDSelectionDAG.cpp5760 const ConstantDataArraySlice &Slice) { in getMemsetStringVal() argument
5762 if (Slice.Array == nullptr) { in getMemsetStringVal()
5781 unsigned NumBytes = std::min(NumVTBytes, unsigned(Slice.Length)); in getMemsetStringVal()
5786 Val |= (uint64_t)(unsigned char)Slice[i] << i*8; in getMemsetStringVal()
5789 Val |= (uint64_t)(unsigned char)Slice[i] << (NumVTBytes-i-1)*8; in getMemsetStringVal()
5816 static bool isMemSrcFromConstant(SDValue Src, ConstantDataArraySlice &Slice) { in isMemSrcFromConstant() argument
5830 return getConstantDataArrayInfo(G->getGlobal(), Slice, 8, in isMemSrcFromConstant()
5897 ConstantDataArraySlice Slice; in getMemcpyLoadsAndStores() local
5898 bool CopyFromConstant = isMemSrcFromConstant(Src, Slice); in getMemcpyLoadsAndStores()
5899 bool isZeroConstant = CopyFromConstant && Slice.Array == nullptr; in getMemcpyLoadsAndStores()
[all …]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
HDSLPVectorizer.cpp5796 ArrayRef<Value *> Slice = makeArrayRef(Operands).slice(Cnt, Size); in vectorizeStores() local
5797 if (!VectorizedStores.count(Slice.front()) && in vectorizeStores()
5798 !VectorizedStores.count(Slice.back()) && in vectorizeStores()
5799 vectorizeStoreChain(Slice, R, Cnt)) { in vectorizeStores()
5801 VectorizedStores.insert(Slice.begin(), Slice.end()); in vectorizeStores()
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
HDSemaTemplateInstantiateDecl.cpp3086 Decl *Slice = instantiateUnresolvedUsingDecl(D, true); in instantiateUnresolvedUsingDecl() local
3087 if (!Slice) in instantiateUnresolvedUsingDecl()
3093 Expansions.push_back(cast<NamedDecl>(Slice)); in instantiateUnresolvedUsingDecl()
/freebsd-11-stable/usr.bin/fortune/datfiles/
HDfortunes20044 Slice him up before he slays you.