taglinefilesource code
ps2463drivers/char/console.cint i, ps, pe;
ps2478drivers/char/console.cps = ys * video_size_row + (xs << 1);
ps2486drivers/char/console.cif (ps > pe)  /* make sel_start <= sel_end */
ps2488drivers/char/console.cint tmp = ps;
ps2489drivers/char/console.cps = pe;
ps2496drivers/char/console.cnew_sel_start = ps;
ps2500drivers/char/console.cspc = isspace(*(off + ps));
ps2501drivers/char/console.cfor (new_sel_start = ps; ; ps -= 2)
ps2503drivers/char/console.cif ((spc && !isspace(*(off + ps))) ||
ps2504drivers/char/console.c(!spc && !inword(*(off + ps))))
ps2506drivers/char/console.cnew_sel_start = ps;
ps2507drivers/char/console.cif (!(ps % video_size_row))
ps2522drivers/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])))))