| /netbsd-src/sys/arch/sparc64/sparc64/ |
| H A D | vm_machdep.c | 186 struct trapframe *tf2; in cpu_lwp_fork() local 237 tf2 = l2->l_md.md_tf = (struct trapframe *) in cpu_lwp_fork() 238 ((long)npcb + USPACE - sizeof(*tf2)); in cpu_lwp_fork() 241 *tf2 = *(struct trapframe *)((long)opcb + USPACE - sizeof(*tf2)); in cpu_lwp_fork() 247 tf2->tf_out[6] = (uint64_t)(u_long)stack + stacksize; in cpu_lwp_fork() 254 tf2->tf_tstate = (ASI_PRIMARY_NO_FAULT<<TSTATE_ASI_SHIFT) | in cpu_lwp_fork() 262 tf2->tf_out[0] = 0; in cpu_lwp_fork() 263 tf2->tf_out[1] = 1; in cpu_lwp_fork() 264 tf2->tf_tstate &= ~TSTATE_CCR; in cpu_lwp_fork()
|
| /netbsd-src/sys/arch/sparc/sparc/ |
| H A D | vm_machdep.c | 194 struct trapframe *tf2; in cpu_lwp_fork() local 251 tf2 = l2->l_md.md_tf = (struct trapframe *) in cpu_lwp_fork() 252 ((int)npcb + USPACE - sizeof(*tf2)); in cpu_lwp_fork() 255 *tf2 = *(struct trapframe *)((int)opcb + USPACE - sizeof(*tf2)); in cpu_lwp_fork() 261 tf2->tf_out[6] = (u_int)stack + stacksize; in cpu_lwp_fork() 273 tf2->tf_out[0] = 0; in cpu_lwp_fork() 274 tf2->tf_out[1] = 1; in cpu_lwp_fork()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
| H A D | importc.d | 275 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() 303 Type t2 = tf2.parameterList[i].type; in cFuncEquivalence()
|
| H A D | semantic2.d | 419 auto tf2 = cast(TypeFunction) f2.type; in visit() 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() 453 parametersTypeToChars(tf2.parameterList), in visit()
|
| H A D | dcast.d | 3008 TypeFunction tf2 = t2n.isTypeFunction(); in typeMerge() local 3010 tf2.purityLevel(); 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() 3023 else if (tf1.trust <= TRUST.system || tf2.trust <= TRUST.system) in typeMerge()
|
| H A D | func.d | 3201 TypeFunction tf2 = m.nextf.type.toTypeFunction(); in resolveFuncCall() local 3203 const(char)* nextprms = parametersTypeToChars(tf2.parameterList); in resolveFuncCall() 3206 const(char)* mod2 = prependSpace(MODtoChars(tf2.mod)); in resolveFuncCall()
|
| H A D | dtemplate.d | 3016 auto tf2 = m.lastf.type.isTypeFunction(); in applyTemplate() local 3018 MATCH c2 = tf2.callMatch(tthis_best, fargs_, 0, null, sc); in applyTemplate()
|
| /netbsd-src/tests/bin/dd/ |
| H A D | t_dd.sh | 117 echo -n TEST1234 > tf2 120 atf_check -s exit:0 -e ignore -o match:'^TEST$' dd if=tf2 121 eval $(stat -s tf2)
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/lib/asn1/ |
| H A D | check-gen.c | 476 TicketFlags tf1, tf2, tf3, tf4; in test_bit_string_rfc1510() local 482 memset(&tf2, 0, sizeof(tf2)); in test_bit_string_rfc1510() 483 tf2.forwardable = 1; in test_bit_string_rfc1510() 484 tf2.pre_authent = 1; in test_bit_string_rfc1510() 485 tests[1].val = &tf2; in test_bit_string_rfc1510()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/config/s390/ |
| H A D | vector.md | 2498 (define_expand "float<mode>tf2" 2501 "HAVE_TF (float<mode>tf2)" 2502 { EXPAND_TF (float<mode>tf2, 2); }) 2529 (define_expand "floatuns<mode>tf2" 2532 "HAVE_TF (floatuns<mode>tf2)" 2533 { EXPAND_TF (floatuns<mode>tf2, 2); }) 2614 (define_expand "<FPINT:fpint_name>tf2" 2619 "HAVE_TF (<FPINT:fpint_name>tf2)" 2620 { EXPAND_TF (<FPINT:fpint_name>tf2, 2); }) 2761 (define_expand "extend<DFP_ALL:mode>tf2" [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| H A D | dcast.c | 2724 TypeFunction *tf2 = (TypeFunction *)t2n; in typeMerge() local 2726 tf2->purityLevel(); 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() 2739 else if (tf1->trust <= TRUSTsystem || tf2->trust <= TRUSTsystem) in typeMerge()
|
| H A D | func.c | 3612 TypeFunction *tf2 = m.nextf->type->toTypeFunction(); in resolveFuncCall() local 3614 const char *nextprms = parametersTypeToChars(tf2->parameters, tf2->varargs); in resolveFuncCall()
|
| H A D | dtemplate.c | 2499 TypeFunction *tf2 = (TypeFunction *)m->lastf->type; in functionResolve() local 2500 assert(tf2->ty == Tfunction); in functionResolve() 2502 MATCH c2 = tf2->callMatch(tthis_best, fargs); in functionResolve()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/ |
| H A D | ChangeLog-2020 | 5864 (float<mode>tf2): New dispatcher. 5866 (floatuns<mode>tf2): New dispatcher. 5872 (<FPINT:fpint_name>tf2): New forwarder.
|
| H A D | ChangeLog-2008 | 15071 (<code>tf2): Likewise. 22539 (<code>tf2): Macroize expander from abstf2 and negtf2 patterns
|
| H A D | ChangeLog-2015 | 9597 (floatuns<mode>tf2): Likewise. 18290 (floatuns<mode>tf2): Likewise.
|
| H A D | ChangeLog-2021 | 32093 (extend<DFP_ALL:mode>tf2): Likewise.
|
| H A D | ChangeLog-2012 | 24718 (<code>tf2): Enable for TARGET_SSE.
|
| H A D | ChangeLog-2019 | 25839 (<code>tf2): Use absneg code iterator.
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/config/i386/ |
| H A D | i386.md | 9933 (define_expand "<code>tf2"
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/config/i386/ |
| H A D | i386.md | 11272 (define_expand "<code>tf2"
|