taglinefilesource code
ps206arch/alpha/kernel/irq.cprintk("PC = %016lx PS=%04lx\n", regs->pc, regs->ps);
ps399arch/alpha/kernel/irq.cprintk("PC = %016lx PS=%04lx\n", regs->pc, regs->ps);
ps18arch/alpha/kernel/traps.cprintk("PC = %016lx PS = %04lx\n", regs->pc, regs->ps);
ps2365drivers/char/console.cint i, ps, pe;
ps2380drivers/char/console.cps = ys * video_size_row + (xs << 1);
ps2388drivers/char/console.cif (ps > pe)  /* make sel_start <= sel_end */
ps2390drivers/char/console.cint tmp = ps;
ps2391drivers/char/console.cps = pe;
ps2398drivers/char/console.cnew_sel_start = ps;
ps2402drivers/char/console.cspc = isspace(*(off + ps));
ps2403drivers/char/console.cfor (new_sel_start = ps; ; ps -= 2)
ps2405drivers/char/console.cif ((spc && !isspace(*(off + ps))) ||
ps2406drivers/char/console.c(!spc && !inword(*(off + ps))))
ps2408drivers/char/console.cnew_sel_start = ps;
ps2409drivers/char/console.cif (!(ps % video_size_row))
ps2424drivers/char/console.cnew_sel_start = ps - ps % video_size_row;
ps41include/asm-alpha/ptrace.hunsigned long ps;
ps49include/asm-alpha/ptrace.h#define user_mode(regs) ((regs)->ps & 8)
ps13include/asm-sparc/ptrace.hunsigned long ps;    /* previous supervisor, same as alpha I believe */
ps27include/asm-sparc/ptrace.h#define user_mode(regs) (~((regs)->ps&0x1))  /* if previous supervisor is 0, came from user */
ps25include/linux/coff.h#define COFF_SHORT_L(ps) ((short)(((unsigned short)((unsigned char)ps[1])<<8)|\
ps26include/linux/coff.h((unsigned short)((unsigned char)ps[0]))))
ps29include/linux/coff.h#define COFF_LONG_L(ps) (((long)(((unsigned long)((unsigned char)ps[3])<<24) |\
ps30include/linux/coff.h((unsigned long)((unsigned char)ps[2])<<16) |\
ps31include/linux/coff.h((unsigned long)((unsigned char)ps[1])<<8)  |\
ps32include/linux/coff.h((unsigned long)((unsigned char)ps[0])))))
ps35include/linux/coff.h#define COFF_SHORT_H(ps) ((short)(((unsigned short)((unsigned char)ps[0])<<8)|\
ps36include/linux/coff.h((unsigned short)((unsigned char)ps[1]))))
ps39include/linux/coff.h#define COFF_LONG_H(ps) (((long)(((unsigned long)((unsigned char)ps[0])<<24) |\
ps40include/linux/coff.h((unsigned long)((unsigned char)ps[1])<<16) |\
ps41include/linux/coff.h((unsigned long)((unsigned char)ps[2])<<8)  |\
ps42include/linux/coff.h((unsigned long)((unsigned char)ps[3])))))