| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/ |
| HD | CRC.cpp | 92 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/ |
| HD | Minidump.h | 206 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/ |
| HD | LEB128.h | 144 uint64_t Slice = *p & 0x7f; variable 145 if (Shift >= 64 || Slice << Shift >> Shift != Slice) {
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| HD | SROA.cpp | 159 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/ |
| HD | LinePrinter.cpp | 203 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/ |
| HD | ValueTracking.cpp | 3638 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/ |
| HD | common | 576 # 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/ |
| HD | ValueTracking.h | 301 bool getConstantDataArrayInfo(const Value *V, ConstantDataArraySlice &Slice,
|
| /freebsd-11-stable/sys/boot/fdt/dts/arm/ |
| HD | dreamplug-1001N.dts | 97 // Slice info reported by builtin linux when it boots...
|
| /freebsd-11-stable/stand/pc98/boot0.5/ |
| HD | selector.s | 332 movw $1, mode # Slice mode
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| HD | SimplifyLibCalls.cpp | 668 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/ |
| HD | lib.in | 49 LINE("libdisk", "Interface to Slice and Partition Labels Library (libdisk, \\-ldisk)")
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| HD | SelectionDAG.cpp | 5760 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/ |
| HD | SLPVectorizer.cpp | 5796 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/ |
| HD | SemaTemplateInstantiateDecl.cpp | 3086 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/ |
| HD | fortunes | 20044 Slice him up before he slays you.
|