HomeSort by: relevance | last modified time | path
    Searched defs:Slice (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
MachOUniversalWriter.h 9 // Declares the Slice class and writeUniversalBinary function for writing a
27 class Slice {
33 // P2Alignment field stores slice alignment values from universal
38 Slice(const IRObjectFile &IRO, uint32_t CPUType, uint32_t CPUSubType,
42 explicit Slice(const MachOObjectFile &O);
44 Slice(const MachOObjectFile &O, uint32_t Align);
49 Slice(const Archive &A, uint32_t CPUType, uint32_t CPUSubType,
52 static Expected<Slice> create(const Archive &A,
55 static Expected<Slice> create(const IRObjectFile &IRO, uint32_t Align);
79 friend bool operator<(const Slice &Lhs, const Slice &Rhs)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Object/
MachOUniversalWriter.cpp 9 // Defines the Slice class and writeUniversalBinary function for writing a MachO
78 Slice::Slice(const Archive &A, uint32_t CPUType, uint32_t CPUSubType,
83 Slice::Slice(const MachOObjectFile &O, uint32_t Align)
89 Slice::Slice(const IRObjectFile &IRO, uint32_t CPUType, uint32_t CPUSubType,
94 Slice::Slice(const MachOObjectFile &O) : Slice(O, calculateAlignment(O)) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
SROA.cpp 142 /// A used slice of an alloca.
144 /// This structure represents a slice of an alloca used by some instruction. It
148 class Slice {
155 /// Storage for both the use of this slice and whether it can be
160 Slice() = default;
162 Slice(uint64_t BeginOffset, uint64_t EndOffset, Use *U, bool IsSplittable)
183 bool operator<(const Slice &RHS) const {
196 friend LLVM_ATTRIBUTE_UNUSED bool operator<(const Slice &LHS,
201 const Slice &RHS) {
205 bool operator==(const Slice &RHS) const
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ValueTracking.cpp 3930 return InsertValueInst::Create(To, V, makeArrayRef(Idxs).slice(IdxSkip),
3979 return FindInsertedValue(C, idx_range.slice(1), InsertBefore);
4070 ConstantDataArraySlice &Slice,
4093 return getConstantDataArrayInfo(GEP->getOperand(0), Slice, ElementSize,
4118 Slice.Array = nullptr;
4119 Slice.Offset = 0;
4120 Slice.Length = Length - Offset;
4137 Slice.Array = Array;
4138 Slice.Offset = Offset;
4139 Slice.Length = NumElts - Offset
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaTemplateInstantiateDecl.cpp 3149 Decl *Slice = instantiateUnresolvedUsingDecl(D, true);
3150 if (!Slice)
3156 Expansions.push_back(cast<NamedDecl>(Slice));
3181 // slice of a pack expansion.

Completed in 34 milliseconds