/src/games/hack/ |
hack.vault.c | 127 struct rm *crm; local in function:restfakecorr 136 crm = &levl[fcx][fcy]; 137 crm->typ = egd->fakecorr[fcbeg].ftyp; 138 if (!crm->typ) 139 crm->seen = 0; 271 struct rm *crm; local in function:gd_move 291 if (!IS_WALL(typ = (crm = &levl[nx][ny])->typ) && typ != POOL) { 307 crm->typ = (typ == SCORR) ? CORR : DOOR; 323 while ((typ = (crm = &levl[nx][ny])->typ) != 0) { 331 crm->typ = DOOR [all...] |
hack.mklev.c | 573 struct rm *crm; local in function:join 636 crm = &levl[xx][yy]; 637 if (!(crm->typ)) { 639 crm->typ = CORR; 640 crm->scrsym = CORR_SYM; 644 crm->typ = SCORR; 645 crm->scrsym = ' '; 647 } else if (crm->typ != CORR && crm->typ != SCORR) { 659 crm = &levl[xx + ddx][yy] [all...] |
hack.pri.c | 128 struct rm *crm = &levl[x][y]; local in function:atl 134 if (crm->seen && crm->scrsym == ch) 136 crm->scrsym = ch; 137 crm->new = 1;
|
/src/sys/arch/aarch64/aarch64/ |
disasm.c | 215 #define SYSREG_ENC(op0, op1, CRn, CRm, op2) \ 216 (((op0)<<19)|((op1)<<16)|((CRn)<<12)|((CRm)<<8)|((op2)<<5)) 225 /* op0 op1 CRn CRm op2 name */ 616 uint64_t op0, uint64_t op1, uint64_t CRn, uint64_t CRm, uint64_t op2) 621 code = SYSREG_ENC(op0, op1, CRn, CRm, op2); 634 (u_int)op0, (u_int)op1, (u_int)CRn, (u_int)CRm, (u_int)op2); 639 #define RSYSREGNAME(buf, buflen, op0, op1, CRn, CRm, op2) \ 640 sysregname(buf, buflen, SYSREG_OP_READ, op0, op1, CRn, CRm, op2) 641 #define WSYSREGNAME(buf, buflen, op0, op1, CRn, CRm, op2) \ 642 sysregname(buf, buflen, SYSREG_OP_WRITE, op0, op1, CRn, CRm, op2 [all...] |