taglinefilesource code
type22include/asm/system.h#define _set_gate(gate_addr,type,dpl,addr) \
type28include/asm/system.h: "i" ((short) (0x8000+(dpl<<13)+(type<<8))), \
type42include/asm/system.h#define _set_seg_desc(gate_addr,type,dpl,base,limit) {\
type48include/asm/system.h((type)<<8); \
type52include/asm/system.h#define _set_tssldt_desc(n,addr,type) \
type57include/asm/system.h"movb $" type ",%4\n\t" \
type133include/unistd.h#define _syscall0(type,name) \
type134include/unistd.htype name(void) \
type141include/unistd.hreturn (type) __res; \
type146include/unistd.h#define _syscall1(type,name,atype,a) \
type147include/unistd.htype name(atype a) \
type154include/unistd.hreturn (type) __res; \
type159include/unistd.h#define _syscall2(type,name,atype,a,btype,b) \
type160include/unistd.htype name(atype a,btype b) \
type167include/unistd.hreturn (type) __res; \
type172include/unistd.h#define _syscall3(type,name,atype,a,btype,b,ctype,c) \
type173include/unistd.htype name(atype a,btype b,ctype c) \
type180include/unistd.hreturn (type) __res; \
type41kernel/vsprintf.c,int type)
type47kernel/vsprintf.cif (type&SMALL) digits="0123456789abcdefghijklmnopqrstuvwxyz";
type48kernel/vsprintf.cif (type&LEFT) type &= ~ZEROPAD;
type51kernel/vsprintf.cc = (type & ZEROPAD) ? '0' : ' ' ;
type52kernel/vsprintf.cif (type&SIGN && num<0) {
type56kernel/vsprintf.csign=(type&PLUS) ? '+' : ((type&SPACE) ? ' ' : 0);
type58kernel/vsprintf.cif (type&SPECIAL)
type68kernel/vsprintf.cif (!(type&(ZEROPAD+LEFT)))
type73kernel/vsprintf.cif (type&SPECIAL)
type80kernel/vsprintf.cif (!(type&LEFT))