tag | line | file | source code |
n | 235 | fs/exec.c | int n, blkno, blk = 0; |
n | 243 | fs/exec.c | n = (blk ? BLOCK_SIZE : BLOCK_SIZE - sizeof(struct exec)); |
n | 244 | fs/exec.c | if (bytes < n) |
n | 245 | fs/exec.c | n = bytes; |
n | 248 | fs/exec.c | bh->b_data + sizeof(struct exec)), n); |
n | 251 | fs/exec.c | dest += n; |
n | 252 | fs/exec.c | bytes -= n; |
n | 8 | include/asm/memory.h | #define memcpy(dest,src,n) ({ \ |
n | 11 | include/asm/memory.h | ::"D" ((long)(_res)),"S" ((long)(src)),"c" ((long) (n)) \ |
n | 40 | include/asm/segment.h | extern inline void memcpy_tofs(void * to, void * from, unsigned long n) |
n | 55 | include/asm/segment.h | ::"c" (n),"D" ((long) to),"S" ((long) from) |
n | 59 | include/asm/segment.h | extern inline void memcpy_fromfs(void * to, void * from, unsigned long n) |
n | 70 | include/asm/segment.h | ::"c" (n),"D" ((long) to),"S" ((long) from) |
n | 33 | include/asm/system.h | #define set_intr_gate(n,addr) \ |
n | 34 | include/asm/system.h | _set_gate(&idt[n],14,0,addr) |
n | 36 | include/asm/system.h | #define set_trap_gate(n,addr) \ |
n | 37 | include/asm/system.h | _set_gate(&idt[n],15,0,addr) |
n | 39 | include/asm/system.h | #define set_system_gate(n,addr) \ |
n | 40 | include/asm/system.h | _set_gate(&idt[n],15,3,addr) |
n | 52 | include/asm/system.h | #define _set_tssldt_desc(n,addr,type) \ |
n | 61 | include/asm/system.h | ::"a" (addr), "m" (*(n)), "m" (*(n+2)), "m" (*(n+4)), \ |
n | 62 | include/asm/system.h | "m" (*(n+5)), "m" (*(n+6)), "m" (*(n+7)) \ |
n | 65 | include/asm/system.h | #define set_tss_desc(n,addr) _set_tssldt_desc(((char *) (n)),addr,"0x89") |
n | 66 | include/asm/system.h | #define set_ldt_desc(n,addr) _set_tssldt_desc(((char *) (n)),addr,"0x82") |
n | 236 | include/linux/sched.h | #define _TSS(n) ((((unsigned long) n)<<4)+(FIRST_TSS_ENTRY<<3)) |
n | 237 | include/linux/sched.h | #define _LDT(n) ((((unsigned long) n)<<4)+(FIRST_LDT_ENTRY<<3)) |
n | 238 | include/linux/sched.h | #define ltr(n) __asm__("ltr %%ax"::"a" (_TSS(n))) |
n | 239 | include/linux/sched.h | #define lldt(n) __asm__("lldt %%ax"::"a" (_LDT(n))) |
n | 240 | include/linux/sched.h | #define str(n) \ |
n | 244 | include/linux/sched.h | :"=a" (n) \ |
n | 252 | include/linux/sched.h | #define switch_to(n) {\ |
n | 264 | include/linux/sched.h | "d" (_TSS(n)),"c" ((long) task[n]) \ |
n | 268 | include/linux/sched.h | #define PAGE_ALIGN(n) (((n)+0xfff)&0xfffff000) |
n | 341 | include/linux/string.h | extern inline void * memcpy(void * dest,const void * src, size_t n) |
n | 346 | include/linux/string.h | ::"c" (n),"S" (src),"D" (dest) |
n | 351 | include/linux/string.h | extern inline void * memmove(void * dest,const void * src, size_t n) |
n | 357 | include/linux/string.h | ::"c" (n),"S" (src),"D" (dest) |
n | 364 | include/linux/string.h | ::"c" (n),"S" (src+n-1),"D" (dest+n-1) |
n | 38 | kernel/blk_drv/scsi/ultrastor.c | #define BYTE(num, n) ((unsigned char)((unsigned int)(num) >> ((n) * 8))) |
n | 94 | kernel/chr_drv/tty_ioctl.c | int i, n = 0; |
n | 98 | kernel/chr_drv/tty_ioctl.c | for (p = &FIRST_TASK ; p <= &LAST_TASK ; p++, n++) |
n | 102 | kernel/chr_drv/tty_ioctl.c | d = (char *)(ts->tasks+n); |
n | 105 | kernel/chr_drv/tty_ioctl.c | put_fs_long(1, (unsigned long *)(ts->present+n)); |
n | 108 | kernel/chr_drv/tty_ioctl.c | put_fs_long(0, (unsigned long *)(ts->present+n)); |
n | 359 | kernel/sched.c | int i, n=0; |
n | 365 | kernel/sched.c | ++n; |
n | 369 | kernel/sched.c | n * FSCALE * (FSCALE - cexp[i])) >> FSHIFT; |
n | 35 | kernel/vsprintf.c | #define do_div(n,base) ({ \ |
n | 37 | kernel/vsprintf.c | __asm__("divl %4":"=a" (n),"=d" (__res):"0" (n),"1" (0),"r" (base)); \ |