tag | line | file | source code |
cs | 61 | include/linux/ptrace.h | long cs; |
cs | 99 | include/linux/sched.h | unsigned long cs; /* 16 high bits zero */ |
cs | 81 | include/linux/string.h | extern inline int strcmp(const char * cs,const char * ct) |
cs | 96 | include/linux/string.h | :"=a" (__res):"D" (cs),"S" (ct):"si","di"); |
cs | 100 | include/linux/string.h | extern inline int strncmp(const char * cs,const char * ct,size_t count) |
cs | 117 | include/linux/string.h | :"=a" (__res):"D" (cs),"S" (ct),"c" (count):"si","di","cx"); |
cs | 154 | include/linux/string.h | extern inline size_t strspn(const char * cs, const char * ct) |
cs | 173 | include/linux/string.h | :"=S" (__res):"a" (0),"c" (0xffffffff),"0" (cs),"g" (ct) |
cs | 175 | include/linux/string.h | return __res-cs; |
cs | 178 | include/linux/string.h | extern inline size_t strcspn(const char * cs, const char * ct) |
cs | 197 | include/linux/string.h | :"=S" (__res):"a" (0),"c" (0xffffffff),"0" (cs),"g" (ct) |
cs | 199 | include/linux/string.h | return __res-cs; |
cs | 202 | include/linux/string.h | extern inline char * strpbrk(const char * cs,const char * ct) |
cs | 224 | include/linux/string.h | :"=S" (__res):"a" (0),"c" (0xffffffff),"0" (cs),"g" (ct) |
cs | 229 | include/linux/string.h | extern inline char * strstr(const char * cs,const char * ct) |
cs | 251 | include/linux/string.h | :"=a" (__res):"0" (0),"c" (0xffffffff),"S" (cs),"g" (ct) |
cs | 357 | include/linux/string.h | extern inline int memcmp(const void * cs,const void * ct,size_t count) |
cs | 368 | include/linux/string.h | :"=a" (__res):"0" (0),"D" (cs),"S" (ct),"c" (count) |
cs | 373 | include/linux/string.h | extern inline void * memchr(const void * cs,char c,size_t count) |
cs | 384 | include/linux/string.h | :"=D" (__res):"a" (c),"D" (cs),"c" (count) |
cs | 239 | kernel/chr_drv/keyboard.c | printk("\nEIP: %04x:%08x",0xffff & pt_regs->cs,pt_regs->eip); |
cs | 240 | kernel/chr_drv/keyboard.c | if (pt_regs->cs & 3) |
cs | 241 | kernel/chr_drv/keyboard.c | printk(" ESP: %04x:%08x",0xffff & pt_regs->cs,pt_regs->eip); |
cs | 109 | kernel/fork.c | long eip,long cs,long eflags,long esp,long ss) |
cs | 159 | kernel/fork.c | p->tss.cs = cs & 0xffff; |
cs | 110 | kernel/ioport.c | long eip,long cs,long eflags,long esp,long ss) |
cs | 399 | kernel/sched.c | if (3 & ((struct pt_regs *) regs)->cs) |