taglinefilesource code
ps1671drivers/char/console.cint i, ps, pe;
ps1686drivers/char/console.cps = ys * video_size_row + (xs << 1);
ps1689drivers/char/console.cif (ps > pe)  /* make sel_start <= sel_end */
ps1691drivers/char/console.cint tmp = ps;
ps1692drivers/char/console.cps = pe;
ps1700drivers/char/console.cnew_sel_start = ps;
ps1704drivers/char/console.cspc = isspace(*(off + ps));
ps1705drivers/char/console.cfor (new_sel_start = ps; ; ps -= 2)
ps1707drivers/char/console.cif ((spc && !isspace(*(off + ps))) ||
ps1708drivers/char/console.c(!spc && !inword(*(off + ps))))
ps1710drivers/char/console.cnew_sel_start = ps;
ps1711drivers/char/console.cif (!(ps % video_size_row))
ps1726drivers/char/console.cnew_sel_start = ps - ps % video_size_row;
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])))))