Home
last modified time | relevance | path

Searched defs:T (Results 1 – 25 of 1362) sorted by relevance

12345678910>>...55

/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DODRHash.cpp262 void AddQualType(QualType T) { in AddQualType()
680 void AddQualType(QualType T) { in AddQualType()
684 void AddType(const Type *T) { in AddType()
711 static const Type *RemoveTypedef(const Type *T) { in RemoveTypedef()
753 void Visit(const Type *T) { in Visit()
759 void VisitType(const Type *T) {} in VisitType()
761 void VisitAdjustedType(const AdjustedType *T) { in VisitAdjustedType()
789 void VisitDecayedType(const DecayedType *T) { in VisitDecayedType()
795 void VisitArrayType(const ArrayType *T) { in VisitArrayType()
801 void VisitConstantArrayType(const ConstantArrayType *T) { in VisitConstantArrayType()
[all …]
H A DTypePrinter.cpp180 void TypePrinter::print(const Type *T, Qualifiers Quals, raw_ostream &OS, in print()
194 bool TypePrinter::canPrefixQualifiers(const Type *T, in canPrefixQualifiers()
285 void TypePrinter::printBefore(QualType T, raw_ostream &OS) { in printBefore()
299 void TypePrinter::printBefore(const Type *T,Qualifiers Quals, raw_ostream &OS) { in printBefore()
352 void TypePrinter::printAfter(const Type *T, Qualifiers Quals, raw_ostream &OS) { in printAfter()
362 void TypePrinter::printBuiltinBefore(const BuiltinType *T, raw_ostream &OS) { in printBuiltinBefore()
367 void TypePrinter::printBuiltinAfter(const BuiltinType *T, raw_ostream &OS) {} in printBuiltinAfter()
369 void TypePrinter::printComplexBefore(const ComplexType *T, raw_ostream &OS) { in printComplexBefore()
374 void TypePrinter::printComplexAfter(const ComplexType *T, raw_ostream &OS) { in printComplexAfter()
378 void TypePrinter::printPointerBefore(const PointerType *T, raw_ostream &OS) { in printPointerBefore()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/
H A DTargetMachineC.cpp55 LLVMTargetRef LLVMGetNextTarget(LLVMTargetRef T) { in LLVMGetNextTarget()
62 [&](const Target &T) { return T.getName() == NameRef; }); in LLVMGetTargetFromName()
66 LLVMBool LLVMGetTargetFromTriple(const char* TripleStr, LLVMTargetRef *T, in LLVMGetTargetFromTriple()
82 const char * LLVMGetTargetName(LLVMTargetRef T) { in LLVMGetTargetName()
86 const char * LLVMGetTargetDescription(LLVMTargetRef T) { in LLVMGetTargetDescription()
90 LLVMBool LLVMTargetHasJIT(LLVMTargetRef T) { in LLVMTargetHasJIT()
94 LLVMBool LLVMTargetHasTargetMachine(LLVMTargetRef T) { in LLVMTargetHasTargetMachine()
98 LLVMBool LLVMTargetHasAsmBackend(LLVMTargetRef T) { in LLVMTargetHasAsmBackend()
102 LLVMTargetMachineRef LLVMCreateTargetMachine(LLVMTargetRef T, in LLVMCreateTargetMachine()
154 void LLVMDisposeTargetMachine(LLVMTargetMachineRef T) { delete unwrap(T); } in LLVMDisposeTargetMachine()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/BinaryFormat/
H A DMachO.cpp15 static MachO::CPUSubTypeX86 getX86SubType(const Triple &T) { in getX86SubType()
26 static MachO::CPUSubTypeARM getARMSubType(const Triple &T) { in getARMSubType()
57 static MachO::CPUSubTypeARM64 getARM64SubType(const Triple &T) { in getARM64SubType()
67 static MachO::CPUSubTypePowerPC getPowerPCSubType(const Triple &T) { in getPowerPCSubType()
71 static Error unsupported(const char *Str, const Triple &T) { in unsupported()
77 Expected<uint32_t> MachO::getCPUType(const Triple &T) { in getCPUType()
95 Expected<uint32_t> MachO::getCPUSubType(const Triple &T) { in getCPUSubType()
/netbsd-src/crypto/external/bsd/openssl.old/dist/include/internal/
H A Dnumbers.h17 # define __MAXUINT__(T) ((T) -1) argument
18 # define __MAXINT__(T) ((T) ((((T) 1) << ((sizeof(T) * CHAR_BIT) - 1)) ^ __MAXUINT__(T))) argument
19 # define __MININT__(T) (-__MAXINT__(T) - 1) argument
23 # define __MAXUINT__(T) (((T) -1) + 1) argument
24 # define __MAXINT__(T) ((T) ((((T) 1) << ((sizeof(T) * CHAR_BIT) - 1)) ^ __MAXUINT__(T))) argument
25 # define __MININT__(T) (-__MAXINT__(T)) argument
29 # define __MAXINT__(T) ((T) (((((T) 1) << ((sizeof(T) * CHAR_BIT) - 2)) - 1) | (((T) 1) << ((sizeo… argument
30 # define __MAXUINT__(T) ((T) (__MAXINT__(T) | (((T) 1) << ((sizeof(T) * CHAR_BIT) - 1)))) argument
31 # define __MININT__(T) (-__MAXINT__(T)) argument
/netbsd-src/crypto/external/bsd/openssl/dist/include/internal/
H A Dnumbers.h18 # define __MAXUINT__(T) ((T) -1) argument
19 # define __MAXINT__(T) ((T) ((((T) 1) << ((sizeof(T) * CHAR_BIT) - 1)) ^ __MAXUINT__(T))) argument
20 # define __MININT__(T) (-__MAXINT__(T) - 1) argument
24 # define __MAXUINT__(T) (((T) -1) + 1) argument
25 # define __MAXINT__(T) ((T) ((((T) 1) << ((sizeof(T) * CHAR_BIT) - 1)) ^ __MAXUINT__(T))) argument
26 # define __MININT__(T) (-__MAXINT__(T)) argument
30 # define __MAXINT__(T) ((T) (((((T) 1) << ((sizeof(T) * CHAR_BIT) - 2)) - 1) | (((T) 1) << ((sizeo… argument
31 # define __MAXUINT__(T) ((T) (__MAXINT__(T) | (((T) 1) << ((sizeof(T) * CHAR_BIT) - 1)))) argument
32 # define __MININT__(T) (-__MAXINT__(T)) argument
/netbsd-src/external/gpl3/gcc.old/dist/include/
H A Dlibiberty.h357 #define XALLOCA(T) ((T *) alloca (sizeof (T))) argument
358 #define XNEW(T) ((T *) xmalloc (sizeof (T))) argument
359 #define XCNEW(T) ((T *) xcalloc (1, sizeof (T))) argument
360 #define XDUP(T, P) ((T *) xmemdup ((P), sizeof (T), sizeof (T))) argument
365 #define XALLOCAVEC(T, N) ((T *) alloca (sizeof (T) * (N))) argument
366 #define XNEWVEC(T, N) ((T *) xmalloc (sizeof (T) * (N))) argument
367 #define XCNEWVEC(T, N) ((T *) xcalloc ((N), sizeof (T))) argument
368 #define XDUPVEC(T, P, N) ((T *) xmemdup ((P), sizeof (T) * (N), sizeof (T) * (N))) argument
369 #define XRESIZEVEC(T, P, N) ((T *) xrealloc ((void *) (P), sizeof (T) * (N))) argument
374 #define XALLOCAVAR(T, S) ((T *) alloca ((S))) argument
[all …]
/netbsd-src/external/gpl3/gcc/dist/include/
H A Dlibiberty.h357 #define XALLOCA(T) ((T *) alloca (sizeof (T))) argument
358 #define XNEW(T) ((T *) xmalloc (sizeof (T))) argument
359 #define XCNEW(T) ((T *) xcalloc (1, sizeof (T))) argument
360 #define XDUP(T, P) ((T *) xmemdup ((P), sizeof (T), sizeof (T))) argument
365 #define XALLOCAVEC(T, N) ((T *) alloca (sizeof (T) * (N))) argument
366 #define XNEWVEC(T, N) ((T *) xmalloc (sizeof (T) * (N))) argument
367 #define XCNEWVEC(T, N) ((T *) xcalloc ((N), sizeof (T))) argument
368 #define XDUPVEC(T, P, N) ((T *) xmemdup ((P), sizeof (T) * (N), sizeof (T) * (N))) argument
369 #define XRESIZEVEC(T, P, N) ((T *) xrealloc ((void *) (P), sizeof (T) * (N))) argument
374 #define XALLOCAVAR(T, S) ((T *) alloca ((S))) argument
[all …]
/netbsd-src/external/gpl3/binutils/dist/include/
H A Dlibiberty.h357 #define XALLOCA(T) ((T *) alloca (sizeof (T))) argument
358 #define XNEW(T) ((T *) xmalloc (sizeof (T))) argument
359 #define XCNEW(T) ((T *) xcalloc (1, sizeof (T))) argument
360 #define XDUP(T, P) ((T *) xmemdup ((P), sizeof (T), sizeof (T))) argument
365 #define XALLOCAVEC(T, N) ((T *) alloca (sizeof (T) * (N))) argument
366 #define XNEWVEC(T, N) ((T *) xmalloc (sizeof (T) * (N))) argument
367 #define XCNEWVEC(T, N) ((T *) xcalloc ((N), sizeof (T))) argument
368 #define XDUPVEC(T, P, N) ((T *) xmemdup ((P), sizeof (T) * (N), sizeof (T) * (N))) argument
369 #define XRESIZEVEC(T, P, N) ((T *) xrealloc ((void *) (P), sizeof (T) * (N))) argument
374 #define XALLOCAVAR(T, S) ((T *) alloca ((S))) argument
[all …]
/netbsd-src/external/gpl3/binutils.old/dist/include/
H A Dlibiberty.h357 #define XALLOCA(T) ((T *) alloca (sizeof (T))) argument
358 #define XNEW(T) ((T *) xmalloc (sizeof (T))) argument
359 #define XCNEW(T) ((T *) xcalloc (1, sizeof (T))) argument
360 #define XDUP(T, P) ((T *) xmemdup ((P), sizeof (T), sizeof (T))) argument
365 #define XALLOCAVEC(T, N) ((T *) alloca (sizeof (T) * (N))) argument
366 #define XNEWVEC(T, N) ((T *) xmalloc (sizeof (T) * (N))) argument
367 #define XCNEWVEC(T, N) ((T *) xcalloc ((N), sizeof (T))) argument
368 #define XDUPVEC(T, P, N) ((T *) xmemdup ((P), sizeof (T) * (N), sizeof (T) * (N))) argument
369 #define XRESIZEVEC(T, P, N) ((T *) xrealloc ((void *) (P), sizeof (T) * (N))) argument
374 #define XALLOCAVAR(T, S) ((T *) alloca ((S))) argument
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/
H A DCXType.cpp84 static CXTypeKind GetTypeKind(QualType T) { in GetTypeKind()
126 CXType cxtype::MakeCXType(QualType T, CXTranslationUnit TU) { in MakeCXType()
225 QualType T = cxcursor::getCursorExpr(C)->getType(); in clang_getCursorType() local
252 QualType T in clang_getCursorType() local
258 QualType T = Context.getObjCInterfaceType(getCursorObjCClassRef(C).first); in clang_getCursorType() local
263 QualType T = Context.getTypeDeclType(getCursorTypeRef(C).first); in clang_getCursorType() local
292 QualType T = GetQualType(CT); in clang_getTypeSpelling() local
314 QualType T = TD->getUnderlyingType(); in clang_getTypedefDeclUnderlyingType() local
332 QualType T = TD->getIntegerType(); in clang_getEnumDeclIntegerType() local
393 QualType T = GetQualType(CT); in clang_getCanonicalType() local
[all …]
/netbsd-src/sys/external/bsd/drm2/linux/
H A Dlinux_kthread.c99 struct task_struct *T; in _linux_kthread() local
110 struct task_struct *T = cookie; in linux_kthread_start() local
135 struct task_struct *T; in kthread_alloc() local
157 kthread_free(struct task_struct *T) in kthread_free()
171 struct task_struct *T; in kthread_run() local
186 kthread_stop(struct task_struct *T) in kthread_stop()
224 struct task_struct *T = linux_kthread(); in kthread_should_stop() local
235 kthread_park(struct task_struct *T) in kthread_park()
271 kthread_unpark(struct task_struct *T) in kthread_unpark()
281 __kthread_should_park(struct task_struct *T) in __kthread_should_park()
[all …]
/netbsd-src/external/bsd/libarchive/dist/libarchive/
H A Darchive_rb.h48 #define ARCHIVE_RB_TREE_MIN(T) \ argument
50 #define ARCHIVE_RB_TREE_MAX(T) \ argument
52 #define ARCHIVE_RB_TREE_NEXT(T, N) \ argument
54 #define ARCHIVE_RB_TREE_PREV(T, N) \ argument
56 #define ARCHIVE_RB_TREE_FOREACH(N, T) \ argument
59 #define ARCHIVE_RB_TREE_FOREACH_REVERSE(N, T) \ argument
62 #define ARCHIVE_RB_TREE_FOREACH_SAFE(N, T, S) \ argument
66 #define ARCHIVE_RB_TREE_FOREACH_REVERSE_SAFE(N, T, S) \ argument
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/internal/
H A Dswitch_.d21 int __switch(T, caseLabels...)(/*in*/ const scope T[] condition) pure nothrow @safe @nogc in __switch() argument
67 immutable T[][caseLabels.length] result = cast(immutable)(items[]); in __switch() local
70 static immutable T[][caseLabels.length] cases = asImmutable([caseLabels]); in __switch() local
78 private int __switchSearch(T)(/*in*/ const scope T[][] cases, /*in*/ const scope T[] condition) pur… in __switchSearch() argument
109 static void testSwitch(T)() in testSwitch() argument
H A Dtraits.d13 template Fields(T) in Fields() argument
23 T trustedCast(T, U)(auto ref U u) @trusted pure nothrow in trustedCast() argument
39 template BaseElemOf(T) in BaseElemOf() argument
57 template ModifyTypePreservingTQ(alias Modifier, T) in ModifyTypePreservingTQ() argument
84 template substInout(T) in substInout() argument
102 private template substInoutForm(T) in substInoutForm() argument
154 @property T rvalueOf(T)(T val) { return val; } in rvalueOf() argument
169 template hasOuterMember(T...) in hasOuterMember() argument
182 template dtorIsNothrow(T) in dtorIsNothrow() argument
188 template allSatisfy(alias F, T...) in allSatisfy() argument
[all …]
/netbsd-src/external/gpl2/groff/dist/src/include/
H A Dptable.h34 #define PTABLE(T) name2(T,_ptable) argument
35 #define PASSOC(T) name2(T,_passoc) argument
36 #define PTABLE_ITERATOR(T) name2(T,_ptable_iterator) argument
41 #define declare_ptable(T) \ argument
77 #define implement_ptable(T) \ argument
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DASTNodeTraverser.h157 void Visit(QualType T) { in Visit()
168 void Visit(const Type *T) { in Visit()
259 else if (const auto *T = N.get<Type>()) in Visit() local
265 else if (const auto *T = N.get<TemplateArgument>()) in Visit() local
317 void VisitComplexType(const ComplexType *T) { Visit(T->getElementType()); } in VisitComplexType()
318 void VisitLocInfoType(const LocInfoType *T) { in VisitLocInfoType()
321 void VisitPointerType(const PointerType *T) { Visit(T->getPointeeType()); } in VisitPointerType()
322 void VisitBlockPointerType(const BlockPointerType *T) { in VisitBlockPointerType()
325 void VisitReferenceType(const ReferenceType *T) { in VisitReferenceType()
328 void VisitMemberPointerType(const MemberPointerType *T) { in VisitMemberPointerType()
[all …]
/netbsd-src/external/gpl3/gdb/dist/gdb/testsuite/gdb.go/
H A Dmethods.go5 type T struct { i int } struct
7 func (t T) Foo () {
11 func (t *T) Bar () {
/netbsd-src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.go/
H A Dmethods.go5 type T struct { i int } argument
7 func (t T) Foo () {
11 func (t *T) Bar () {
/netbsd-src/external/apache2/llvm/dist/llvm/bindings/go/llvm/
H A Dir_test.go20 func testAttribute(t *testing.T, name string) {
48 func TestAttributes(t *testing.T) {
96 func TestDebugLoc(t *testing.T) {
139 func TestSubtypes(t *testing.T) {
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dvec.h276 va_heap::reserve (vec<T, va_heap, vl_embed> *&v, unsigned reserve, bool exact in reserve()
307 va_heap::release (vec<T, va_heap, vl_embed> *&v) in release()
348 va_gc::release (vec<T, A, vl_embed> *&v) in release()
363 va_gc::reserve (vec<T, A, vl_embed> *&v, unsigned reserve, bool exact in reserve()
424 T* begin (vec<T,A,L> *v) { return v ? v->begin () : nullptr; } in begin()
426 T* end (vec<T,A,L> *v) { return v ? v->end () : nullptr; } in end()
428 const T* begin (const vec<T,A,L> *v) { return v ? v->begin () : nullptr; } in begin()
430 const T* end (const vec<T,A,L> *v) { return v ? v->end () : nullptr; } in end()
463 debug_helper (vec<T, va_gc> &ref) in debug_helper()
477 #define DEFINE_DEBUG_VEC(T) \ argument
/netbsd-src/external/gpl3/gcc.old/dist/libgcc/config/mips/
H A Dmips16.S106 #define DELAYt(T, OPCODE, OP2) \ argument
114 #define DELAYf(T, OPCODE, OP2) DELAYt (T, OPCODE, OP2) argument
117 #define DELAYf(T, OPCODE, OP2) OPCODE, OP2; jr T argument
162 #define MOVE_SF_RET(D, T) DELAY##D (T, m##D##c1 $2,$f0) argument
163 #define MOVE_SI_RET(D, T) DELAY##D (T, m##D##c1 $2,$f0) argument
166 #define MOVE_SC_RET(D, T) MERGE_GPR##D ($2, $f0, $f1); jr T argument
170 #define MOVE_SC_RET(D, T) MERGE_GPR##D ($2, $f1, $f0); jr T argument
172 #define MOVE_SC_RET(D, T) m##D##c1 $2,$f0; DELAY##D (T, m##D##c1 $3,$f2) argument
189 #define MOVE_DF_RET(D, T) DELAY##D (T, dm##D##c1 $2,$f0) argument
190 #define MOVE_DC_RET(D, T) dm##D##c1 $3,$f1; MOVE_DF_RET (D, T) argument
[all …]
/netbsd-src/external/gpl3/gcc/dist/libgcc/config/mips/
H A Dmips16.S106 #define DELAYt(T, OPCODE, OP2) \ argument
114 #define DELAYf(T, OPCODE, OP2) DELAYt (T, OPCODE, OP2) argument
117 #define DELAYf(T, OPCODE, OP2) OPCODE, OP2; jr T argument
162 #define MOVE_SF_RET(D, T) DELAY##D (T, m##D##c1 $2,$f0) argument
163 #define MOVE_SI_RET(D, T) DELAY##D (T, m##D##c1 $2,$f0) argument
166 #define MOVE_SC_RET(D, T) MERGE_GPR##D ($2, $f0, $f1); jr T argument
170 #define MOVE_SC_RET(D, T) MERGE_GPR##D ($2, $f1, $f0); jr T argument
172 #define MOVE_SC_RET(D, T) m##D##c1 $2,$f0; DELAY##D (T, m##D##c1 $3,$f2) argument
189 #define MOVE_DF_RET(D, T) DELAY##D (T, dm##D##c1 $2,$f0) argument
190 #define MOVE_DC_RET(D, T) dm##D##c1 $3,$f1; MOVE_DF_RET (D, T) argument
[all …]
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/math/
H A Dtrigonometry.d308 private T tanImpl(T)(T x) @safe pure nothrow @nogc in tanImpl() argument
320 static immutable T[6] P = [ in tanImpl() local
328 static immutable T[7] Q = [ in tanImpl() local
348 static immutable T[3] P = [ in tanImpl() local
353 static immutable T[5] Q = [ in tanImpl() local
367 static immutable T[6] P = [ in tanImpl() local
449 static void testTan(T)() in testTan() argument
467 static immutable T[2][] vals = in testTan() local
676 private T atanImpl(T)(T x) @safe pure nothrow @nogc in atanImpl() argument
687 static immutable T[9] P = [ in atanImpl() local
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DTypeLocBuilder.h68 TypeSpecTypeLoc pushTypeSpec(QualType T) { in pushTypeSpec()
85 void TypeWasModifiedSafely(QualType T) { in TypeWasModifiedSafely()
93 template <class TyLocType> TyLocType push(QualType T) { in push()
101 TypeSourceInfo *getTypeSourceInfo(ASTContext& Context, QualType T) { in getTypeSourceInfo()
114 TypeLoc getTypeLocInContext(ASTContext &Context, QualType T) { in getTypeLocInContext()
138 TypeLoc getTemporaryTypeLoc(QualType T) { in getTemporaryTypeLoc()

12345678910>>...55