Lines Matching +defs:basic +defs:offset

113 Type *Type::basic[TMAX];
209 // Set basic types
223 basic[basetab[i]] = t;
225 basic[Terror] = new TypeError();
227 tvoid = basic[Tvoid];
228 tint8 = basic[Tint8];
229 tuns8 = basic[Tuns8];
230 tint16 = basic[Tint16];
231 tuns16 = basic[Tuns16];
232 tint32 = basic[Tint32];
233 tuns32 = basic[Tuns32];
234 tint64 = basic[Tint64];
235 tuns64 = basic[Tuns64];
236 tint128 = basic[Tint128];
237 tuns128 = basic[Tuns128];
238 tfloat32 = basic[Tfloat32];
239 tfloat64 = basic[Tfloat64];
240 tfloat80 = basic[Tfloat80];
242 timaginary32 = basic[Timaginary32];
243 timaginary64 = basic[Timaginary64];
244 timaginary80 = basic[Timaginary80];
246 tcomplex32 = basic[Tcomplex32];
247 tcomplex64 = basic[Tcomplex64];
248 tcomplex80 = basic[Tcomplex80];
250 tbool = basic[Tbool];
251 tchar = basic[Tchar];
252 twchar = basic[Twchar];
253 tdchar = basic[Tdchar];
256 terror = basic[Terror];
257 tnull = basic[Tnull];
278 tsize_t = basic[Tsize_t];
279 tptrdiff_t = basic[Tptrdiff_t];
1645 StringValue *sv = stringtable.update((char *)buf.data, buf.offset);
2154 e = new IntegerExp(e->loc, v->offset, Type::tsize_t);
2323 size_t len = buf.offset;
3021 // No semantic analysis done on basic types, no need to copy
4998 /* Bugzilla 10219: Check covariant interface return with offset tweaking.
5003 int offset = 0;
5004 if (toret->isBaseOf(tret, &offset) && offset != 0)
6502 /* Bugzilla 10219: Check covariant interface return with offset tweaking.
6507 int offset = 0;
6508 if (toret->isBaseOf(tret, &offset) && offset != 0)
8128 unsigned offset = 0;
8138 if (vd->offset < offset || vd->type->size() == 0)
8152 offset = vd->offset + (unsigned)vd->type->size();
8200 unsigned offset = ~0; // dead-store initialize to prevent spurious warning
8208 //printf("%s [%d] v = (%s) %s, v->offset = %d, v->parent = %s", sym->toChars(), i, v->kind(), v->toChars(), v->offset, v->parent->kind());
8211 else if (v->offset == offset)
8226 offset = v->offset;
8283 unsigned offset = ~0; // dead-store to prevent spurious warning
8289 else if (v->offset == offset)
8314 offset = v->offset;
8921 int offset = 0;
8922 if (to->isBaseOf(this, &offset) && offset == 0 &&