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

1 2 3 4 5 6 7 8 91011>>

  /src/external/apache2/llvm/dist/llvm/lib/Object/
SymbolicFile.cpp 40 StringRef Data = Object.getBuffer();
42 Type = identify_magic(Data);
  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
BlockCounter.h 9 // This file defines BlockCounter, an abstract data type used to count
27 /// An abstract data type used to count the number of times a given
30 void *Data;
32 BlockCounter(void *D) : Data(D) {}
35 BlockCounter() : Data(nullptr) {}
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
DebugUnknownSubsection.h 20 DebugUnknownSubsectionRef(DebugSubsectionKind Kind, BinaryStreamRef Data)
21 : DebugSubsectionRef(Kind), Data(Data) {}
23 BinaryStreamRef getData() const { return Data; }
26 BinaryStreamRef Data;
AppendingTypeTableBuilder.h 46 bool replaceType(TypeIndex &Index, CVType Data, bool Stabilize) override;
59 ArrayRef<uint8_t> Data = SimpleSerializer.serialize(Record);
60 return insertRecordBytes(Data);
DebugSubsectionRecord.h 38 DebugSubsectionRecord(DebugSubsectionKind Kind, BinaryStreamRef Data);
48 BinaryStreamRef Data;
MergingTypeTableBuilder.h 55 bool replaceType(TypeIndex &Index, CVType Data, bool Stabilize) override;
70 ArrayRef<uint8_t> Data = SimpleSerializer.serialize(Record);
71 return insertRecordBytes(Data);
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/
BitWriter.cpp 44 std::string Data;
45 raw_string_ostream OS(Data);
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/JITLink/
MachO.cpp 32 StringRef Data = ObjectBuffer.getBuffer();
33 if (Data.size() < 4)
38 memcpy(&Magic, Data.data(), sizeof(uint32_t));
49 if (Data.size() < sizeof(MachO::mach_header_64))
56 memcpy(&CPUType, Data.data() + 4, sizeof(uint32_t));
ELF.cpp 32 const char *Data = Buffer.data();
34 if (Data[ELF::EI_DATA] == ELF::ELFDATA2LSB) {
35 if (Data[ELF::EI_CLASS] == ELF::ELFCLASS64) {
41 } else if (Data[ELF::EI_CLASS] == ELF::ELFCLASS32) {
59 if (memcmp(Buffer.data(), ELF::ElfMagic, strlen(ELF::ElfMagic)) != 0)
  /src/external/apache2/llvm/dist/llvm/lib/Support/
RandomNumberGenerator.cpp 38 // Data: Seed-low, Seed-high, Salt
42 std::vector<uint32_t> Data;
43 Data.resize(2 + Salt.size());
44 Data[0] = Seed;
45 Data[1] = Seed >> 32;
47 llvm::copy(Salt, Data.begin() + 2);
49 std::seed_seq SeedSeq(Data.begin(), Data.end());
  /src/sys/external/bsd/gnu-efi/dist/lib/
hw.c 80 UINT32 Data;
83 Status = uefi_call_wrapper(GlobalIoFncs->Io.Read, 5, GlobalIoFncs, Width, (UINT64)Port, 1, &Data);
85 return Data;
93 IN UINTN Data
98 Status = uefi_call_wrapper(GlobalIoFncs->Io.Write, 5, GlobalIoFncs, Width, (UINT64)Port, 1, &Data);
100 return (UINT32)Data;
110 UINT32 Data;
113 Status = uefi_call_wrapper(GlobalIoFncs->Pci.Read, 5, GlobalIoFncs, Width, (UINT64)Address, 1, &Data);
115 return Data;
123 IN UINTN Data
    [all...]
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CXString.h 50 /// contain a pointer to the undrelying data of \p String.
86 SmallString<128> Data;
97 /// Returns true if the CXString data is managed by a pool.
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
DWARFSection.h 17 StringRef Data;
DWARFDebugAbbrev.h 37 bool extract(DataExtractor Data, uint64_t *OffsetPtr);
60 mutable Optional<DataExtractor> Data;
70 void extract(DataExtractor Data);
  /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
YAML.h 66 /// Either raw binary data, or a string of hex bytes (must always
68 ArrayRef<uint8_t> Data;
70 /// Discriminator between the two states of the `Data` member.
75 BinaryRef(ArrayRef<uint8_t> Data) : Data(Data), DataIsHexString(false) {}
76 BinaryRef(StringRef Data) : Data(arrayRefFromStringRef(Data)) {}
82 return Data.size() / 2
    [all...]
  /src/lib/libc/md/
mdXhl.c 29 WA(MDNAME(Data),CONCAT(_,MDNAME(Data)))
100 MDNAME(Data)(const unsigned char *data, unsigned int len, char *buf)
104 _DIAGASSERT(data != 0);
107 MDNAME(Update)(&ctx, data, len);
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerCrossOver.cpp 30 const uint8_t *Data = Data1;
33 // Merge a part of Data into Out.
39 memcpy(Out + OutPos, Data + *InPos, ExtraSize);
43 // Use the other input data on the next iteration.
46 Data = CurrentlyUsingFirstData ? Data2 : Data1;
  /src/sys/external/bsd/compiler_rt/dist/lib/profile/
InstrProfilingInternal.h 17 * \brief Write instrumentation data to the given buffer, given explicit
18 * pointers to the live data in memory. This function is probably not what you
28 * \brief Write instrumentation data to the given buffer, given explicit
29 * pointers to the live data in memory. This function is probably not what you
42 * The data structure describing the data to be written by the
46 const void *Data;
55 * The data structure for buffered IO of profile data.
84 * This is the interface to write \c Data of \c Size bytes throug
    [all...]
InstrProfilingPlatformOther.c 1 /*===- InstrProfilingPlatformOther.c - Profile data default platform ------===*\
32 const __llvm_profile_data *Data = (__llvm_profile_data *)Data_;
34 DataFirst = Data;
35 DataLast = Data + 1;
36 NamesFirst = Data->NamePtr;
37 NamesLast = (const char *)Data->NamePtr + Data->NameSize;
38 CountersFirst = Data->CounterPtr;
39 CountersLast = (uint64_t *)Data->CounterPtr + Data->NumCounters
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Frontend/
CheckerRegistry.h 13 // library libStaticAnalyzerCheckers, but the actual data structure that holds
91 CheckerRegistry(CheckerRegistryData &Data, ArrayRef<std::string> Plugins,
190 CheckerRegistryData &Data;
  /src/external/apache2/llvm/dist/clang/lib/Driver/
Distro.cpp 116 StringRef Data = File.get()->getBuffer();
117 if (Data.startswith("Fedora release"))
119 if (Data.startswith("Red Hat Enterprise Linux") ||
120 Data.startswith("CentOS") || Data.startswith("Scientific Linux")) {
121 if (Data.find("release 7") != StringRef::npos)
123 else if (Data.find("release 6") != StringRef::npos)
125 else if (Data.find("release 5") != StringRef::npos)
134 StringRef Data = File.get()->getBuffer();
137 if (!Data.split('.').first.getAsInteger(10, MajorVersion))
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/GSYM/
StringTable.h 23 StringRef Data;
24 StringTable() : Data() {}
25 StringTable(StringRef D) : Data(D) {}
28 if (Offset < Data.size()) {
29 auto End = Data.find('\0', Offset);
30 return Data.substr(Offset, End - Offset);
34 void clear() { Data = StringRef(); }
40 const size_t Size = S.Data.size();
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
DynamicLibrary.h 42 // Opaque data used to interface with OS-specific dynamic library handling.
43 void *Data;
46 explicit DynamicLibrary(void *data = &Invalid) : Data(data) {}
49 bool isValid() const { return Data != &Invalid; }
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
CodeViewYAMLTypeHashing.cpp 70 uint8_t *Data = Alloc.Allocate<uint8_t>(Size);
71 MutableArrayRef<uint8_t> Buffer(Data, Size);
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86IntrinsicsInfo.h 324 * Find Intrinsic data by intrinsic ID
327 const IntrinsicData *Data = lower_bound(IntrinsicsWithChain, IntNo);
328 if (Data != std::end(IntrinsicsWithChain) && Data->Id == IntNo)
329 return Data;
1149 * Retrieve data for Intrinsic without chain.
1153 const IntrinsicData *Data = lower_bound(IntrinsicsWithoutChain, IntNo);
1154 if (Data != std::end(IntrinsicsWithoutChain) && Data->Id == IntNo)
1155 return Data;
    [all...]

Completed in 36 milliseconds

1 2 3 4 5 6 7 8 91011>>