HomeSort by: relevance | last modified time | path
    Searched refs:Contents (Results 1 - 25 of 112) sorted by relevancy

1 2 3 4 5

  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
DebugSubsectionRecord.cpp 57 const DebugSubsectionRecord &Contents)
58 : Contents(Contents) {}
62 : Contents.getRecordData().getLength();
74 Header.Kind = uint32_t(Subsection ? Subsection->kind() : Contents.kind());
78 : Contents.getRecordData().getLength();
87 if (auto EC = Writer.writeStreamRef(Contents.getRecordData()))
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachineOperand.h 154 /// SmallContents - This really should be part of the Contents union, but
160 unsigned OffsetLo; // Matches Contents.OffsetedInfo.OffsetHi.
167 /// Contents union - This contains the payload for the various operand types.
200 } Contents;
207 static_assert(sizeof(Contents) <= 2 * sizeof(void *),
208 "Contents should be at most two pointers");
213 "ParentMI, and Contents");
539 return Contents.ImmVal;
544 return Contents.CI;
549 return Contents.CFP
    [all...]
ScheduleDAG.h 91 } Contents;
105 : Dep(S, kind), Contents() {
113 Contents.Reg = Reg;
117 Contents.Reg = Reg;
124 : Dep(S, Order), Contents(), Latency(0) {
125 Contents.OrdKind = kind;
169 return getKind() == Order && (Contents.OrdKind == MayAliasMem
170 || Contents.OrdKind == MustAliasMem);
175 return getKind() == Order && Contents.OrdKind == Barrier;
187 return getKind() == Order && Contents.OrdKind == MustAliasMem
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/MCTargetDesc/
RISCVELFStreamer.h 29 SmallVector<AttributeItem, 64> Contents;
34 for (size_t i = 0; i < Contents.size(); ++i)
35 if (Contents[i].Tag == Attribute)
36 return &Contents[i];
52 Contents.push_back({AttributeType::Numeric, Attribute, Value, ""});
67 Contents.push_back({AttributeType::Text, Attribute, 0, std::string(Value)});
83 Contents.push_back({AttributeType::NumericAndText, Attribute, IntValue,
RISCVELFStreamer.cpp 93 if (Contents.empty())
124 for (AttributeItem item : Contents) {
144 Contents.clear();
149 for (AttributeItem item : Contents) {
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/wasm/
WasmObjcopy.cpp 27 ArrayRef<uint8_t> Contents = Sec.Contents;
29 FileOutputBuffer::create(Filename, Contents.size());
33 std::copy(Contents.begin(), Contents.end(), Buf->getBufferStart());
69 Sec.Contents = makeArrayRef<uint8_t>(
Writer.cpp 29 SectionSize = S.Contents.size();
70 Out.write(reinterpret_cast<const char *>(Obj.Sections[I].Contents.data()),
71 Obj.Sections[I].Contents.size());
Object.h 27 ArrayRef<uint8_t> Contents;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-strings/
llvm-strings.cpp 60 static void strings(raw_ostream &OS, StringRef FileName, StringRef Contents) {
82 const char *B = Contents.begin();
84 for (P = Contents.begin(), E = Contents.end(); P < E; ++P) {
  /src/external/bsd/pkg_install/dist/create/
create.h 45 extern char *Contents;
perform.c 52 if (!Contents)
53 errx(2, "required package contents list is missing (-f [-]file)");
97 char *contents; local
105 contents = xmalloc((size_t) (sb.st_size) + 1);
110 if (read(fd, contents, (size_t) sb.st_size) != (ssize_t) sb.st_size) {
115 contents[(size_t) sb.st_size] = '\0';
116 return contents;
120 * Get a string parameter as a file spec or as a "contents follow -" spec
161 if (IS_STDIN(Contents))
164 pkg_in = fopen(Contents, "r")
    [all...]
main.c 38 char *Contents = NULL;
111 Contents = optarg;
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
DebugSubsectionRecord.h 58 DebugSubsectionRecordBuilder(const DebugSubsectionRecord &Contents);
64 /// The subsection to build. Will be null if Contents is non-empty.
69 DebugSubsectionRecord Contents;
  /src/external/apache2/llvm/dist/llvm/lib/Object/
IRObjectFile.cpp 77 Expected<StringRef> Contents = Sec.getContents();
78 if (!Contents)
79 return Contents.takeError();
80 if (Contents->size() <= 1)
82 return MemoryBufferRef(*Contents, Obj.getFileName());
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
AccelTable.cpp 67 // Figure out how many buckets we need, then compute the bucket contents and
73 // Compute bucket contents and final ordering.
81 // Sort the contents of the buckets by hash value so that hash collisions end
95 const AccelTableBase &Contents; ///< Data to emit.
109 AccelTableWriter(AsmPrinter *Asm, const AccelTableBase &Contents,
111 : Asm(Asm), Contents(Contents), SkipIdenticalHashes(SkipIdenticalHashes) {
168 AppleAccelTableWriter(AsmPrinter *Asm, const AccelTableBase &Contents,
170 : AccelTableWriter(Asm, Contents, true),
171 Header(Contents.getBucketCount(), Contents.getUniqueHashCount()
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Tooling/DependencyScanning/
DependencyScanningFilesystem.cpp 46 Result.Contents.reserve(Buffer->getBufferSize() + 1);
47 Result.Contents.append(Buffer->getBufferStart(), Buffer->getBufferEnd());
48 // Implicitly null terminate the contents for Clang's lexer.
49 Result.Contents.push_back('\0');
50 Result.Contents.pop_back();
60 // The contents produced by the minimizer must be null terminated.
62 "not null terminated contents");
63 // Even though there's an implicit null terminator in the minimized contents,
68 Result.Contents = std::move(MinimizedFileContents);
71 Result.Contents.pop_back()
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineRegisterInfo.cpp 276 MO->Contents.Reg.Prev = MO;
277 MO->Contents.Reg.Next = nullptr;
284 MachineOperand *Last = Head->Contents.Reg.Prev;
287 Head->Contents.Reg.Prev = MO;
288 MO->Contents.Reg.Prev = Last;
294 MO->Contents.Reg.Next = Head;
298 MO->Contents.Reg.Next = nullptr;
299 Last->Contents.Reg.Next = MO;
311 MachineOperand *Next = MO->Contents.Reg.Next;
312 MachineOperand *Prev = MO->Contents.Reg.Prev
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
csv.d 56 * When an input contains a header the `Contents` can be specified as an
233 * Contents).
313 as the header. If `Contents` is a struct then the header provided is
314 expected to correspond to the fields in the struct. When `Contents` is
320 $(REF isInputRange, std,range,primitives). When `Contents` is a
322 `Contents`, otherwise the element type of R is itself a range with
323 element type `Contents`.
338 when the exception is thrown for different types of `Contents`.
340 auto csvReader(Contents = string,Malformed ErrorLevel = Malformed.throwException, Range, Separator = char)(Range input,
345 && !is(Contents T : T[U], U : string)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/MIRParser/
MIRParser.h 80 /// \param Contents - The MemoryBuffer containing the machine level IR.
83 createMIRParser(std::unique_ptr<MemoryBuffer> Contents, LLVMContext &Context,
  /src/external/apache2/llvm/dist/llvm/lib/XRay/
InstrumentationMap.cpp 71 StringRef Contents = "";
90 Contents = *E;
147 auto C = Contents.bytes_begin();
151 if ((C - Contents.bytes_end()) % ELFSledEntrySize != 0)
159 uint64_t A = I->getAddress() + C - Contents.bytes_begin() + Offset;
170 for (; C != Contents.bytes_end(); C += ELFSledEntrySize) {
200 Entry.Address += C - Contents.bytes_begin() + Address;
201 Entry.Function += C - Contents.bytes_begin() + WordSize + Address;
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCFragment.cpp 383 OS << " Contents:[";
384 const SmallVectorImpl<char> &Contents = DF->getContents();
385 for (unsigned i = 0, e = Contents.size(); i != e; ++i) {
387 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF);
389 OS << "] (" << Contents.size() << " bytes)";
407 OS << " Contents:[";
408 const SmallVectorImpl<char> &Contents = CEIF->getContents();
409 for (unsigned i = 0, e = Contents.size(); i != e; ++i) {
411 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF)
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
Win64EHDumper.cpp 339 ArrayRef<uint8_t> Contents;
340 if (Error E = Ctx.COFF.getSectionContents(XData, Contents))
343 if (Contents.empty())
346 if (Offset > Contents.size())
349 const auto UI = reinterpret_cast<const UnwindInfo*>(Contents.data() + Offset);
365 ArrayRef<uint8_t> Contents;
367 if (Error E = Ctx.COFF.getSectionContents(PData, Contents))
369 if (Contents.empty())
373 reinterpret_cast<const RuntimeFunction *>(Contents.data());
374 const size_t Count = Contents.size() / sizeof(RuntimeFunction)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Remarks/
RemarkLinker.cpp 45 if (Expected<StringRef> Contents = Section.getContents())
46 return *Contents;
48 return Contents.takeError();
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/COFF/
COFFObjcopy.cpp 59 // Adds named section with given contents to the object.
60 static void addSection(Object &Obj, StringRef Name, ArrayRef<uint8_t> Contents,
66 Sec.setOwnedContents(Contents);
85 Expected<std::vector<uint8_t>> Contents =
87 if (!Contents)
88 return Contents.takeError();
90 addSection(Obj, ".gnu_debuglink", *Contents,
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/DependencyScanning/
DependencyScanningFilesystem.h 29 /// - an opened source file with minimized contents and a stat value.
30 /// - an opened source file with original contents and a stat value.
42 /// original contents.
62 /// \returns The error or the file's contents.
68 return StringRef(Contents);
97 // Store the contents in a small string to allow a
98 // move from the small string for the minimized contents.
101 llvm::SmallString<1> Contents;
136 /// It is primarily designed to work with source files whose contents was was

Completed in 57 milliseconds

1 2 3 4 5