HomeSort by: relevance | last modified time | path
    Searched refs:tf2 (Results 1 - 9 of 9) sorted by relevancy

  /src/sys/arch/sparc64/sparc64/
vm_machdep.c 186 struct trapframe *tf2; local
237 tf2 = l2->l_md.md_tf = (struct trapframe *)
238 ((long)npcb + USPACE - sizeof(*tf2));
241 *tf2 = *(struct trapframe *)((long)opcb + USPACE - sizeof(*tf2));
247 tf2->tf_out[6] = (uint64_t)(u_long)stack + stacksize;
254 tf2->tf_tstate = (ASI_PRIMARY_NO_FAULT<<TSTATE_ASI_SHIFT) |
262 tf2->tf_out[0] = 0;
263 tf2->tf_out[1] = 1;
264 tf2->tf_tstate &= ~TSTATE_CCR
    [all...]
  /src/sys/arch/sparc/sparc/
vm_machdep.c 194 struct trapframe *tf2; local
251 tf2 = l2->l_md.md_tf = (struct trapframe *)
252 ((int)npcb + USPACE - sizeof(*tf2));
255 *tf2 = *(struct trapframe *)((int)opcb + USPACE - sizeof(*tf2));
261 tf2->tf_out[6] = (u_int)stack + stacksize;
270 /*tf2->tf_psr &= ~PSR_C; -* success */
273 tf2->tf_out[0] = 0;
274 tf2->tf_out[1] = 1;
  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
importc.d 270 * tf2 = type of second function
275 bool cFuncEquivalence(TypeFunction tf1, TypeFunction tf2)
277 //printf("cFuncEquivalence()\n %s\n %s\n", tf1.toChars(), tf2.toChars());
278 if (tf1.equals(tf2))
281 if (tf1.linkage != tf2.linkage)
285 if (tf1.parameterList.length == 0 && tf2.parameterList.length == 0)
288 if (!cTypeEquivalence(tf1.next, tf2.next))
291 if (tf1.parameterList.length != tf2.parameterList.length)
294 if (!tf1.parameterList.hasIdentifierList && !tf2.parameterList.hasIdentifierList) // if both are prototyped
296 if (tf1.parameterList.varargs != tf2.parameterList.varargs
    [all...]
semantic2.d 419 auto tf2 = cast(TypeFunction) f2.type;
422 if (tf1.mod != tf2.mod || ((f1.storage_class ^ f2.storage_class) & STC.static_))
425 const sameAttr = tf1.attributesEqual(tf2);
426 const sameParams = tf1.parameterList == tf2.parameterList;
453 parametersTypeToChars(tf2.parameterList),
dcast.d 3008 TypeFunction tf2 = t2n.isTypeFunction();
3010 tf2.purityLevel();
3014 if (tf1.purity != tf2.purity)
3018 d.isnothrow = (tf1.isnothrow && tf2.isnothrow);
3019 d.isnogc = (tf1.isnogc && tf2.isnogc);
3021 if (tf1.trust == tf2.trust)
3023 else if (tf1.trust <= TRUST.system || tf2.trust <= TRUST.system)
func.d 3201 TypeFunction tf2 = m.nextf.type.toTypeFunction();
3203 const(char)* nextprms = parametersTypeToChars(tf2.parameterList);
3206 const(char)* mod2 = prependSpace(MODtoChars(tf2.mod));
dtemplate.d 3016 auto tf2 = m.lastf.type.isTypeFunction();
3018 MATCH c2 = tf2.callMatch(tthis_best, fargs_, 0, null, sc);
  /src/tests/bin/dd/
t_dd.sh 128 printf TEST1234 > tf2
130 'dd bs=4 if=/dev/zero count=1 | tr \\0 \\n | dd of=tf2 bs=4 seek=1'
131 atf_check -s exit:0 -e ignore -o match:'^TEST$' dd if=tf2
132 eval $(stat -s tf2)
  /src/crypto/external/bsd/heimdal/dist/lib/asn1/
check-gen.c 476 TicketFlags tf1, tf2, tf3, tf4; local
482 memset(&tf2, 0, sizeof(tf2));
483 tf2.forwardable = 1;
484 tf2.pre_authent = 1;
485 tests[1].val = &tf2;

Completed in 58 milliseconds