HomeSort by: relevance | last modified time | path
    Searched defs:Offset (Results 1 - 25 of 615) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /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/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/clang/lib/AST/Interp/
Function.cpp 28 Function::ParamDescriptor Function::getParamDescriptor(unsigned Offset) const {
29 auto It = Params.find(Offset);
30 assert(It != Params.end() && "Invalid parameter offset");
35 unsigned Offset = PC - getCodeBegin();
37 auto It = std::lower_bound(SrcMap.begin(), SrcMap.end(), Elem{Offset, {}},
39 if (It == SrcMap.end() || It->first != Offset)
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
TypeMetadataUtils.h 38 /// The offset from the address point to the virtual function.
39 uint64_t Offset;
59 Constant *getPointerAtOffset(Constant *I, uint64_t Offset, Module &M);
LoopUnrollAnalyzer.h 44 ConstantInt *Offset = nullptr;
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
TypeIndexDiscovery.h 22 uint32_t Offset;
LazyRandomTypeCollection.h 29 /// offset into the type stream, because type records are variable-lengthed.
54 uint32_t Offset;
  /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);
DWARFDebugAbbrev.h 23 uint64_t Offset;
35 uint64_t getOffset() const { return Offset; }
DWARFDebugInfoEntry.h 24 /// Offset within the .debug_info of the start of this entry.
25 uint64_t Offset = 0;
37 /// starting at a given offset. If DIE can't be extracted, returns false and
46 uint64_t getOffset() const { return Offset; }
DWARFDebugRangeList.h 25 /// A beginning address offset. This address offset has the size of an
30 /// An ending address offset. This address offset again has the size of
40 /// which consists of a 0 for the beginning address offset
41 /// and a 0 for the ending address offset.
47 /// 1. The value of the largest representable address offset
61 /// Offset in .debug_ranges section.
62 uint64_t Offset;
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/GSYM/
Header.cpp 55 "invalid address offset size %u",
65 uint64_t Offset = 0;
67 if (!Data.isValidOffsetForDataOfSize(Offset, sizeof(Header)))
71 H.Magic = Data.getU32(&Offset);
72 H.Version = Data.getU16(&Offset);
73 H.AddrOffSize = Data.getU8(&Offset);
74 H.UUIDSize = Data.getU8(&Offset);
75 H.BaseAddress = Data.getU64(&Offset);
76 H.NumAddresses = Data.getU32(&Offset);
77 H.StrtabOffset = Data.getU32(&Offset);
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
SystemZInstrBuilder.h 35 int64_t Offset = 0;
37 MachinePointerInfo::getFixedStack(MF, FI, Offset), Flags,
39 return MIB.addFrameIndex(FI).addImm(Offset).addReg(0).addMemOperand(MMO);
  /src/sys/external/bsd/acpica/dist/compiler/
aslhex.c 172 UINT32 Offset = 0;
199 while (Offset < AmlFileSize)
219 if ((Offset + i + 1) < AmlFileSize)
237 /* Emit the offset and ascii dump for the entire line */
239 FlPrintFile (ASL_FILE_HEX_OUTPUT, " /* %8.8X", Offset);
245 Offset += LineLength;
273 UINT32 Offset = 0;
288 while (Offset < AmlFileSize)
308 if ((Offset + i + 1) < AmlFileSize)
326 /* Emit the offset and ascii dump for the entire line *
    [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/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/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_utils.h 52 uint64_t Offset = 0;
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/
ReplacementsYaml.h 34 : FilePath(""), Offset(0), Length(0), ReplacementText("") {}
37 : FilePath(R.getFilePath()), Offset(R.getOffset()),
41 return clang::tooling::Replacement(FilePath, Offset, Length,
46 unsigned int Offset;
55 Io.mapRequired("Offset", Keys->Offset);
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
LayoutOverrideSource.cpp 22 unsigned Offset = 1;
23 while (Offset < S.size() && isIdentifierBody(S[Offset]))
24 ++Offset;
26 return S.substr(0, Offset).str();
132 // Parse this offset.
137 unsigned long long Offset = 0;
138 (void)LineStr.substr(0, Idx).getAsInteger(10, Offset);
140 CurrentLayout.FieldOffsets.push_back(Offset);
142 // Skip over this offset, the following comma, and any spaces
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/IndexSerialization/
SerializablePathCollection.cpp 17 const std::size_t Offset = Buffer.size();
19 return StringPool::StringOffsetSize(Offset, Str.size());
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/Utils/
Local.h 24 /// compute the offset from the base pointer (without adding in the base
49 Value *Offset;
54 // Handle a struct index, which adds its field offset to the pointer.
61 Offset = ConstantInt::get(IntIdxTy, Size);
71 Offset =
89 Offset = Op;
93 Result = Builder->CreateAdd(Result, Offset, GEP->getName().str()+".offs",
96 Result = Offset;
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
SelectionDAGAddressAnalysis.h 19 /// Helper struct to parse and store a memory address as base + index + offset.
36 Optional<int64_t> Offset;
42 : Base(Base), Index(Index), Offset(), IsIndexSignExt(IsIndexSignExt) {}
43 BaseIndexOffset(SDValue Base, SDValue Index, int64_t Offset,
45 : Base(Base), Index(Index), Offset(Offset),
52 bool hasValidOffset() const { return Offset.hasValue(); }
54 // Returns true if `Other` and `*this` are both some offset from the same base
55 // pointer. In that case, `Off` is set to the offset between `*this` and
86 /// Parses tree in N for base, index, offset addresses
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/GSYM/
LookupResult.h 27 uint32_t Offset = 0; ///< Byte size offset within the named function.
33 LHS.Offset == RHS.Offset;
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/llvm/include/llvm/DebugInfo/PDB/Native/
NativeLineNumber.h 24 uint32_t Section, uint32_t Offset,
45 uint32_t Offset;

Completed in 46 milliseconds

1 2 3 4 5 6 7 8 91011>>