Home
last modified time | relevance | path

Searched refs:offset_type (Results 1 – 19 of 19) sorted by relevance

/external/llvm/include/llvm/Support/
DOnDiskHashTable.h74 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/
DOnDiskHashTable.h73 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/
Dvalidate_bitwise.cpp119 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()
Dvalidate_extensions.cpp767 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/
Dvalidate_bitwise.cpp119 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()
Dvalidate_extensions.cpp767 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/
DInstrProfReader.h276 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/
DInstrProfWriter.cpp84 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
DInstrProfReader.cpp464 typedef InstrProfLookupTrait::offset_type offset_type; typedef
481 offset_type N) { in ReadData()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ProfileData/
DInstrProfReader.h299 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/
DInstrProfWriter.cpp101 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
DInstrProfReader.cpp487 using offset_type = InstrProfLookupTrait::offset_type; typedef
504 offset_type N) { in ReadData()
/external/clang/lib/Serialization/
DASTReaderInternals.h76 typedef unsigned offset_type; typedef
142 typedef unsigned offset_type; typedef
215 typedef unsigned offset_type; typedef
269 typedef unsigned offset_type; typedef
DGlobalModuleIndex.cpp77 typedef unsigned offset_type; typedef in __anon73fda0210311::IdentifierIndexReaderTrait
658 typedef unsigned offset_type; typedef in __anon73fda0210711::IdentifierIndexWriterTrait
DASTWriter.cpp1726 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/
DCacheTokens.cpp122 typedef unsigned offset_type; typedef in __anonb15f549c0111::FileEntryPTHEntryInfo
619 typedef unsigned offset_type; typedef in __anonb15f549c0611::PTHIdentifierTableTrait
/external/clang/lib/Lex/
DPTHLexer.cpp323 typedef unsigned offset_type; typedef in __anon851830e90111::PTHFileLookupCommonTrait
375 typedef unsigned offset_type; typedef in PTHManager::PTHStringLookupTrait
/external/flatbuffers/src/
Didl_gen_cpp.cpp1758 auto offset_type = in GenTable() local
1761 auto call = accessor + offset_type + ">(" + offset_str; in GenTable()
/external/mesa3d/src/compiler/glsl/
Dbuiltin_functions.cpp874 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()