taglinefilesource code
ps1904drivers/char/console.cint i, ps, pe;
ps1919drivers/char/console.cps = ys * video_size_row + (xs << 1);
ps1927drivers/char/console.cif (ps > pe)  /* make sel_start <= sel_end */
ps1929drivers/char/console.cint tmp = ps;
ps1930drivers/char/console.cps = pe;
ps1937drivers/char/console.cnew_sel_start = ps;
ps1941drivers/char/console.cspc = isspace(*(off + ps));
ps1942drivers/char/console.cfor (new_sel_start = ps; ; ps -= 2)
ps1944drivers/char/console.cif ((spc && !isspace(*(off + ps))) ||
ps1945drivers/char/console.c(!spc && !inword(*(off + ps))))
ps1947drivers/char/console.cnew_sel_start = ps;
ps1948drivers/char/console.cif (!(ps % video_size_row))
ps1963drivers/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])))))