HomeSort by relevance Sort by last modified time
    Searched defs:Data (Results 126 - 150 of 427) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/libnfc-nci/halimpl/pn54x/dnld/
phDnldNfc.c 108 ** Description Retrieves Hardware version, ROM Code version, Protected Data version,
109 ** Trim data version, User data version, and Firmware version information
251 ** NOTE: The user data section CRC is valid only after fresh download
336 ** Description Retrieves log data from EEPROM
338 ** Parameters pData - response buffer which gets updated with data from EEPROM
409 ** Description Writes requested data of length len to desired EEPROM/FLASH address
411 ** Parameters bRecoverSeq - flag to indicate whether recover sequence data needs to be written or not
412 ** pData - data buffer to write into EEPROM/FLASH by user
532 ** Parameters pData - data buffer to write into EEPROM/FLASH by use
    [all...]
  /external/llvm/include/llvm/ADT/
EquivalenceClasses.h 59 /// ECValue - The EquivalenceClasses data structure is just a set of these.
72 ElemTy Data;
76 : Leader(this), Next((ECValue*)(intptr_t)1), Data(Elt) {}
95 Data(RHS.Data) {
100 bool operator<(const ECValue &UFN) const { return Data < UFN.Data; }
103 const ElemTy &getData() const { return Data; }
110 bool operator<(const T &Val) const { return Data < Val; }
196 iterator insert(const ElemTy &Data) {
    [all...]
SparseMultiSet.h 32 /// universe, so it is not recommended for building composite data structures.
83 /// The actual data that's stored, as a doubly-linked list implemented via
92 ValueT Data;
96 SMSNode(ValueT D, unsigned P, unsigned N) : Data(D), Prev(P), Next(N) { }
132 unsigned sparseIndex(const SMSNode &N) const { return sparseIndex(N.Data); }
135 // This data structure is not meant to be used that way.
210 // complain about branching on uninitialized data.
254 assert(isKeyed() && SMS->sparseIndex(SMS->Dense[Idx].Data) == SparseIdx &&
257 return SMS->Dense[Idx].Data;
489 return iterator(this, SMSNode::INVALID, ValIndexOf(N.Data));
    [all...]
  /external/llvm/include/llvm/MC/
SectionKind.h 36 /// ReadOnly - Data that is never written to at program runtime by the
78 /// ThreadBSS - Zero-initialized TLS data objects.
81 /// ThreadData - Initialized TLS data objects.
84 /// GlobalWriteableData - Writeable data that is global (not thread
87 /// BSS - Zero initialized writeable data.
90 /// BSSLocal - This is BSS (zero initialized and writable) data
94 /// BSSExtern - This is BSS data with normal external linkage.
97 /// Common - Data with common linkage. These represent tentative
102 /// This is writeable data that has a non-zero initializer.
103 Data,
    [all...]
  /external/llvm/include/llvm/Object/
Archive.h 33 char Size[10]; ///< Size of data, not including header or padding.
58 StringRef Data;
59 /// \brief Offset from Data to the start of the file.
63 return reinterpret_cast<const ArchiveMemberHeader *>(Data.data());
70 Child(const Archive *Parent, StringRef Data, uint16_t StartOfFile);
74 return Data.begin() == other.Data.begin();
Binary.h 37 MemoryBufferRef Data;
136 /// @param Source The data to create the Binary from.
ELFYAML.h 62 ELF_ELFDATA Data;
  /external/llvm/include/llvm/Support/
ARMWinEH.h 33 /// RuntimeFunction - An entry in the table of procedure data (.pdata)
44 /// - 00 = packed unwind data not used; reamining bits point to .xdata record
45 /// - 01 = packed unwind data
46 /// - 10 = packed unwind data, function assumed to have no prologue; useful
98 // to fully inspect the contents of the data structure which is particularly
106 RuntimeFunction(const support::ulittle32_t *Data)
107 : BeginAddress(Data[0]), UnwindData(Data[1]) {}
208 /// ExceptionDataRecord - An entry in the table of exception data (.xdata)
223 /// X : 1-bit field indicating the presence of exception data
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfAccelTable.h 31 // for null lookup rather than access to known data. They are output into
43 // | DATA |
48 // struct of data and the length of that struct.
52 // the offsets contain the offset into the data area for the particular
60 // grab the offset in the data for our final match.
86 // and hash data offsets in this table.
89 // Also written to disk is the implementation specific header data.
104 << "Header Data Length: " << header_data_len << "\n";
111 // The HeaderData describes the form of each set of data. In general this
113 // (AtomType type) of data, and an encoding form (form). In the case o
    [all...]
  /external/llvm/lib/DebugInfo/Symbolize/
SymbolizableObjectFile.cpp 42 StringRef Data;
46 if (auto EC = Section->getContents(Data))
48 OpdExtractor.reset(new DataExtractor(Data, Obj->isLittleEndian(),
Symbolize.cpp 189 StringRef Data;
190 Section.getContents(Data);
191 DataExtractor DE(Data, Obj->isLittleEndian(), 0);
215 return !memcmp(dbg_uuid.data(), bin_uuid.data(), dbg_uuid.size());
  /external/llvm/lib/Fuzzer/
FuzzerLoop.cpp 241 const uint8_t *Data = U.data();
243 if (!Data)
244 Data = &EmptyData;
245 int Res = USF.TargetFunction(Data, U.size());
282 CounterBitmap.data());
380 size_t NewSize = USF.Mutate(U.data(), Size, U.size());
  /external/llvm/lib/MC/
MCMachOStreamer.cpp 204 // Create a temporary label to mark the start of the data region.
208 DataRegionData Data = { Kind, Start, nullptr };
210 Regions.push_back(Data);
218 DataRegionData &Data = Regions.back();
219 assert(!Data.End && "Mismatched .end_data_region!");
220 // Create a temporary label to mark the end of the data region.
221 Data.End = getContext().createTempSymbol();
222 EmitLabel(Data.End);
247 EmitDataRegion(DataRegionData::Data);
283 // Note that we intentionally cannot use the symbol data here; this i
    [all...]
  /external/llvm/lib/ProfileData/
InstrProfWriter.cpp 10 // This file contains support for writing profiling data for clang's
56 // Value data
65 Out.write(K.data(), N);
80 // Write value data
238 std::string Data;
239 llvm::raw_string_ostream OS(Data);
247 Data.replace(TableStart.first, sizeof(uint64_t), (const char *)&Bytes,
251 return MemoryBuffer::getMemBufferCopy(Data);
SampleProfReader.cpp 1 //===- SampleProfReader.cpp - Read LLVM sample profile data ---------------===//
246 uint64_t Val = decodeULEB128(Data, &NumBytesRead);
250 else if (Data + NumBytesRead > End)
260 Data += NumBytesRead;
266 StringRef Str(reinterpret_cast<const char *>(Data));
267 if (Data + Str.size() + 1 > End) {
273 Data += Str.size() + 1;
386 Data = reinterpret_cast<const uint8_t *>(Buffer->getBufferStart());
387 End = Data + Buffer->getBufferSize();
419 const uint8_t *Data
    [all...]
  /external/llvm/lib/Support/
MemoryBuffer.cpp 59 static void CopyStringRef(char *Memory, StringRef Data) {
60 if (!Data.empty())
61 memcpy(Memory, Data.data(), Data.size());
62 Memory[Data.size()] = 0; // Null terminate string.
124 memcpy(const_cast<char*>(Buf->getBufferStart()), InputData.data(),
131 // Allocate space for the MemoryBuffer, the data and the name. It is important
132 // that MemoryBuffer and data are aligned so PointerIntPair works with them.
424 // Read in all of the data from stdin, we cannot mmap stdin
    [all...]
  /external/llvm/lib/Target/AMDGPU/
SIInsertWaits.cpp 207 // multiple data operands.
210 MachineOperand *Data = TII->getNamedOperand(MI, AMDGPU::OpName::data);
211 if (Data && Op.isIdenticalTo(*Data))
  /external/llvm/lib/Target/
TargetMachineC.cpp 242 StringRef Data = OStream.str();
244 LLVMCreateMemoryBufferWithMemoryRangeCopy(Data.data(), Data.size(), "");
  /external/llvm/unittests/DebugInfo/PDB/
PDBApiTest.cpp 307 InsertItemWithTag(PDB_SymType::Data);
369 VerifyDyncast<PDBSymbolData>(PDB_SymType::Data);
  /external/llvm/unittests/ProfileData/
CoverageMappingTest.cpp 201 CoverageData Data = LoadedCoverage->getCoverageForFile("file1");
202 std::vector<CoverageSegment> Segments(Data.begin(), Data.end());
219 CoverageData Data = LoadedCoverage->getCoverageForFile("file1");
220 std::vector<CoverageSegment> Segments(Data.begin(), Data.end());
233 CoverageData Data = LoadedCoverage->getCoverageForFile("file1");
234 std::vector<CoverageSegment> Segments(Data.begin(), Data.end());
251 CoverageData Data = LoadedCoverage->getCoverageForFile("file1")
    [all...]
  /external/lzma/C/
7z.h 18 const Byte *Data;
  /external/lzma/CPP/Windows/
FileIO.h 60 bool SetReparseData(CFSTR path, bool isDir, const void *data, DWORD size);
134 BYTE Data[1];
178 bool Read1(void *data, UInt32 size, UInt32 &processedSize) throw();
179 bool ReadPart(void *data, UInt32 size, UInt32 &processedSize) throw();
180 bool Read(void *data, UInt32 size, UInt32 &processedSize) throw();
193 bool WritePart(const void *data, UInt32 size, UInt32 &processedSize) throw();
194 bool Write(const void *data, UInt32 size, UInt32 &processedSize) throw();
  /external/opencv/cvaux/src/
cvface.cpp 35 // loss of use, data, or profits; or business interruption) however caused
202 FaceData Data;
221 Data.MouthRect = *(CvRect*)m_lpIdealFace[0].GetContour();
225 Data.MouthRect = *(CvRect*)m_lppFoundedFaceFeatures[0][i].GetContour();
234 Data.LeftEyeRect = *(CvRect*)m_lpIdealFace[1].GetContour();
238 Data.LeftEyeRect = *(CvRect*)m_lppFoundedFaceFeatures[1][j].GetContour();
247 Data.RightEyeRect = *(CvRect*)m_lpIdealFace[2].GetContour();
251 Data.RightEyeRect = *(CvRect*)m_lppFoundedFaceFeatures[2][k].GetContour();
255 CalculateError(&Data);
259 Error = Data.Error/(im + jl + kr)
    [all...]
  /external/pdfium/xfa/src/fgas/src/crt/
fx_memory.h 96 return (_FX_DYNAMICSTOREBLOCK*)(Data() + iBlockSize);
98 uint8_t* Data() const {
  /external/v8/src/compiler/
control-equivalence.h 89 // The per-node data computed during the DFS walk.
90 typedef ZoneVector<NodeData> Data;
128 // Template used to initialize per-node data.
133 // Accessors for the DFS number stored within the per-node data.
139 // Accessors for the equivalence class stored within the per-node data.
145 // Accessors for the bracket list stored within the per-node data.
164 Data node_data_; // Per-node data stored as a side-table.

Completed in 2465 milliseconds

1 2 3 4 56 7 8 91011>>