/external/llvm/include/llvm/Support/ |
D | OnDiskHashTable.h | 74 typedef typename Info::offset_type offset_type; typedef 75 offset_type NumBuckets; 76 offset_type NumEntries; 81 offset_type Off; 143 offset_type Emit(raw_ostream &Out) { in Emit() 151 offset_type Emit(raw_ostream &Out, Info &InfoObj) { in Emit() 172 for (offset_type I = 0; I < NumBuckets; ++I) { in Emit() 188 const std::pair<offset_type, offset_type> &Len = in Emit() 201 assert(offset_type(DataStart - KeyStart) == Len.first && in Emit() 203 assert(offset_type(End - DataStart) == Len.second && in Emit() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/ |
D | OnDiskHashTable.h | 73 typedef typename Info::offset_type offset_type; typedef 74 offset_type NumBuckets; 75 offset_type NumEntries; 80 offset_type Off; 143 offset_type Emit(raw_ostream &Out) { in Emit() 151 offset_type Emit(raw_ostream &Out, Info &InfoObj) { in Emit() 172 for (offset_type I = 0; I < NumBuckets; ++I) { in Emit() 188 const std::pair<offset_type, offset_type> &Len = in Emit() 201 assert(offset_type(DataStart - KeyStart) == Len.first && in Emit() 203 assert(offset_type(End - DataStart) == Len.second && in Emit() [all …]
|
/external/deqp-deps/SPIRV-Tools/source/val/ |
D | validate_bitwise.cpp | 119 const uint32_t offset_type = _.GetOperandTypeId(inst, 4); in BitwisePass() local 132 if (!offset_type || !_.IsIntScalarType(offset_type)) in BitwisePass() 152 const uint32_t offset_type = _.GetOperandTypeId(inst, 3); in BitwisePass() local 160 if (!offset_type || !_.IsIntScalarType(offset_type)) in BitwisePass()
|
D | validate_extensions.cpp | 767 const uint32_t offset_type = _.GetOperandTypeId(inst, 5); in ValidateExtInst() local 768 if (!_.IsFloatVectorType(offset_type) || in ValidateExtInst() 769 _.GetDimension(offset_type) != 2 || in ValidateExtInst() 770 _.GetBitWidth(offset_type) != 32) { in ValidateExtInst() 1522 const uint32_t offset_type = _.GetOperandTypeId(inst, 4); in ValidateExtInst() local 1532 if (!_.IsIntScalarType(offset_type) || in ValidateExtInst() 1533 _.GetBitWidth(offset_type) != size_t_bit_width) { in ValidateExtInst() 1581 const uint32_t offset_type = _.GetOperandTypeId(inst, 5); in ValidateExtInst() local 1604 if (!_.IsIntScalarType(offset_type) || in ValidateExtInst() 1605 _.GetBitWidth(offset_type) != size_t_bit_width) { in ValidateExtInst() [all …]
|
/external/swiftshader/third_party/SPIRV-Tools/source/val/ |
D | validate_bitwise.cpp | 119 const uint32_t offset_type = _.GetOperandTypeId(inst, 4); in BitwisePass() local 132 if (!offset_type || !_.IsIntScalarType(offset_type)) in BitwisePass() 152 const uint32_t offset_type = _.GetOperandTypeId(inst, 3); in BitwisePass() local 160 if (!offset_type || !_.IsIntScalarType(offset_type)) in BitwisePass()
|
D | validate_extensions.cpp | 767 const uint32_t offset_type = _.GetOperandTypeId(inst, 5); in ValidateExtInst() local 768 if (!_.IsFloatVectorType(offset_type) || in ValidateExtInst() 769 _.GetDimension(offset_type) != 2 || in ValidateExtInst() 770 _.GetBitWidth(offset_type) != 32) { in ValidateExtInst() 1522 const uint32_t offset_type = _.GetOperandTypeId(inst, 4); in ValidateExtInst() local 1532 if (!_.IsIntScalarType(offset_type) || in ValidateExtInst() 1533 _.GetBitWidth(offset_type) != size_t_bit_width) { in ValidateExtInst() 1581 const uint32_t offset_type = _.GetOperandTypeId(inst, 5); in ValidateExtInst() local 1604 if (!_.IsIntScalarType(offset_type) || in ValidateExtInst() 1605 _.GetBitWidth(offset_type) != size_t_bit_width) { in ValidateExtInst() [all …]
|
/external/llvm/include/llvm/ProfileData/ |
D | InstrProfReader.h | 276 typedef uint64_t offset_type; typedef 284 static std::pair<offset_type, offset_type> 287 offset_type KeyLen = endian::readNext<offset_type, little, unaligned>(D); in ReadKeyDataLength() 288 offset_type DataLen = endian::readNext<offset_type, little, unaligned>(D); in ReadKeyDataLength() 292 StringRef ReadKey(const unsigned char *D, offset_type N) { in ReadKey() 298 data_type ReadData(StringRef K, const unsigned char *D, offset_type N);
|
/external/llvm/lib/ProfileData/ |
D | InstrProfWriter.cpp | 84 typedef uint64_t offset_type; typedef in llvm::InstrProfRecordWriterTrait 94 static std::pair<offset_type, offset_type> 99 offset_type N = K.size(); in EmitKeyDataLength() 100 LE.write<offset_type>(N); in EmitKeyDataLength() 102 offset_type M = 0; in EmitKeyDataLength() 112 LE.write<offset_type>(M); in EmitKeyDataLength() 117 void EmitKey(raw_ostream &Out, key_type_ref K, offset_type N) { in EmitKey() 121 void EmitData(raw_ostream &Out, key_type_ref, data_type_ref V, offset_type) { in EmitData() argument
|
D | InstrProfReader.cpp | 464 typedef InstrProfLookupTrait::offset_type offset_type; typedef 481 offset_type N) { in ReadData()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ProfileData/ |
D | InstrProfReader.h | 299 using offset_type = uint64_t; variable 307 static std::pair<offset_type, offset_type> 311 offset_type KeyLen = endian::readNext<offset_type, little, unaligned>(D); in ReadKeyDataLength() 312 offset_type DataLen = endian::readNext<offset_type, little, unaligned>(D); in ReadKeyDataLength() 316 StringRef ReadKey(const unsigned char *D, offset_type N) { in ReadKey() 322 data_type ReadData(StringRef K, const unsigned char *D, offset_type N);
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ProfileData/ |
D | InstrProfWriter.cpp | 101 using offset_type = uint64_t; typedef in llvm::InstrProfRecordWriterTrait 112 static std::pair<offset_type, offset_type> 118 offset_type N = K.size(); in EmitKeyDataLength() 119 LE.write<offset_type>(N); in EmitKeyDataLength() 121 offset_type M = 0; in EmitKeyDataLength() 131 LE.write<offset_type>(M); in EmitKeyDataLength() 136 void EmitKey(raw_ostream &Out, key_type_ref K, offset_type N) { in EmitKey() 140 void EmitData(raw_ostream &Out, key_type_ref, data_type_ref V, offset_type) { in EmitData() argument
|
D | InstrProfReader.cpp | 487 using offset_type = InstrProfLookupTrait::offset_type; typedef 504 offset_type N) { in ReadData()
|
/external/clang/lib/Serialization/ |
D | ASTReaderInternals.h | 76 typedef unsigned offset_type; typedef 142 typedef unsigned offset_type; typedef 215 typedef unsigned offset_type; typedef 269 typedef unsigned offset_type; typedef
|
D | GlobalModuleIndex.cpp | 77 typedef unsigned offset_type; typedef in __anon73fda0210311::IdentifierIndexReaderTrait 658 typedef unsigned offset_type; typedef in __anon73fda0210711::IdentifierIndexWriterTrait
|
D | ASTWriter.cpp | 1726 typedef unsigned offset_type; typedef in __anonf68f28d70311::HeaderFileInfoTrait 2878 typedef unsigned offset_type; typedef in __anonf68f28d70511::ASTMethodPoolTrait 3169 typedef unsigned offset_type; typedef in __anonf68f28d70611::ASTIdentifierTableTrait 3401 typedef unsigned offset_type; typedef in __anonf68f28d70711::ASTDeclContextNameLookupTrait
|
/external/clang/lib/Frontend/ |
D | CacheTokens.cpp | 122 typedef unsigned offset_type; typedef in __anonb15f549c0111::FileEntryPTHEntryInfo 619 typedef unsigned offset_type; typedef in __anonb15f549c0611::PTHIdentifierTableTrait
|
/external/clang/lib/Lex/ |
D | PTHLexer.cpp | 323 typedef unsigned offset_type; typedef in __anon851830e90111::PTHFileLookupCommonTrait 375 typedef unsigned offset_type; typedef in PTHManager::PTHStringLookupTrait
|
/external/flatbuffers/src/ |
D | idl_gen_cpp.cpp | 1758 auto offset_type = in GenTable() local 1761 auto call = accessor + offset_type + ">(" + offset_str; in GenTable()
|
/external/mesa3d/src/compiler/glsl/ |
D | builtin_functions.cpp | 874 const glsl_type *offset_type = NULL); 5229 const glsl_type *offset_type) in _texelFetch() argument 5253 if (offset_type != NULL) { in _texelFetch() 5255 new(mem_ctx) ir_variable(offset_type, "offset", ir_var_const_in); in _texelFetch()
|