| /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/GSYM/ |
| StringTable.h | 21 /// string at offset zero. Strings must be UTF8 NULL terminated strings. 26 StringRef operator[](size_t Offset) const { return getString(Offset); } 27 StringRef getString(uint32_t Offset) const { 28 if (Offset < Data.size()) { 29 auto End = Data.find('\0', Offset); 30 return Data.substr(Offset, End - Offset); 39 uint32_t Offset = 0; 41 while (Offset < Size) [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/Index/ |
| DeclOccurrence.h | 25 unsigned Offset; 30 DeclOccurrence(SymbolRoleSet R, unsigned Offset, const Decl *D, 32 : Roles(R), Offset(Offset), DeclOrMacro(D), 34 DeclOccurrence(SymbolRoleSet R, unsigned Offset, const IdentifierInfo *Name, 36 : Roles(R), Offset(Offset), DeclOrMacro(MI), MacroName(Name) {} 39 return LHS.Offset < RHS.Offset;
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/ |
| ARMWinEHPrinter.cpp | 95 uint64_t Offset = 0) { 102 if (Offset) 103 OS << format("+0x%" PRIX64 " (0x%" PRIX64 ")", Offset, Address); 232 uint64_t Offset) { 235 if (RelocationOffset == Offset) 267 // Try to locate a relocation that points at the offset in the section 271 // We found a relocation symbol; the immediate offset needs to be added 284 // the caller to print it as an offset on the symbol name. 288 // find a descriptive symbol if possible. The immediate offset contains 289 // the image relative address, and we shouldn't add any offset to th [all...] |
| ARMWinEHPrinter.h | 38 bool opcode_0xxxxxxx(const uint8_t *Opcodes, unsigned &Offset, 40 bool opcode_10Lxxxxx(const uint8_t *Opcodes, unsigned &Offset, 42 bool opcode_1100xxxx(const uint8_t *Opcodes, unsigned &Offset, 44 bool opcode_11010Lxx(const uint8_t *Opcodes, unsigned &Offset, 46 bool opcode_11011Lxx(const uint8_t *Opcodes, unsigned &Offset, 48 bool opcode_11100xxx(const uint8_t *Opcodes, unsigned &Offset, 50 bool opcode_111010xx(const uint8_t *Opcodes, unsigned &Offset, 52 bool opcode_1110110L(const uint8_t *Opcodes, unsigned &Offset, 54 bool opcode_11101110(const uint8_t *Opcodes, unsigned &Offset, 56 bool opcode_11101111(const uint8_t *Opcodes, unsigned &Offset, [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| AMDGPUGlobalISelUtils.cpp | 23 unsigned Offset; 26 Offset = Op.getImm(); 28 Offset = Op.getCImm()->getZExtValue(); 30 return std::make_pair(Register(), Offset); 33 int64_t Offset; 36 if (mi_match(Def->getOperand(2).getReg(), MRI, m_ICst(Offset))) 37 return std::make_pair(Def->getOperand(1).getReg(), Offset); 40 if (mi_match(Def->getOperand(2).getReg(), MRI, m_Copy(m_ICst(Offset)))) 41 return std::make_pair(Def->getOperand(1).getReg(), Offset); 48 m_GPtrAdd(m_MInstr(Base), m_ICst(Offset)))) { [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/ |
| PPCInstrBuilder.h | 28 /// reference has base register as the FrameIndex offset until it is resolved. 29 /// This allows a constant offset to be specified as well... 32 addFrameReference(const MachineInstrBuilder &MIB, int FI, int Offset = 0, 35 return MIB.addImm(Offset).addFrameIndex(FI); 37 return MIB.addFrameIndex(FI).addImm(Offset);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/VE/ |
| VEInstrBuilder.h | 28 /// reference has base register as the FrameIndex offset until it is resolved. 29 /// This allows a constant offset to be specified as well... 32 addFrameReference(const MachineInstrBuilder &MIB, int FI, int Offset = 0, 35 return MIB.addFrameIndex(FI).addImm(0).addImm(Offset); 36 return MIB.addFrameIndex(FI).addImm(Offset);
|
| /src/sys/external/bsd/acpica/dist/common/ |
| dmtbdump3.c | 95 UINT32 Offset; 113 Offset = ACPI_OFFSET (ACPI_TABLE_SLIT, Entry[0]); 120 AcpiDmLineHeader2 (Offset, Localities, "Locality", i); 125 if (Offset >= Table->Length) 133 Offset++; 144 AcpiDmLineHeader (Offset, 0, NULL); 174 UINT32 Offset = sizeof (ACPI_TABLE_SRAT); 189 Subtable = ACPI_ADD_PTR (ACPI_SUBTABLE_HEADER, Table, Offset); 190 while (Offset < Table->Length) 195 Status = AcpiDmDumpTable (Table->Length, Offset, Subtable [all...] |
| dmtbdump1.c | 83 UINT32 Offset = sizeof (ACPI_TABLE_HEADER); 97 while (Offset < Table->Length) 99 NodeHeader = ACPI_ADD_PTR (ACPI_AEST_HEADER, Table, Offset); 103 Status = AcpiDmDumpTable (Table->Length, Offset, NodeHeader, 175 Offset += sizeof (ACPI_AEST_HEADER); 176 Subtable = ACPI_ADD_PTR (ACPI_AEST_HEADER, Table, Offset); 181 Status = AcpiDmDumpTable (Table->Length, Offset, Subtable, Length, 199 Offset += Length; 229 Offset); 233 Status = AcpiDmDumpTable (Table->Length, Offset, ProcessorSubtable [all...] |
| /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/ |
| ubsan_type_hash.h | 26 sptr Offset; 30 DynamicTypeInfo(const char *MDTN, sptr Offset, const char *STN) 31 : MostDerivedTypeName(MDTN), Offset(Offset), SubobjectTypeName(STN) {} 37 /// Get the offset from the most-derived type to this base class. 38 sptr getOffset() const { return Offset; } 39 /// Get the name of the most-derived type at the specified offset. 50 /// at offset 0.
|
| /src/external/gpl3/gcc/dist/libsanitizer/ubsan/ |
| ubsan_type_hash.h | 25 sptr Offset; 29 DynamicTypeInfo(const char *MDTN, sptr Offset, const char *STN) 30 : MostDerivedTypeName(MDTN), Offset(Offset), SubobjectTypeName(STN) {} 36 /// Get the offset from the most-derived type to this base class. 37 sptr getOffset() const { return Offset; } 38 /// Get the name of the most-derived type at the specified offset. 49 /// at offset 0.
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/ubsan/ |
| ubsan_type_hash.h | 25 sptr Offset; 29 DynamicTypeInfo(const char *MDTN, sptr Offset, const char *STN) 30 : MostDerivedTypeName(MDTN), Offset(Offset), SubobjectTypeName(STN) {} 36 /// Get the offset from the most-derived type to this base class. 37 sptr getOffset() const { return Offset; } 38 /// Get the name of the most-derived type at the specified offset. 49 /// at offset 0.
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
| StatepointLowering.h | 92 void reserveStackSlot(int Offset) { 93 assert(Offset >= 0 && Offset < (int)AllocatedStackSlots.size() && 95 assert(!AllocatedStackSlots.test(Offset) && "already reserved!"); 96 assert(NextSlotToAllocate <= (unsigned)Offset && "consistency!"); 97 AllocatedStackSlots.set(Offset); 100 bool isStackSlotAllocated(int Offset) { 101 assert(Offset >= 0 && Offset < (int)AllocatedStackSlots.size() && 103 return AllocatedStackSlots.test(Offset); [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/MCTargetDesc/ |
| AArch64TargetStreamer.h | 46 virtual void EmitARM64WinCFISaveR19R20X(int Offset) {} 47 virtual void EmitARM64WinCFISaveFPLR(int Offset) {} 48 virtual void EmitARM64WinCFISaveFPLRX(int Offset) {} 49 virtual void EmitARM64WinCFISaveReg(unsigned Reg, int Offset) {} 50 virtual void EmitARM64WinCFISaveRegX(unsigned Reg, int Offset) {} 51 virtual void EmitARM64WinCFISaveRegP(unsigned Reg, int Offset) {} 52 virtual void EmitARM64WinCFISaveRegPX(unsigned Reg, int Offset) {} 53 virtual void EmitARM64WinCFISaveLRPair(unsigned Reg, int Offset) {} 54 virtual void EmitARM64WinCFISaveFReg(unsigned Reg, int Offset) {} 55 virtual void EmitARM64WinCFISaveFRegX(unsigned Reg, int Offset) {} [all...] |
| AArch64WinCOFFStreamer.cpp | 66 // 2) take an offset: SEH_StackAlloc, SEH_SaveFPLR, SEH_SaveFPLR_X 67 // 3) take a register and an offset/size: all others 70 int Offset) { 76 auto Inst = WinEH::Instruction(UnwindCode, Label, Reg, Offset); 92 void AArch64TargetWinCOFFStreamer::EmitARM64WinCFISaveR19R20X(int Offset) { 93 EmitARM64WinUnwindCode(Win64EH::UOP_SaveR19R20X, -1, Offset); 96 void AArch64TargetWinCOFFStreamer::EmitARM64WinCFISaveFPLR(int Offset) { 97 EmitARM64WinUnwindCode(Win64EH::UOP_SaveFPLR, -1, Offset); 100 void AArch64TargetWinCOFFStreamer::EmitARM64WinCFISaveFPLRX(int Offset) { 101 EmitARM64WinUnwindCode(Win64EH::UOP_SaveFPLRX, -1, Offset); [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/GSYM/ |
| InlineInfo.cpp | 63 /// Skip an InlineInfo object in the specified data at the specified offset. 72 /// \param Offset The byte offset within \a Data. 76 static bool skip(DataExtractor &Data, uint64_t &Offset, bool SkippedRanges) { 78 if (AddressRanges::skip(Data, Offset) == 0) 81 bool HasChildren = Data.getU8(&Offset) != 0; 82 Data.getU32(&Offset); // Skip Inline.Name. 83 Data.getULEB128(&Offset); // Skip Inline.CallFile. 84 Data.getULEB128(&Offset); // Skip Inline.CallLine. 86 while (skip(Data, Offset, false /* SkippedRanges */) [all...] |
| /src/external/apache2/llvm/dist/clang/lib/AST/Interp/ |
| InterpFrame.h | 62 /// Returns the offset on the stack at which the frame starts. 66 template <typename T> const T &getLocal(unsigned Offset) { 67 return localRef<T>(Offset); 71 template <typename T> void setLocal(unsigned Offset, const T &Value) { 72 localRef<T>(Offset) = Value; 76 Pointer getLocalPointer(unsigned Offset); 79 template <typename T> const T &getParam(unsigned Offset) { 80 auto Pt = Params.find(Offset); 82 return stackRef<T>(Offset); 89 template <typename T> void setParam(unsigned Offset, const T &Value) [all...] |
| Pointer.h | 71 unsigned Field = Offset + Off; 83 return Pointer(Pointee, 0, Offset == 0 ? Offset : PastEndMark); 85 // Pointer is one past end - magic offset marks that. 90 // descriptors. If Offset != Base, then the pointer already points to 94 if (Offset != Base) 96 return Pointer(Pointee, Base, Offset + sizeof(InitMap *)); 100 if (Offset != Base) 101 return Pointer(Pointee, Offset, Offset); [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| BinaryStreamRef.cpp | 24 Error readBytes(uint32_t Offset, uint32_t Size, 26 return BBS.readBytes(Offset, Size, Buffer); 28 Error readLongestContiguousChunk(uint32_t Offset, 30 return BBS.readLongestContiguousChunk(Offset, Buffer); 47 Error readBytes(uint32_t Offset, uint32_t Size, 49 return BBS.readBytes(Offset, Size, Buffer); 51 Error readLongestContiguousChunk(uint32_t Offset, 53 return BBS.readLongestContiguousChunk(Offset, Buffer); 57 Error writeBytes(uint32_t Offset, ArrayRef<uint8_t> Data) override { 58 return BBS.writeBytes(Offset, Data) [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Rewrite/ |
| RewriteRope.cpp | 42 /// the RopePiece corresponding to some offset very efficiently, and it 76 /// when looking for an offset in the BTree. 103 /// split - Split the range containing the specified offset so that we are 105 /// offset. The offset is relative, so "0" is the start of the node. 109 RopePieceBTreeNode *split(unsigned Offset); 112 /// specified offset. The offset is relative, so "0" is the start of the 117 RopePieceBTreeNode *insert(unsigned Offset, const RopePiece &R); 119 /// erase - Remove NumBytes from this node at the specified offset. We ar [all...] |
| /src/sys/external/bsd/acpica/dist/os_specific/service_layers/ |
| osunixmap.c | 112 ACPI_PHYSICAL_ADDRESS Offset; 124 /* Align the offset to use mmap */ 127 Offset = Where % PageSize; 131 MappedMemory = mmap (NULL, (Length + Offset), PROT_READ, MMAP_FLAGS, 132 fd, (Where - Offset)); 141 return (ACPI_CAST8 (MappedMemory + Offset)); 164 ACPI_PHYSICAL_ADDRESS Offset; 169 Offset = ACPI_TO_INTEGER (Where) % PageSize; 170 munmap ((UINT8 *) Where - Offset, (Length + Offset)); [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| BinaryStream.h | 24 BSF_Append = 2, // Writing can occur at offset == length. 41 /// Given an offset into the stream and a number of bytes, attempt to 44 virtual Error readBytes(uint32_t Offset, uint32_t Size, 47 /// Given an offset into the stream, read as much as possible without 49 virtual Error readLongestContiguousChunk(uint32_t Offset, 59 Error checkOffsetForRead(uint32_t Offset, uint32_t DataSize) { 60 if (Offset > getLength()) 62 if (getLength() < DataSize + Offset) 78 /// offset. This will always necessitate a copy. Cannot shrink or grow the 80 virtual Error writeBytes(uint32_t Offset, ArrayRef<uint8_t> Data) = 0 [all...] |
| OptimizedStructLayout.h | 46 /// A special value for Offset indicating that the field can be moved 52 : Offset(FixedOffset), Size(Size), Id(Id), Alignment(Alignment) { 56 /// The offset of this field in the final layout. If this is 58 /// the assigned offset of the field. 59 uint64_t Offset; 75 /// Return true if this field has been assigned a fixed offset. 78 return (Offset != FlexibleOffset); 81 /// Given that this field has a fixed offset, return the offset 85 return Offset + Size [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/ |
| DWARFAttribute.h | 25 /// The debug info/types offset for this attribute. 26 uint64_t Offset = 0; 35 return Offset != 0 && Attr != dwarf::Attribute(0);
|
| /src/external/apache2/llvm/dist/clang/include/clang/Lex/ |
| DependencyDirectivesSourceMinimizer.h | 63 /// Offset into the output byte stream of where the directive begins. 64 int Offset = -1; 66 Token(TokenKind K, int Offset) : K(K), Offset(Offset) {} 72 /// Offset into the output byte stream of where the skipped directive begins. 73 int Offset; 100 /// with the offset that corresponds to the minimizer's current buffer offset.
|