Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.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 …]
/third_party/rust/crates/unicode-width/scripts/
Dunicode.py255 self, entry_groups, low_bit: BitPos, cap_bit: BitPos, offset_type: OffsetType
263 self.offset_type = offset_type
282 assert index < (1 << int(self.offset_type))
299 entries_per_byte = 8 // int(self.offset_type)
304 byte |= self.entries[i + j] << (j * int(self.offset_type))
318 for (low_bit, cap_bit, offset_type) in table_cfgs:
319 table = Table(entry_groups, low_bit, cap_bit, offset_type)
/third_party/spirv-tools/source/val/
Dvalidate_bitwise.cpp146 const uint32_t offset_type = _.GetOperandTypeId(inst, 4); in BitwisePass() local
158 if (!offset_type || !_.IsIntScalarType(offset_type)) in BitwisePass()
173 const uint32_t offset_type = _.GetOperandTypeId(inst, 3); in BitwisePass() local
180 if (!offset_type || !_.IsIntScalarType(offset_type)) in BitwisePass()
Dvalidate_extensions.cpp1483 const uint32_t offset_type = _.GetOperandTypeId(inst, 5); in ValidateExtInst() local
1484 if (!_.IsFloatVectorType(offset_type) || in ValidateExtInst()
1485 _.GetDimension(offset_type) != 2 || in ValidateExtInst()
1486 _.GetBitWidth(offset_type) != 32) { in ValidateExtInst()
2238 const uint32_t offset_type = _.GetOperandTypeId(inst, 4); in ValidateExtInst() local
2248 if (!_.IsIntScalarType(offset_type) || in ValidateExtInst()
2249 _.GetBitWidth(offset_type) != size_t_bit_width) { in ValidateExtInst()
2300 const uint32_t offset_type = _.GetOperandTypeId(inst, 5); in ValidateExtInst() local
2323 if (!_.IsIntScalarType(offset_type) || in ValidateExtInst()
2324 _.GetBitWidth(offset_type) != size_t_bit_width) { in ValidateExtInst()
[all …]
/third_party/skia/third_party/externals/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.cpp1454 const uint32_t offset_type = _.GetOperandTypeId(inst, 5); in ValidateExtInst() local
1455 if (!_.IsFloatVectorType(offset_type) || in ValidateExtInst()
1456 _.GetDimension(offset_type) != 2 || in ValidateExtInst()
1457 _.GetBitWidth(offset_type) != 32) { in ValidateExtInst()
2209 const uint32_t offset_type = _.GetOperandTypeId(inst, 4); in ValidateExtInst() local
2219 if (!_.IsIntScalarType(offset_type) || in ValidateExtInst()
2220 _.GetBitWidth(offset_type) != size_t_bit_width) { in ValidateExtInst()
2271 const uint32_t offset_type = _.GetOperandTypeId(inst, 5); in ValidateExtInst() local
2294 if (!_.IsIntScalarType(offset_type) || in ValidateExtInst()
2295 _.GetBitWidth(offset_type) != size_t_bit_width) { in ValidateExtInst()
[all …]
/third_party/skia/third_party/externals/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.cpp1454 const uint32_t offset_type = _.GetOperandTypeId(inst, 5); in ValidateExtInst() local
1455 if (!_.IsFloatVectorType(offset_type) || in ValidateExtInst()
1456 _.GetDimension(offset_type) != 2 || in ValidateExtInst()
1457 _.GetBitWidth(offset_type) != 32) { in ValidateExtInst()
2209 const uint32_t offset_type = _.GetOperandTypeId(inst, 4); in ValidateExtInst() local
2219 if (!_.IsIntScalarType(offset_type) || in ValidateExtInst()
2220 _.GetBitWidth(offset_type) != size_t_bit_width) { in ValidateExtInst()
2271 const uint32_t offset_type = _.GetOperandTypeId(inst, 5); in ValidateExtInst() local
2294 if (!_.IsIntScalarType(offset_type) || in ValidateExtInst()
2295 _.GetBitWidth(offset_type) != size_t_bit_width) { in ValidateExtInst()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/
DInstrProfReader.h316 using offset_type = uint64_t; variable
324 static std::pair<offset_type, offset_type>
328 offset_type KeyLen = endian::readNext<offset_type, little, unaligned>(D); in ReadKeyDataLength()
329 offset_type DataLen = endian::readNext<offset_type, little, unaligned>(D); in ReadKeyDataLength()
333 StringRef ReadKey(const unsigned char *D, offset_type N) { in ReadKey()
339 data_type ReadData(StringRef K, const unsigned char *D, offset_type N);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/
DInstrProfWriter.cpp100 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.cpp515 using offset_type = InstrProfLookupTrait::offset_type; typedef
532 offset_type N) { in ReadData()
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
Dcord_rep_ring.h84 using offset_type = uint32_t; variable
148 offset_type const& entry_data_offset(index_type index) const { in entry_data_offset()
354 using Layout = container_internal::Layout<pos_type, CordRep*, offset_type>;
401 offset_type* entry_data_offset() { in entry_data_offset()
Dcord_rep_ring.cc105 entry_data_offset()[index] += static_cast<offset_type>(n); in AddDataOffset()
122 rep_->entry_data_offset()[pos_] = static_cast<offset_type>(offset); in Add()
323 entry_data_offset()[head_] = static_cast<offset_type>(data_offset); in GetPrependBuffer()
337 rep->entry_data_offset()[0] = static_cast<offset_type>(offset); in CreateFromLeaf()
454 rep->entry_data_offset()[back] = static_cast<offset_type>(offset); in AppendLeaf()
490 rep->entry_data_offset()[head] = static_cast<offset_type>(offset); in PrependLeaf()
/third_party/node/deps/v8/src/compiler/
Descape-analysis-reducer.cc324 Type offset_type = op_typer.NumberAdd( in Finalize() local
327 NodeProperties::SetType(offset, offset_type); in Finalize()
336 offset_type, in Finalize()
/third_party/libabigail/src/
Dabg-dwarf-reader.cc151 struct offset_type struct
156 offset_type() in offset_type() function
161 offset_type(die_source source, Dwarf_Off offset) in offset_type() argument
166 offset_type(Dwarf_Off offset) in offset_type() argument
171 bool operator==(const offset_type& o) const in operator ==() argument
179 typedef std::pair<offset_type, offset_type> offset_pair_type;
185 operator()(const offset_type& p) const in operator ()()
194 operator()(const std::pair<offset_type, offset_type>& p) const in operator ()()
205 typedef unordered_set<offset_type, offset_hash> offset_set_type;
208 typedef unordered_set<std::pair<offset_type,
[all …]
/third_party/mesa3d/src/compiler/spirv/
Dspirv_to_nir.c5613 struct vtn_type *offset_type = vtn_get_value_type(b, w[1]); in vtn_handle_write_packed_primitive_indices() local
5614 vtn_fail_if(offset_type->base_type != vtn_base_type_scalar || in vtn_handle_write_packed_primitive_indices()
5615 offset_type->type != glsl_uint_type(), in vtn_handle_write_packed_primitive_indices()
/third_party/skia/third_party/externals/spirv-cross/
Dspirv_msl.cpp9837 const SPIRType *offset_type = nullptr; in to_function_args() local
9842 offset_type = &expression_type(args.coffset); in to_function_args()
9848 offset_type = &expression_type(args.offset); in to_function_args()
9858 if (offset_type->vecsize > 1) in to_function_args()
9865 if (offset_type->vecsize > 2) in to_function_args()
9872 if (offset_type->vecsize > 3) in to_function_args()
/third_party/mesa3d/src/compiler/glsl/
Dbuiltin_functions.cpp1219 const glsl_type *offset_type = NULL,
7313 const glsl_type *offset_type, in _texelFetch() argument
7340 if (offset_type != NULL) { in _texelFetch()
7342 new(mem_ctx) ir_variable(offset_type, "offset", ir_var_const_in); in _texelFetch()
/third_party/libabigail/
DChangeLog1637 offset_type that also encapsulates the source of the offset is now