Home
last modified time | relevance | path

Searched refs:tf1 (Results 1 – 14 of 14) sorted by relevance

/netbsd/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dimportc.d275 bool cFuncEquivalence(TypeFunction tf1, TypeFunction tf2) in cFuncEquivalence() argument
278 if (tf1.equals(tf2)) in cFuncEquivalence()
281 if (tf1.linkage != tf2.linkage) in cFuncEquivalence()
285 if (tf1.parameterList.length == 0 && tf2.parameterList.length == 0) in cFuncEquivalence()
288 if (!cTypeEquivalence(tf1.next, tf2.next)) in cFuncEquivalence()
291 if (tf1.parameterList.length != tf2.parameterList.length) in cFuncEquivalence()
294 …if (!tf1.parameterList.hasIdentifierList && !tf2.parameterList.hasIdentifierList) // if both are p… in cFuncEquivalence()
296 if (tf1.parameterList.varargs != tf2.parameterList.varargs) in cFuncEquivalence()
300 foreach (i, fparam ; tf1.parameterList) in cFuncEquivalence()
H A Dsemantic2.d380 auto tf1 = cast(TypeFunction) f1.type; in visit() local
422 if (tf1.mod != tf2.mod || ((f1.storage_class ^ f2.storage_class) & STC.static_)) in visit()
425 const sameAttr = tf1.attributesEqual(tf2); in visit()
426 const sameParams = tf1.parameterList == tf2.parameterList; in visit()
H A Ddcast.c2723 TypeFunction *tf1 = (TypeFunction *)t1n; in typeMerge() local
2725 tf1->purityLevel(); in typeMerge()
2728 TypeFunction *d = (TypeFunction *)tf1->syntaxCopy(); in typeMerge()
2730 if (tf1->purity != tf2->purity) in typeMerge()
2734 d->isnothrow = (tf1->isnothrow && tf2->isnothrow); in typeMerge()
2735 d->isnogc = (tf1->isnogc && tf2->isnogc); in typeMerge()
2737 if (tf1->trust == tf2->trust) in typeMerge()
2738 d->trust = tf1->trust; in typeMerge()
2739 else if (tf1->trust <= TRUSTsystem || tf2->trust <= TRUSTsystem) in typeMerge()
H A Ddcast.d3007 TypeFunction tf1 = t1n.isTypeFunction(); in typeMerge() local
3009 tf1.purityLevel(); in typeMerge()
3012 TypeFunction d = tf1.syntaxCopy(); in typeMerge()
3014 if (tf1.purity != tf2.purity) in typeMerge()
3018 d.isnothrow = (tf1.isnothrow && tf2.isnothrow); in typeMerge()
3019 d.isnogc = (tf1.isnogc && tf2.isnogc); in typeMerge()
3021 if (tf1.trust == tf2.trust) in typeMerge()
3022 d.trust = tf1.trust; in typeMerge()
3023 else if (tf1.trust <= TRUST.system || tf2.trust <= TRUST.system) in typeMerge()
H A Dfunc.d3200 TypeFunction tf1 = m.lastf.type.toTypeFunction(); in resolveFuncCall() local
3202 const(char)* lastprms = parametersTypeToChars(tf1.parameterList); in resolveFuncCall()
3205 const(char)* mod1 = prependSpace(MODtoChars(tf1.mod)); in resolveFuncCall()
H A Dfunc.c3611 TypeFunction *tf1 = m.lastf->type->toTypeFunction(); in resolveFuncCall() local
3613 const char *lastprms = parametersTypeToChars(tf1->parameters, tf1->varargs); in resolveFuncCall()
H A Ddtemplate.c2497 TypeFunction *tf1 = (TypeFunction *)fd->type; in functionResolve() local
2498 assert(tf1->ty == Tfunction); in functionResolve()
2501 MATCH c1 = tf1->callMatch(tthis_fd, fargs); in functionResolve()
H A Ddtemplate.d3015 auto tf1 = fd.type.isTypeFunction(); in applyTemplate() local
3017 MATCH c1 = tf1.callMatch(tthis_fd, fargs_, 0, null, sc); in applyTemplate()
/netbsd/external/gpl2/diffutils/dist/src/
H A Ded.c140 long tf0, tl0, tf1, tl1; in print_rcs_hunk() local
164 translate_range (&files[1], f1, l1, &tf1, &tl1); in print_rcs_hunk()
165 fprintf (outfile, "%ld %ld\n", tl0, tf1 <= tl1 ? tl1 - tf1 + 1 : 1); in print_rcs_hunk()
/netbsd/external/gpl2/xcvs/dist/diff/
H A Ded.c163 int tf0, tl0, tf1, tl1; local
189 translate_range (&files[1], f1, l1, &tf1, &tl1);
192 (tl1 >= tf1 ? tl1 - tf1 + 1 : 1));
/netbsd/crypto/external/bsd/heimdal/dist/lib/asn1/
H A Dcheck-gen.c476 TicketFlags tf1, tf2, tf3, tf4; in test_bit_string_rfc1510() local
478 memset(&tf1, 0, sizeof(tf1)); in test_bit_string_rfc1510()
479 tf1.reserved = 1; in test_bit_string_rfc1510()
480 tests[0].val = &tf1; in test_bit_string_rfc1510()
/netbsd/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Ddcast.c2723 TypeFunction *tf1 = (TypeFunction *)t1n; in typeMerge() local
2725 tf1->purityLevel(); in typeMerge()
2728 TypeFunction *d = (TypeFunction *)tf1->syntaxCopy(); in typeMerge()
2730 if (tf1->purity != tf2->purity) in typeMerge()
2734 d->isnothrow = (tf1->isnothrow && tf2->isnothrow); in typeMerge()
2735 d->isnogc = (tf1->isnogc && tf2->isnogc); in typeMerge()
2737 if (tf1->trust == tf2->trust) in typeMerge()
2738 d->trust = tf1->trust; in typeMerge()
2739 else if (tf1->trust <= TRUSTsystem || tf2->trust <= TRUSTsystem) in typeMerge()
H A Dfunc.c3611 TypeFunction *tf1 = m.lastf->type->toTypeFunction(); in resolveFuncCall() local
3613 const char *lastprms = parametersTypeToChars(tf1->parameters, tf1->varargs); in resolveFuncCall()
H A Ddtemplate.c2497 TypeFunction *tf1 = (TypeFunction *)fd->type; in functionResolve() local
2498 assert(tf1->ty == Tfunction); in functionResolve()
2501 MATCH c1 = tf1->callMatch(tthis_fd, fargs); in functionResolve()