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

  /external/llvm/tools/lli/
lli.cpp 393 SmallVector<std::pair<const void*, uint64_t>, 16> Offsets;
405 Offsets.push_back(std::pair<const void*,uint64_t>(I->first.base(), CurOffset));
411 unsigned FirstDataIndex = Offsets.size();
422 Offsets.push_back(std::pair<const void*,uint64_t>(I->first.base(), CurOffset));
433 for (unsigned i = 0, e = Offsets.size(); i != e; ++i) {
434 uint64_t Addr = RemoteAddr + Offsets[i].second;
435 EE->mapSectionAddress(const_cast<void*>(Offsets[i].first), Addr);
437 DEBUG(dbgs() << " Mapping local: " << Offsets[i].first
442 for (unsigned i = 0, e = Offsets.size(); i != e; ++i) {
443 uint64_t Addr = RemoteAddr + Offsets[i].second
    [all...]
  /external/llvm/lib/Support/
IntervalMap.cpp 19 void Path::replaceRoot(void *Root, unsigned Size, IdxPair Offsets) {
21 path.front() = Entry(Root, Size, Offsets.first);
22 path.insert(path.begin() + 1, Entry(subtree(0), Offsets.second));
  /external/llvm/include/llvm/CodeGen/
Analysis.h 52 /// If Offsets is non-null, it points to a vector to be filled in
53 /// with the in-memory offsets of each of the individual values.
57 SmallVectorImpl<uint64_t> *Offsets = 0,
  /external/llvm/lib/Target/PowerPC/
PPCFrameLowering.h 112 // With the SVR4 ABI, callee-saved registers have fixed offsets on the stack.
132 static const SpillSlot Offsets[] = {
133 // Floating-point register save area offsets.
153 // General register save area offsets.
210 // Floating-point register save area offsets.
230 // General register save area offsets.
312 NumEntries = array_lengthof(Offsets);
314 return Offsets;
  /external/llvm/lib/CodeGen/
Analysis.cpp 73 /// If Offsets is non-null, it points to a vector to be filled in
74 /// with the in-memory offsets of each of the individual values.
78 SmallVectorImpl<uint64_t> *Offsets,
87 ComputeValueVTs(TLI, *EI, ValueVTs, Offsets,
96 ComputeValueVTs(TLI, EltTy, ValueVTs, Offsets,
105 if (Offsets)
106 Offsets->push_back(StartingOffset);
  /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/clang/lib/AST/
VTableBuilder.cpp 102 /// as a record decl and a subobject number) and its offsets in the most
109 /// ComputeBaseOffsets - Compute the offsets for all base subobjects of the
158 // Compute base offsets.
248 // even change the base offsets in ASTRecordLayout to be specified in
440 /// VCallOffsetMap - Keeps track of vcall offsets when building a vtable.
445 /// Offsets - Keeps track of methods and their offsets.
447 SmallVector<MethodAndOffsetPairTy, 16> Offsets;
465 bool empty() const { return Offsets.empty(); }
514 for (unsigned I = 0, E = Offsets.size(); I != E; ++I)
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp 806 const SmallVectorImpl<int64_t> &Offsets,
896 const SmallVectorImpl<int64_t> &Offsets,
    [all...]
  /external/chromium/chrome/browser/resources/file_manager/js/
exif_reader.js 75 // Offsets inside the EXIF block are based after this bit of
  /external/webkit/Source/WebKit/chromium/tests/
KURLTest.cpp 561 TEST(KURLTest, Offsets)
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp     [all...]
ASTReader.cpp 727 const std::pair<uint64_t, uint64_t> &Offsets,
731 if (Offsets.first != 0) {
732 Cursor.JumpToBit(Offsets.first);
749 if (Offsets.second != 0) {
750 Cursor.JumpToBit(Offsets.second);
    [all...]
  /external/clang/include/clang/Serialization/
ASTReader.h 251 /// \brief A map of global bit offsets to the module that stores entities
252 /// at those bit offsets.
261 /// SourceLocation offsets to the modules containing them.
348 const std::pair<uint64_t, uint64_t> &Offsets,
    [all...]
  /external/zlib/src/contrib/masmx64/
gvmat64.asm 114 ; all the +4 offsets are due to the addition of pending_buf_size (in zlib
125 ;;; Offsets for fields in the deflate_state structure. These numbers
132 ; all the +zlib1222add offsets are due to the addition of fields
  /external/zlib/src/contrib/masmx86/
match686.asm 74 ; all the +zlib1222add offsets are due to the addition of fields
118 ;;; stack frame offsets
140 ;;; Offsets for fields in the deflate_state structure. These numbers
  /external/llvm/include/llvm/ADT/
IntervalMap.h 843 /// @param Offsets Offsets into the root and first branch nodes.
844 void replaceRoot(void *Root, unsigned Size, IdxPair Offsets);
    [all...]
  /external/qemu-pc-bios/bochs/bios/
rombios.c 55 // $fef3 ; Initial Interrupt Vector Offsets Loaded by POST
100 // - needs to be reworked. Uses direct [bp] offsets. (?)
    [all...]

Completed in 392 milliseconds