HomeSort by relevance Sort by last modified time
    Searched defs:Offsets (Results 1 - 10 of 10) sorted by null

  /external/llvm/lib/Target/PowerPC/
PPCFrameLowering.h 131 // With the SVR4 ABI, callee-saved registers have fixed offsets on the stack.
151 // Note that the offsets here overlap, but this is fixed up in
154 static const SpillSlot Offsets[] = {
155 // Floating-point register save area offsets.
175 // General register save area offsets.
220 // Floating-point register save area offsets.
240 // General register save area offsets.
283 NumEntries = array_lengthof(Offsets);
285 return Offsets;
  /external/skia/src/sfnt/
SkOTTable_loca.h 23 union Offsets {
26 } offsets; member in struct:SkOTTableIndexToLocation
  /external/llvm/lib/Object/
Archive.cpp 193 const char *Offsets = Buf + 4;
196 Offset = *(reinterpret_cast<const support::ubig32_t*>(Offsets)
203 // Skip offsets.
226 Offset = *(reinterpret_cast<const support::ulittle32_t*>(Offsets)
259 buf += 4 + (member_count * 4); // Skip offsets.
278 buf += 4 + (member_count * 4); // Skip offsets.
  /external/llvm/tools/lli/
lli.cpp 216 SmallVector<std::pair<const void*, uint64_t>, 16> Offsets;
228 Offsets.push_back(std::pair<const void*,uint64_t>(I->first.base(), CurOffset));
234 unsigned FirstDataIndex = Offsets.size();
245 Offsets.push_back(std::pair<const void*,uint64_t>(I->first.base(), CurOffset));
256 for (unsigned i = 0, e = Offsets.size(); i != e; ++i) {
257 uint64_t Addr = RemoteAddr + Offsets[i].second;
258 EE->mapSectionAddress(const_cast<void*>(Offsets[i].first), Addr);
260 DEBUG(dbgs() << " Mapping local: " << Offsets[i].first
269 for (unsigned i = 0, e = Offsets.size(); i != e; ++i) {
270 uint64_t Addr = RemoteAddr + Offsets[i].second
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGSDNodes.cpp 203 /// This function finds loads of the same base and different offsets. If the
204 /// offsets are not far apart (target specific), it add MVT::Glue inputs and
216 // the same base pointer and different offsets.
218 SmallVector<int64_t, 4> Offsets;
234 Offsets.push_back(Offset1);
236 Offsets.push_back(Offset2);
246 std::sort(Offsets.begin(), Offsets.end());
251 int64_t BaseOff = Offsets[0];
254 for (unsigned i = 1, e = Offsets.size(); i != e; ++i)
    [all...]
SelectionDAGBuilder.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
SROA.cpp 86 /// This provides an ordering over ranges such that start offsets are
87 /// always increasing, and within equal start offsets, the end offsets are
289 /// The destination begin and end offsets when the destination is within
294 /// The source begin and end offsets when the source is within this alloca.
584 MemTransferOffsets &Offsets = P.MemTransferInstData[&II];
587 Offsets.IsSplittable = Length;
590 Offsets.DestBegin = RawOffset;
591 Offsets.DestEnd = RawOffset + Size;
594 Offsets.SourceBegin = RawOffset
    [all...]
LoopStrengthReduce.cpp 817 const SmallVectorImpl<int64_t> &Offsets,
907 const SmallVectorImpl<int64_t> &Offsets,
    [all...]
  /external/clang/lib/AST/
VTableBuilder.cpp 103 /// as a record decl and a subobject number) and its offsets in the most
110 /// ComputeBaseOffsets - Compute the offsets for all base subobjects of the
159 // Compute base offsets.
249 // even change the base offsets in ASTRecordLayout to be specified in
439 /// VCallOffsetMap - Keeps track of vcall offsets when building a vtable.
444 /// Offsets - Keeps track of methods and their offsets.
446 SmallVector<MethodAndOffsetPairTy, 16> Offsets;
464 bool empty() const { return Offsets.empty(); }
513 for (unsigned I = 0, E = Offsets.size(); I != E; ++I)
    [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp     [all...]

Completed in 128 milliseconds