HomeSort by relevance Sort by last modified time
    Searched refs:Record (Results 201 - 225 of 698) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/llvm/lib/ProfileData/Coverage/
CoverageMapping.cpp 192 for (const auto &Record : CoverageReader) {
193 CounterMappingContext Ctx(Record.Expressions);
197 Record.FunctionName, Record.FunctionHash, Counts)) {
204 Counts.assign(Record.MappingRegions.size(), 0);
208 assert(!Record.MappingRegions.empty() && "Function has no regions");
210 StringRef OrigFuncName = Record.FunctionName;
211 if (Record.Filenames.empty())
215 getFuncNameWithoutPrefix(OrigFuncName, Record.Filenames[0]);
216 FunctionRecord Function(OrigFuncName, Record.Filenames)
    [all...]
  /external/swiftshader/third_party/LLVM/utils/TableGen/
TableGen.cpp 35 #include "llvm/TableGen/Record.h"
161 std::vector<Record*> Recs = Records.getAllDerivedDefinitions(Class);
171 std::vector<Record*> Recs = Records.getAllDerivedDefinitions("Set");
174 const std::vector<Record*> *Elts = Sets.expand(Recs[i]);
CodeGenInstruction.cpp 17 #include "llvm/TableGen/Record.h"
28 CGIOperandList::CGIOperandList(Record *R) : TheDef(R) {
67 Record *Rec = Arg->getDef();
290 CodeGenInstruction::CodeGenInstruction(Record *R) : TheDef(R), Operands(R) {
343 Record *FirstImplicitDef = ImplicitDefs[0];
410 Record *InstOpRec, bool hasSubOps,
417 // If the operand is a record, it must have a name, and the record type
463 ResOp = ResultOperand(static_cast<Record*>(0));
481 CodeGenInstAlias::CodeGenInstAlias(Record *R, CodeGenTarget &T) : TheDef(R)
    [all...]
RegisterInfoEmitter.cpp 19 #include "llvm/TableGen/Record.h"
76 const std::vector<Record*> RegAltNameIndices = Target.getRegAltNameIndices();
103 typedef std::map<Record*, std::vector<int64_t>, LessRecord> DwarfRegNumsMapTy;
109 Record *Reg = Regs[i]->TheDef;
163 Record *Reg = Regs[i]->TheDef;
169 Record *Alias = DI->getDef();
341 ArrayRef<Record*> Order = RC.getOrder();
351 Record *Reg = Order[i];
361 Record *Reg = Order[i];
433 const std::vector<Record*> &SubRegIndices = RegBank.getSubRegIndices()
    [all...]
  /system/extras/simpleperf/
event_selection_set.h 34 #include "record.h"
115 bool PrepareToReadMmapEventData(const std::function<bool(Record*)>& callback);
165 std::function<bool(Record*)> record_callback_;
179 std::unique_ptr<Record> r;
record_equal_test.h 62 static void CheckRecordEqual(const Record& r1, const Record& r2) {
  /external/llvm/unittests/Bitcode/
BitstreamReaderTest.cpp 204 unsigned Record[] = {RecordID};
205 Stream.EmitRecordWithBlob(AbbrevID, makeArrayRef(Record), BlobIn);
229 ASSERT_EQ(BitstreamEntry::Record, Entry.Kind);
232 // Record.
234 SmallVector<uint64_t, 1> Record;
235 ASSERT_EQ(RecordID, Stream.readRecord(Entry.ID, Record, &BlobOut));
236 EXPECT_TRUE(Record.empty());
  /external/harfbuzz_ng/src/
hb-ot-layout-jstf-table.hh 127 const Record<JstfLangSys>::sanitize_closure_t * = NULL) const
168 const Record<JstfScript>::sanitize_closure_t * = NULL) const
  /external/llvm/tools/llvm-bcanalyzer/
llvm-bcanalyzer.cpp 96 // Check to see if we have a blockinfo record for this block, with a name.
146 // Check to see if we have a blockinfo record for this record, with a name.
423 ArrayRef<uint64_t> Record,
428 if (Record.size() != 2)
431 unsigned NumStrings = Record[0];
432 unsigned StringsOffset = Record[1];
463 StringRef Indent, ArrayRef<uint64_t> Record,
470 return decodeMetadataStringsBlob(Reader, Indent, Record, Blob);
496 return Error("Malformed block record");
    [all...]
  /external/llvm/utils/TableGen/
AsmWriterEmitter.cpp 25 #include "llvm/TableGen/Record.h"
256 Record *AsmWriter = Target.getAsmWriter();
509 std::vector<Record*> AltNameList =
548 Record *AsmWriter = Target.getAsmWriter();
551 const std::vector<Record*> &AltNameIndices = Target.getRegAltNameIndices();
570 for (const Record *R : AltNameIndices)
578 for (const Record *R : AltNameIndices) {
745 Record *AsmWriter = Target.getAsmWriter();
759 std::vector<Record*> AllInstAliases =
766 for (Record *R : AllInstAliases)
    [all...]
CodeGenDAGPatterns.cpp 23 #include "llvm/TableGen/Record.h"
795 Record *Op = PatFragRec->getOnlyTree()->getOperator();
872 SmallVector<Record *, 4> PredicateRecs;
875 Record *Def = Pred->getDef();
889 for (Record *Pred : PredicateRecs) {
902 SDTypeConstraint::SDTypeConstraint(Record *R) {
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PlatformSetupDxe/
SetupInfoRecords.c 465 EFI_DATA_RECORD_HEADER *Record;
481 Record = NULL;
488 &Record
491 if (Record->DataRecordClass == EFI_DATA_RECORD_CLASS_DATA) {
492 DataHeader = (EFI_SUBCLASS_TYPE1_HEADER *)(Record + 1);
494 if(CompareGuid(&Record->DataRecordGuid, &gEfiCacheSubClassGuid) &&
530 EFI_DATA_RECORD_HEADER *Record;
573 Record = NULL;
576 Status = DataHub->GetNextRecord (DataHub, &MonotonicCount, NULL, &Record);
578 if (Record->DataRecordClass == EFI_DATA_RECORD_CLASS_DATA) {
    [all...]
  /external/clang/lib/AST/
CXXInheritance.cpp 141 const CXXRecordDecl *Record = this;
144 for (const auto &I : Record->bases()) {
156 !Base->isCurrentInstantiation(Record))) {
172 Record = Queue.pop_back_val(); // not actually a queue.
179 ASTContext &Context, const CXXRecordDecl *Record,
183 // The access of the path down to this record.
187 for (const auto &BaseSpec : Record->bases()) {
188 // Find the record of the base class subobjects for this type.
222 Element.Class = Record;
329 if (const RecordType *Record = PE.Base->getType()->getAs<RecordType>()
    [all...]
  /external/llvm/lib/ProfileData/
InstrProf.cpp 369 // Merge Value Profile data from Src record to this record for ValueKind.
474 uint32_t getNumValueKindsInstrProf(const void *Record) {
475 return reinterpret_cast<const InstrProfRecord *>(Record)->getNumValueKinds();
478 uint32_t getNumValueSitesInstrProf(const void *Record, uint32_t VKind) {
479 return reinterpret_cast<const InstrProfRecord *>(Record)
483 uint32_t getNumValueDataInstrProf(const void *Record, uint32_t VKind) {
484 return reinterpret_cast<const InstrProfRecord *>(Record)
517 uint32_t ValueProfData::getSize(const InstrProfRecord &Record) {
518 InstrProfRecordClosure.Record = &Record
    [all...]
  /external/llvm/unittests/ProfileData/
InstrProfTest.cpp 73 InstrProfRecord Record("foo", 0x1234, {1, 2, 3, 4});
74 NoError(Writer.addRecord(std::move(Record)));
262 InstrProfRecord Record("caller", 0x1234, {1, 2});
263 Record.reserveSites(IPVK_IndirectCallTarget, 1);
266 Record.addValueData(IPVK_IndirectCallTarget, 0, VD0, 6, nullptr);
267 NoError(Writer.addRecord(std::move(Record)));
486 // A different record for the same caller.
669 static void addValueProfData(InstrProfRecord &Record) {
670 Record.reserveSites(IPVK_IndirectCallTarget, 5);
676 Record.addValueData(IPVK_IndirectCallTarget, 0, VD0, 5, nullptr)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
pystone.py 25 record to None. This is rather inefficient and not
29 comparison of the record). Version 1.1 runs 5-10
43 class Record:
54 return Record(self.PtrComp, self.Discr, self.EnumComp,
94 PtrGlbNext = Record()
95 PtrGlb = Record()
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/MetaFileWorkspace/
MetaDataTable.py 70 # Insert a record into a table
112 Record = self.Cur.execute(SqlCommand).fetchall()
113 return Record[0][0]
117 Record = self.Cur.execute(SqlCommand).fetchall()
118 Id = Record[0][0]
176 # Insert a record into table DataModel
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Workspace/
MetaDataTable.py 70 # Insert a record into a table
109 Record = self.Cur.execute(SqlCommand).fetchall()
110 return Record[0][0]
114 Record = self.Cur.execute(SqlCommand).fetchall()
115 Id = Record[0][0]
178 # Insert a record into table File
206 # @retval FileID: The ID after record is inserted
296 # Insert a record into table DataModel
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/FrameworkHiiOnUefiHiiThunk/
UefiIfrParser.h 46 #define ONE_OF_OPTION_MAP_ENTRY_FROM_LINK(Record) CR(Record, ONE_OF_OPTION_MAP_ENTRY, Link, ONE_OF_OPTION_MAP_ENTRY_SIGNATURE)
59 #define ONE_OF_OPTION_MAP_FROM_LINK(Record) CR(Record, ONE_OF_OPTION_MAP, Link, ONE_OF_OPTION_MAP_SIGNATURE)
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Framework/Protocol/DataHub/
DataHub.h 38 // A Data Record is an EFI_DATA_RECORD_HEADER followed by RecordSize bytes of
96 OUT EFI_DATA_RECORD_HEADER **Record
  /device/linaro/bootloader/edk2/EmulatorPkg/MiscSubClassPlatformDxe/
MiscSubClassDriver.h 61 // intermediat input data for SMBIOS record
110 Add an SMBIOS record.
113 @param SmbiosHandle A unique handle will be assigned to the SMBIOS record.
114 @param Record The data for the fixed portion of the SMBIOS record. The format of the record is
119 @retval EFI_SUCCESS Record was added.
120 @retval EFI_OUT_OF_RESOURCES Record was not added due to lack of system resources.
127 IN EFI_SMBIOS_TABLE_HEADER *Record
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/DataHubDxe/
DataHub.h 56 // Runing Monotonic Count to use for each error record.
57 // Increment AFTER use in an error record.
78 // Private data structure to contain the data log. One record per
80 // EFI_DATA_ENTRY. Record is a copy of the data passed in.
87 EFI_DATA_RECORD_HEADER *Record;
123 // Filter driver will register what record guid filter should be used.
  /device/linaro/bootloader/edk2/IntelFrameworkPkg/Include/Protocol/
DataHub.h 32 // A Data Record is an EFI_DATA_RECORD_HEADER followed by RecordSize bytes of
73 Logs a data record to the system event log.
78 @param DataRecordClass This class indicates the generic type of the data record.
101 @param MonotonicCount On input, it specifies the Record to return.
102 An input of zero means to return the first record,
105 of zero, it means to return the first data record.
109 @param Record Returns a dynamically allocated memory buffer with
110 a data record that matches MonotonicCount.
112 @retval EFI_SUCCESS Data was returned in Record.
114 @retval EFI_NOT_FOUND MonotonicCount does not match any data record
    [all...]
  /device/linaro/bootloader/edk2/Nt32Pkg/MiscSubClassPlatformDxe/
MiscSubclassDriver.h 57 // intermediat input data for SMBIOS record
107 Add an SMBIOS record.
110 @param SmbiosHandle A unique handle will be assigned to the SMBIOS record.
111 @param Record The data for the fixed portion of the SMBIOS record. The format of the record is
116 @retval EFI_SUCCESS Record was added.
117 @retval EFI_OUT_OF_RESOURCES Record was not added due to lack of system resources.
124 IN EFI_SMBIOS_TABLE_HEADER *Record
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/Smm/DxeSmm/QncSmmDispatcher/QNC/
QNCSmmSx.c 41 IN DATABASE_RECORD *Record,

Completed in 1360 milliseconds

1 2 3 4 5 6 7 891011>>