Lines Matching defs:mt
57 MetaType* mt = mc->types_[i];
58 SerializeMetaType(mt);
59 mc->types_[i] = reinterpret_cast<MetaType*>(SerializeAdjust(mt));
133 void MetadataSerializer::SerializeMetaType(MetaType* mt)
135 if (mt == nullptr) {
138 mt->nestedTypeIndexes_ = reinterpret_cast<int*>(SerializeAdjust(mt->nestedTypeIndexes_));
186 MetaType* mt = mc->types_[i];
187 DeserializeMetaType(mt);
262 void MetadataSerializer::DeserializeMetaType(MetaType* mt)
264 if (mt == nullptr) {
267 mt->nestedTypeIndexes_ = reinterpret_cast<int*>(DeserializeAdjust(mt->nestedTypeIndexes_));