Home
last modified time | relevance | path

Searched refs:TypeInfo (Results 1 – 25 of 134) sorted by relevance

123456

/netbsd-src/external/gpl3/gcc.old/dist/libphobos/libdruntime/rt/
H A Dqsort.d53 extern (C) void[] _adSort(return scope void[] a, TypeInfo ti) in _adSort()
57 return (cast(TypeInfo)ti).compare(p1, p2); in _adSort()
68 extern (C) void[] _adSort(return scope void[] a, TypeInfo ti) in version()
72 return (cast(TypeInfo)ti).compare(p1, p2); in version()
83 extern (C) void[] _adSort(return scope void[] a, TypeInfo ti) in version()
87 return (cast(TypeInfo)ti).compare(p1, p2); in version()
98 extern (C) void[] _adSort(return scope void[] a, TypeInfo ti) in version()
102 return (cast(TypeInfo)ti).compare(p1, p2); in version()
113 extern (C) void[] _adSort(return scope void[] a, TypeInfo ti) in version()
117 return (cast(TypeInfo)ti).compare(p1, p2); in version()
[all …]
H A DaaA.d113 inout(Bucket)* findSlotLookup(size_t hash, in void* pkey, in TypeInfo keyti) inout in inout()
125 void grow(in TypeInfo keyti) in grow()
135 void shrink(in TypeInfo keyti) in shrink()
228 auto extra = cast(const(TypeInfo)*)(cast(void*) sti + sizeti); in entryDtor()
233 private bool hasDtor(const TypeInfo ti) in hasDtor()
247 TypeInfo_Struct fakeEntryTI(const TypeInfo keyti, const TypeInfo valti) in fakeEntryTI()
264 auto extra = cast(TypeInfo*)(p + sizeti); in fakeEntryTI()
310 private size_t calcHash(in void* pkey, in TypeInfo keyti) in calcHash()
443 extern (C) inout(void)* _aaGetRvalueX(inout AA aa, in TypeInfo keyti, in size_t valsz, in inout()
459 extern (C) inout(void)* _aaInX(inout AA aa, in TypeInfo keyti, in void* pkey) in inout()
[all …]
H A Dlifetime.d193 inout(TypeInfo) unqualify(inout(TypeInfo) cti) pure nothrow @nogc
195 TypeInfo ti = cast() cti;
215 size_t structTypeInfoSize(const TypeInfo ti) pure nothrow @nogc
269 bool __setArrayAllocLength(ref BlkInfo info, size_t newlength, bool isshared, const TypeInfo tinext…
310 auto typeInfo = cast(TypeInfo*)(info.base + info.size - size_t.sizeof);
341 auto typeInfo = cast(TypeInfo*)(info.base + info.size - size_t.sizeof);
372 auto typeInfo = cast(TypeInfo*)(info.base + size_t.sizeof);
382 size_t __arrayAllocLength(ref BlkInfo info, const TypeInfo tinext) pure nothrow
406 size_t __arrayPad(size_t size, const TypeInfo tinext) nothrow pure @trusted
415 BlkInfo __arrayAlloc(size_t arrsize, const TypeInfo ti, const TypeInfo tinext) nothrow pure
[all …]
H A Darrayassign.d25 extern (C) void[] _d_arrayassign(TypeInfo ti, void[] from, void[] to) in _d_arrayassign()
52 extern (C) void[] _d_arrayassign_l(TypeInfo ti, void[] src, void[] dst, void* ptmp) in _d_arrayassign_l()
144 extern (C) void[] _d_arrayassign_r(TypeInfo ti, void[] src, void[] dst, void* ptmp) in _d_arrayassign_r()
170 extern (C) void[] _d_arrayctor(TypeInfo ti, void[] from, void[] to) in _d_arrayctor()
208 extern (C) void* _d_arraysetassign(void* p, void* value, int count, TypeInfo ti) in _d_arraysetassign()
235 extern (C) void* _d_arraysetctor(void* p, void* value, int count, TypeInfo ti) in _d_arraysetctor()
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/internal/
H A Dqsort.d47 extern (C) void[] _adSort(return scope void[] a, TypeInfo ti) in _adSort()
51 return (cast(TypeInfo)ti).compare(p1, p2); in _adSort()
62 extern (C) void[] _adSort(return scope void[] a, TypeInfo ti) in version()
66 return (cast(TypeInfo)ti).compare(p1, p2); in version()
77 extern (C) void[] _adSort(return scope void[] a, TypeInfo ti) in version()
81 return (cast(TypeInfo)ti).compare(p1, p2); in version()
92 extern (C) void[] _adSort(return scope void[] a, TypeInfo ti) in version()
96 return (cast(TypeInfo)ti).compare(p1, p2); in version()
107 extern (C) void[] _adSort(return scope void[] a, TypeInfo ti) in version()
111 return (cast(TypeInfo)ti).compare(p1, p2); in version()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/internal/gc/impl/proto/
H A Dgc.d21 … extern (C) void* gc_malloc( size_t sz, uint ba = 0, const scope TypeInfo = null ) pure nothrow;
22 … extern (C) void* gc_calloc( size_t sz, uint ba = 0, const scope TypeInfo = null ) pure nothrow;
23 … extern (C) BlkInfo gc_qalloc( size_t sz, uint ba = 0, const scope TypeInfo = null ) pure nothrow;
24 … gc_realloc(return scope void* p, size_t sz, uint ba = 0, const scope TypeInfo = null ) pure not…
27 …extern (C) void gc_addRange(const void* p, size_t sz, const scope TypeInfo ti = null ) nothrow @no…
102 void* malloc(size_t size, uint bits, const scope TypeInfo ti) nothrow in malloc()
108 BlkInfo qalloc(size_t size, uint bits, const scope TypeInfo ti) nothrow in qalloc()
114 void* calloc(size_t size, uint bits, const scope TypeInfo ti) nothrow in calloc()
120 void* realloc(void* p, size_t size, uint bits, const scope TypeInfo ti) nothrow in realloc()
126 size_t extend(void* p, size_t minsize, size_t maxsize, const scope TypeInfo ti) nothrow in extend()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/libdruntime/
H A Dobject.d203 TypeInfo ti; /// TypeInfo for this member
211 class TypeInfo
231 TypeInfo ti = cast(TypeInfo)o; in opCmp()
245 auto ti = cast(const TypeInfo)o; in opEquals()
286 @property inout(TypeInfo) next() nothrow pure inout @nogc { return null; } in inout() argument
314 version (X86_64) int argTypes(out TypeInfo arg1, out TypeInfo arg2) @safe nothrow in version()
325 class TypeInfo_Enum : TypeInfo
344 override @property inout(TypeInfo) next() nothrow pure inout { return base.next; } in inout() argument
354 version (X86_64) override int argTypes(out TypeInfo arg1, out TypeInfo arg2) in version()
361 TypeInfo base;
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/libdruntime/rt/typeinfo/
H A Dti_Ag.d23 override bool opEquals(Object o) { return TypeInfo.opEquals(o); } in opEquals()
63 override @property inout(TypeInfo) next() inout in inout() argument
84 override @property inout(TypeInfo) next() inout in inout() argument
96 override @property inout(TypeInfo) next() inout in inout() argument
108 override @property inout(TypeInfo) next() inout in inout() argument
126 override @property inout(TypeInfo) next() inout in inout() argument
138 override @property inout(TypeInfo) next() inout in inout() argument
150 override @property inout(TypeInfo) next() inout in inout() argument
H A Dti_Aint.d18 extern (C) void[] _adSort(void[] a, TypeInfo ti);
24 override bool opEquals(Object o) { return TypeInfo.opEquals(o); } in opEquals()
66 override @property inout(TypeInfo) next() inout in inout() argument
121 override @property inout(TypeInfo) next() inout in inout() argument
147 override @property inout(TypeInfo) next() inout in inout() argument
H A Dti_Ashort.d22 override bool opEquals(Object o) { return TypeInfo.opEquals(o); } in opEquals()
63 override @property inout(TypeInfo) next() inout in inout() argument
97 override @property inout(TypeInfo) next() inout in inout() argument
109 override @property inout(TypeInfo) next() inout in inout() argument
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/libdruntime/gc/
H A Dgcinterface.d34 TypeInfo ti; // should be tail const, but doesn't exist for references
89 void* malloc(size_t size, uint bits, const TypeInfo ti) nothrow;
94 BlkInfo qalloc(size_t size, uint bits, const TypeInfo ti) nothrow;
99 void* calloc(size_t size, uint bits, const TypeInfo ti) nothrow;
104 void* realloc(void* p, size_t size, uint bits, const TypeInfo ti) nothrow;
115 size_t extend(void* p, size_t minsize, size_t maxsize, const TypeInfo ti) nothrow;
169 void addRange(void* p, size_t sz, const TypeInfo ti) nothrow @nogc;
H A Dproxy.d115 void* gc_malloc( size_t sz, uint ba = 0, const TypeInfo ti = null ) nothrow
120 BlkInfo gc_qalloc( size_t sz, uint ba = 0, const TypeInfo ti = null ) nothrow
125 void* gc_calloc( size_t sz, uint ba = 0, const TypeInfo ti = null ) nothrow
130 void* gc_realloc( void* p, size_t sz, uint ba = 0, const TypeInfo ti = null ) nothrow
135 size_t gc_extend( void* p, size_t mx, size_t sz, const TypeInfo ti = null ) nothrow
175 void gc_addRange( void* p, size_t sz, const TypeInfo ti = null ) nothrow
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/gc/
H A Dgcinterface.d34 TypeInfo ti; // should be tail const, but doesn't exist for references
84 void* malloc(size_t size, uint bits, const TypeInfo ti) nothrow;
89 BlkInfo qalloc(size_t size, uint bits, const scope TypeInfo ti) nothrow;
94 void* calloc(size_t size, uint bits, const TypeInfo ti) nothrow;
99 void* realloc(void* p, size_t size, uint bits, const TypeInfo ti) nothrow;
110 size_t extend(void* p, size_t minsize, size_t maxsize, const TypeInfo ti) nothrow;
170 void addRange(void* p, size_t sz, const TypeInfo ti) nothrow @nogc;
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/libdruntime/gcstub/
H A Dgc.d51 extern (C) void* function(size_t, uint, const TypeInfo) gc_malloc;
52 extern (C) BlkInfo function(size_t, uint, const TypeInfo) gc_qalloc;
53 extern (C) void* function(size_t, uint, const TypeInfo) gc_calloc;
54 extern (C) void* function(void*, size_t, uint ba, const TypeInfo) gc_realloc;
55 extern (C) size_t function(void*, size_t, size_t, const TypeInfo) gc_extend;
65 extern (C) void function(void*, size_t, const TypeInfo ti) gc_addRange;
118 TypeInfo ti; // should be tail const, but doesn't exist for references
188 extern (C) void* gc_malloc( size_t sz, uint ba = 0, const TypeInfo ti = null )
201 extern (C) BlkInfo gc_qalloc( size_t sz, uint ba = 0, const TypeInfo ti = null )
214 extern (C) void* gc_calloc( size_t sz, uint ba = 0, const TypeInfo ti = null )
[all …]
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
H A Dubsan_value.h90 u16 TypeInfo; variable
119 return isIntegerTy() && (TypeInfo & 1); in isSignedIntegerTy()
122 return isIntegerTy() && !(TypeInfo & 1); in isUnsignedIntegerTy()
126 return 1 << (TypeInfo >> 1); in getIntegerBitWidth()
132 return TypeInfo; in getFloatBitWidth()
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/ubsan/
H A Dubsan_value.h89 u16 TypeInfo; variable
118 return isIntegerTy() && (TypeInfo & 1); in isSignedIntegerTy()
121 return isIntegerTy() && !(TypeInfo & 1); in isUnsignedIntegerTy()
125 return 1 << (TypeInfo >> 1); in getIntegerBitWidth()
131 return TypeInfo; in getFloatBitWidth()
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/ubsan/
H A Dubsan_value.h88 u16 TypeInfo; variable
117 return isIntegerTy() && (TypeInfo & 1); in isSignedIntegerTy()
120 return isIntegerTy() && !(TypeInfo & 1); in isUnsignedIntegerTy()
124 return 1 << (TypeInfo >> 1); in getIntegerBitWidth()
130 return TypeInfo; in getFloatBitWidth()
H A Dubsan_type_hash_itanium.cc195 std::type_info *TypeInfo; member
202 if (!Prefix->TypeInfo) in getVtablePrefix()
232 dynamic_cast<abi::__class_type_info*>(Vtable->TypeInfo); in checkDynamicType()
254 static_cast<const abi::__class_type_info*>(Vtable->TypeInfo), in getDynamicTypeInfoFromVtable()
256 return DynamicTypeInfo(Vtable->TypeInfo->__type_name, -Vtable->Offset, in getDynamicTypeInfoFromVtable()
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/rt/util/
H A Dtypeinfo.d135 TypeInfo ti;
203 private class TypeInfoGeneric(T, Base = T) : Select!(is(T == Base), TypeInfo, TypeInfoGeneric!Base)
325 …ool opEquals(const Object o) const @safe nothrow { return TypeInfo.opEquals(cast(const TypeInfo) o… in opEquals()
328 alias opEquals = TypeInfo.opEquals;
363 override @property inout(TypeInfo) next() inout in inout() argument
463 static if (__traits(hasMember, TypeInfo, "argTypes"))
464 override int argTypes(out TypeInfo arg1, out TypeInfo arg2) in argTypes()
477 static if (__traits(hasMember, TypeInfo, "argTypes"))
478 override int argTypes(out TypeInfo arg1, out TypeInfo arg2) in argTypes()
492 static if (__traits(hasMember, TypeInfo, "argTypes"))
[all …]
/netbsd-src/external/gpl3/gcc/dist/libphobos/testsuite/libphobos.init_fini/
H A Dcustom_gc.d81 void* malloc(size_t size, uint bits, const TypeInfo ti) nothrow in malloc()
86 BlkInfo qalloc(size_t size, uint bits, const scope TypeInfo ti) nothrow in qalloc()
91 void* calloc(size_t size, uint bits, const TypeInfo ti) nothrow in calloc()
96 void* realloc(void* p, size_t size, uint bits, const TypeInfo ti) nothrow in realloc()
101 size_t extend(void* p, size_t minsize, size_t maxsize, const TypeInfo ti) nothrow in extend()
154 void addRange(void* p, size_t sz, const TypeInfo ti) nothrow @nogc in addRange()
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/
H A Dobject.d553 TypeInfo ti; /// TypeInfo for this member
561 class TypeInfo
577 auto ti = cast(TypeInfo) rhs; in opCmp()
592 return opEquals(cast(TypeInfo) o); in opEquals()
595 bool opEquals(const TypeInfo ti) @safe nothrow const in opEquals()
665 class _TypeInfo_Dummy : TypeInfo
695 @property inout(TypeInfo) next() nothrow pure inout @nogc { return null; } in inout() argument
723 version (WithArgTypes) int argTypes(out TypeInfo arg1, out TypeInfo arg2) @safe nothrow in version()
736 class _TypeInfo_Dummy : TypeInfo
771 TypeInfo ti1; in version()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/internal/gc/impl/manual/
H A Dgc.d100 void* malloc(size_t size, uint bits, const TypeInfo ti) nothrow in malloc()
109 BlkInfo qalloc(size_t size, uint bits, const scope TypeInfo ti) nothrow in qalloc()
118 void* calloc(size_t size, uint bits, const TypeInfo ti) nothrow in calloc()
127 void* realloc(void* p, size_t size, uint bits, const TypeInfo ti) nothrow in realloc()
136 size_t extend(void* p, size_t minsize, size_t maxsize, const TypeInfo ti) nothrow in extend()
222 void addRange(void* p, size_t sz, const TypeInfo ti = null) nothrow @nogc
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/libdruntime/gc/impl/manual/
H A Dgc.d115 void* malloc(size_t size, uint bits, const TypeInfo ti) nothrow in malloc()
124 BlkInfo qalloc(size_t size, uint bits, const TypeInfo ti) nothrow in qalloc()
133 void* calloc(size_t size, uint bits, const TypeInfo ti) nothrow in calloc()
142 void* realloc(void* p, size_t size, uint bits, const TypeInfo ti) nothrow in realloc()
151 size_t extend(void* p, size_t minsize, size_t maxsize, const TypeInfo ti) nothrow in extend()
232 void addRange(void* p, size_t sz, const TypeInfo ti = null) nothrow @nogc
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/rt/
H A DaaA.d116 …inout(Bucket)* findSlotLookup(size_t hash, scope const void* pkey, scope const TypeInfo keyti) ino… in inout()
128 void grow(scope const TypeInfo keyti) in grow()
138 void shrink(scope const TypeInfo keyti) in shrink()
231 auto extra = cast(const(TypeInfo)*)(cast(void*) sti + sizeti); in entryDtor()
236 private bool hasDtor(const TypeInfo ti) in hasDtor()
249 private immutable(void)* getRTInfo(const TypeInfo ti) in immutable()
257 TypeInfo_Struct fakeEntryTI(ref Impl aa, const TypeInfo keyti, const TypeInfo valti) in fakeEntryTI()
293 auto extra = cast(TypeInfo*)(p + sizeti); in fakeEntryTI()
459 private size_t calcHash(scope const void* pkey, scope const TypeInfo keyti) in calcHash()
586 extern (C) inout(void)* _aaGetRvalueX(inout AA aa, scope const TypeInfo keyti, const size_t valsz, in inout()
[all …]
/netbsd-src/usr.sbin/syslogd/
H A Dsyslogd.c142 struct TypeInfo { struct
151 } TypeInfo[] = { variable
2309 if (TypeInfo[f->f_type].max_msg_length != -1 in fprintlog()
2310 && (size_t)TypeInfo[f->f_type].max_msg_length in fprintlog()
2312 linelen = TypeInfo[f->f_type].max_msg_length in fprintlog()
2407 DPRINTF(D_MISC, "Logging to %s\n", TypeInfo[f->f_type].name); in fprintlog()
2412 TypeInfo[f->f_type].name, f->f_un.f_forw.f_hname); in fprintlog()
2419 TypeInfo[f->f_type].name, in fprintlog()
2431 TypeInfo[f->f_type].name, f->f_un.f_pipe.f_pname); in fprintlog()
2496 TypeInfo[ in fprintlog()
[all...]

123456