Home
last modified time | relevance | path

Searched refs:ctmp (Results 1 – 3 of 3) sorted by relevance

/original-bsd/games/hack/
H A Dhack.mhitu.c15 register int tmp, ctmp; local
68 ctmp = tmp && !mtmp->mcan &&
92 if(ctmp) {
105 if(ctmp && rn2(2)) {
162 if(ctmp && multi >= 0 && !rn2(3)) {
168 if(ctmp && multi >= 0 && !rn2(5)) {
227 if(ctmp && !rn2(4))
250 if(ctmp && !rn2(8)) {
276 if(ctmp && !u.ustuck) u.ustuck = mtmp;
280 if(ctmp) losexp();
[all …]
/original-bsd/libexec/rbootd/
H A Drbootd.c373 register CLIENT *ctmp; local
375 for (ctmp = Clients; ctmp != NULL; ctmp = ctmp->next)
377 (char *)&ctmp->addr[0], RMP_ADDRLEN) == 0)
380 return(ctmp);
H A Dutils.c254 CLIENT *ctmp; local
256 if ((ctmp = (CLIENT *) malloc(sizeof(CLIENT))) == NULL) {
262 bzero(ctmp, sizeof(CLIENT));
263 bcopy(addr, &ctmp->addr[0], RMP_ADDRLEN);
264 return(ctmp);
286 register CLIENT *ctmp; in FreeClients() local
289 ctmp = Clients; in FreeClients()
291 FreeClient(ctmp); in FreeClients()