taglinefilesource code
ps1637drivers/char/console.cint i, ps, pe;
ps1652drivers/char/console.cps = ys * video_size_row + (xs << 1);
ps1655drivers/char/console.cif (ps > pe)  /* make sel_start <= sel_end */
ps1657drivers/char/console.cint tmp = ps;
ps1658drivers/char/console.cps = pe;
ps1666drivers/char/console.cnew_sel_start = ps;
ps1670drivers/char/console.cspc = isspace(*(off + ps));
ps1671drivers/char/console.cfor (new_sel_start = ps; ; ps -= 2)
ps1673drivers/char/console.cif ((spc && !isspace(*(off + ps))) ||
ps1674drivers/char/console.c(!spc && !inword(*(off + ps))))
ps1676drivers/char/console.cnew_sel_start = ps;
ps1677drivers/char/console.cif (!(ps % video_size_row))
ps1692drivers/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])))))