| /freebsd-10-stable/contrib/llvm/tools/lli/ |
| D | RemoteMemoryManager.cpp | 93 SmallVector<std::pair<Allocation, uint64_t>, 16> Offsets; in notifyObjectLoaded() local 108 Offsets.push_back(std::pair<Allocation,uint64_t>(Section, CurOffset)); in notifyObjectLoaded() 125 Offsets.push_back(std::pair<Allocation,uint64_t>(Section, CurOffset)); in notifyObjectLoaded() 137 for (unsigned i = 0, e = Offsets.size(); i != e; ++i) { in notifyObjectLoaded() 138 uint64_t Addr = RemoteAddr + Offsets[i].second; in notifyObjectLoaded() 139 EE->mapSectionAddress(const_cast<void*>(Offsets[i].first.MB.base()), Addr); in notifyObjectLoaded() 141 DEBUG(dbgs() << " Mapping local: " << Offsets[i].first.MB.base() in notifyObjectLoaded() 144 MappedSections[Addr] = Offsets[i].first; in notifyObjectLoaded()
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/ |
| D | MicrosoftVBTables.cpp | 198 SmallVector<llvm::Constant *, 4> Offsets(1 + ReusingBase->getNumVBases(), 0); in EmitVBTableDefinition() local 202 Offsets[0] = llvm::ConstantInt::get(CGM.IntTy, -VBPtrOffset.getQuantity()); in EmitVBTableDefinition() 213 assert(Offsets[VBIndex] == 0 && "The same vbindex seen twice?"); in EmitVBTableDefinition() 214 Offsets[VBIndex] = llvm::ConstantInt::get(CGM.IntTy, Offset.getQuantity()); in EmitVBTableDefinition() 217 assert(Offsets.size() == in EmitVBTableDefinition() 221 llvm::ArrayType::get(CGM.IntTy, Offsets.size()); in EmitVBTableDefinition() 222 llvm::Constant *Init = llvm::ConstantArray::get(VBTableType, Offsets); in EmitVBTableDefinition()
|
| /freebsd-10-stable/contrib/llvm/lib/Target/R600/MCTargetDesc/ |
| D | R600MCCodeEmitter.cpp | 117 int64_t Offsets[3] = { in EncodeInstruction() local 126 SrcSelect[ELEMENT_W] << 29 | Offsets[0] << 0 | Offsets[1] << 5 | in EncodeInstruction() 127 Offsets[2] << 10; in EncodeInstruction()
|
| /freebsd-10-stable/contrib/llvm/lib/Support/ |
| D | IntervalMap.cpp | 19 void Path::replaceRoot(void *Root, unsigned Size, IdxPair Offsets) { in replaceRoot() argument 21 path.front() = Entry(Root, Size, Offsets.first); in replaceRoot() 22 path.insert(path.begin() + 1, Entry(subtree(0), Offsets.second)); in replaceRoot()
|
| /freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/ |
| D | PPCFrameLowering.h | 165 static const SpillSlot Offsets[] = { in getCalleeSavedSpillSlots() local 294 NumEntries = array_lengthof(Offsets); in getCalleeSavedSpillSlots() 296 return Offsets; in getCalleeSavedSpillSlots()
|
| /freebsd-10-stable/contrib/llvm/lib/CodeGen/SelectionDAG/ |
| D | ScheduleDAGSDNodes.cpp | 218 SmallVector<int64_t, 4> Offsets; in ClusterNeighboringLoads() local 237 Offsets.push_back(Offset1); in ClusterNeighboringLoads() 239 Offsets.push_back(Offset2); in ClusterNeighboringLoads() 251 std::sort(Offsets.begin(), Offsets.end()); in ClusterNeighboringLoads() 256 int64_t BaseOff = Offsets[0]; in ClusterNeighboringLoads() 259 for (unsigned i = 1, e = Offsets.size(); i != e; ++i) { in ClusterNeighboringLoads() 260 int64_t Offset = Offsets[i]; in ClusterNeighboringLoads()
|
| D | SelectionDAGBuilder.cpp | 1221 SmallVector<uint64_t, 4> Offsets; in visitRet() local 1222 ComputeValueVTs(*TLI, I.getOperand(0)->getType(), ValueVTs, &Offsets); in visitRet() 1229 DAG.getIntPtrConstant(Offsets[i])); in visitRet() 3401 SmallVector<uint64_t, 4> Offsets; in visitLoad() local 3402 ComputeValueVTs(*TM.getTargetLowering(), Ty, ValueVTs, &Offsets); in visitLoad() 3443 DAG.getConstant(Offsets[i], PtrVT)); in visitLoad() 3445 A, MachinePointerInfo(SV, Offsets[i]), isVolatile, in visitLoad() 3475 SmallVector<uint64_t, 4> Offsets; in visitStore() local 3476 ComputeValueVTs(*TM.getTargetLowering(), SrcV->getType(), ValueVTs, &Offsets); in visitStore() 3506 DAG.getConstant(Offsets[i], PtrVT)); in visitStore() [all …]
|
| /freebsd-10-stable/contrib/llvm/lib/CodeGen/ |
| D | Analysis.cpp | 76 SmallVectorImpl<uint64_t> *Offsets, in ComputeValueVTs() argument 85 ComputeValueVTs(TLI, *EI, ValueVTs, Offsets, in ComputeValueVTs() 94 ComputeValueVTs(TLI, EltTy, ValueVTs, Offsets, in ComputeValueVTs() 103 if (Offsets) in ComputeValueVTs() 104 Offsets->push_back(StartingOffset); in ComputeValueVTs()
|
| /freebsd-10-stable/contrib/llvm/lib/Object/ |
| D | Archive.cpp | 335 const char *Offsets = Buf + 4; in getMember() local 338 Offset = *(reinterpret_cast<const support::ubig32_t*>(Offsets) in getMember() 368 Offset = *(reinterpret_cast<const support::ulittle32_t*>(Offsets) in getMember()
|
| /freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/ |
| D | Analysis.h | 58 SmallVectorImpl<uint64_t> *Offsets = 0,
|
| /freebsd-10-stable/contrib/llvm/lib/Transforms/Scalar/ |
| D | LoopStrengthReduce.cpp | 829 const SmallVectorImpl<int64_t> &Offsets, 921 const SmallVectorImpl<int64_t> &Offsets, in RateFormula() argument 958 for (SmallVectorImpl<int64_t>::const_iterator I = Offsets.begin(), in RateFormula() 959 E = Offsets.end(); I != E; ++I) { in RateFormula() 1164 SmallVector<int64_t, 8> Offsets; member in __anon3e99defc0711::LSRUse 1295 for (SmallVectorImpl<int64_t>::const_iterator I = Offsets.begin(), in print() 1296 E = Offsets.end(); I != E; ++I) { in print() 2210 if (NewOffset != LU.Offsets.back()) in reconcileNewOffset() 2211 LU.Offsets.push_back(NewOffset); in reconcileNewOffset() 2250 if (LU.Offsets.empty() || Offset != LU.Offsets.back()) in getUse() [all …]
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/ |
| D | VTableBuilder.cpp | 440 SmallVector<MethodAndOffsetPairTy, 16> Offsets; member 458 bool empty() const { return Offsets.empty(); } in empty() 507 for (unsigned I = 0, E = Offsets.size(); I != E; ++I) { in AddVCallOffset() 508 if (MethodsCanShareVCallOffset(Offsets[I].first, MD)) in AddVCallOffset() 513 Offsets.push_back(MethodAndOffsetPairTy(MD, OffsetOffset)); in AddVCallOffset() 519 for (unsigned I = 0, E = Offsets.size(); I != E; ++I) { in getVCallOffsetOffset() 520 if (MethodsCanShareVCallOffset(Offsets[I].first, MD)) in getVCallOffsetOffset() 521 return Offsets[I].second; in getVCallOffsetOffset()
|
| /freebsd-10-stable/contrib/ntp/libparse/ |
| D | README | 48 that delivers time stamps and stati. Offsets and sychron-
|
| /freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/ |
| D | NVPTXISelLowering.cpp | 78 SmallVectorImpl<uint64_t> *Offsets = 0, in ComputePTXValueVTs() argument 90 if (Offsets) in ComputePTXValueVTs() 91 Offsets->push_back(Off+j*VT.getVectorElementType().getStoreSize()); in ComputePTXValueVTs() 95 if (Offsets) in ComputePTXValueVTs() 96 Offsets->push_back(Off); in ComputePTXValueVTs()
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/Serialization/ |
| D | ASTReaderDecl.cpp | 2590 std::pair<uint64_t, uint64_t> Offsets = Reader.VisitDeclContext(DC); in ReadDeclRecord() local 2591 if (Offsets.first || Offsets.second) { in ReadDeclRecord() 2592 if (Offsets.first != 0) in ReadDeclRecord() 2594 if (Offsets.second != 0) in ReadDeclRecord() 2596 if (ReadDeclContextStorage(*Loc.F, DeclsCursor, Offsets, in ReadDeclRecord()
|
| D | ASTReader.cpp | 720 const std::pair<uint64_t, uint64_t> &Offsets, in ReadDeclContextStorage() argument 724 if (Offsets.first != 0) { in ReadDeclContextStorage() 725 Cursor.JumpToBit(Offsets.first); in ReadDeclContextStorage() 741 if (Offsets.second != 0) { in ReadDeclContextStorage() 742 Cursor.JumpToBit(Offsets.second); in ReadDeclContextStorage()
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/Parse/ |
| D | ParseStmt.cpp | 1757 ArrayRef<unsigned> Offsets) in ClangAsmParserCallback() argument 1759 AsmToks(Toks), AsmTokOffsets(Offsets) { in ClangAsmParserCallback()
|
| /freebsd-10-stable/sys/dev/aic7xxx/ |
| D | aic7xxx.reg | 1254 /* ---------------------- Scratch RAM Offsets ------------------------- */ 1588 /* Offsets into the SCBID array where different data is stored */
|
| D | aic79xx.reg | 3446 /* ---------------------- Scratch RAM Offsets ------------------------- */
|
| /freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Serialization/ |
| D | ASTReader.h | 425 const std::pair<uint64_t, uint64_t> &Offsets,
|
| /freebsd-10-stable/gnu/lib/libregex/doc/ |
| D | xregex.texi | 201 * Using Byte Offsets:: The regmatch_t type. 2263 * Using Byte Offsets:: The regmatch_t type. 2447 @xref{Using Byte Offsets}, for an explanation of @var{pmatch}. If you 2472 @node Reporting Errors, Using Byte Offsets, POSIX Matching, POSIX Regex Functions 2507 @node Using Byte Offsets, Freeing POSIX Pattern Buffers, Reporting Errors, POSIX Regex Functions 2508 @subsection Using Byte Offsets 2533 @node Freeing POSIX Pattern Buffers, , Using Byte Offsets, POSIX Regex Functions
|
| /freebsd-10-stable/contrib/llvm/include/llvm/ADT/ |
| D | IntervalMap.h | 864 void replaceRoot(void *Root, unsigned Size, IdxPair Offsets);
|
| /freebsd-10-stable/contrib/gdb/gdb/doc/ |
| D | agentexpr.texi | 778 Offsets are currently sixteen bits. I'm not happy with this situation
|
| D | gdb.info-3 | 2367 `q'`Offsets' -- query sect offs 4353 Offsets are currently sixteen bits. I'm not happy with this
|
| /freebsd-10-stable/contrib/llvm/include/llvm/Target/ |
| D | Target.td | 62 // Offset is set to the sum of A and B's Offsets. Size is set to B's Size.
|