tag | line | file | source code |
n | 357 | fs/exec.c | int n, blkno, blk = 0; |
n | 369 | fs/exec.c | n = (blk ? block_size : block_size - sizeof(struct exec)); |
n | 370 | fs/exec.c | if (bytes < n) |
n | 371 | fs/exec.c | n = bytes; |
n | 374 | fs/exec.c | bh->b_data + sizeof(struct exec)), n); |
n | 377 | fs/exec.c | dest += n; |
n | 378 | 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 | 247 | include/linux/sched.h | #define _TSS(n) ((((unsigned long) n)<<4)+(FIRST_TSS_ENTRY<<3)) |
n | 248 | include/linux/sched.h | #define _LDT(n) ((((unsigned long) n)<<4)+(FIRST_LDT_ENTRY<<3)) |
n | 249 | include/linux/sched.h | #define ltr(n) __asm__("ltr %%ax"::"a" (_TSS(n))) |
n | 250 | include/linux/sched.h | #define lldt(n) __asm__("lldt %%ax"::"a" (_LDT(n))) |
n | 251 | include/linux/sched.h | #define str(n) \ |
n | 255 | include/linux/sched.h | :"=a" (n) \ |
n | 263 | include/linux/sched.h | #define switch_to(n) {\ |
n | 277 | include/linux/sched.h | "d" (_TSS(n)),"c" ((long) task[n]) \ |
n | 281 | include/linux/sched.h | #define PAGE_ALIGN(n) (((n)+0xfff)&0xfffff000) |
n | 329 | include/linux/string.h | extern inline void * memcpy(void * dest,const void * src, size_t n) |
n | 334 | include/linux/string.h | ::"c" (n),"S" (src),"D" (dest) |
n | 339 | include/linux/string.h | extern inline void * memmove(void * dest,const void * src, size_t n) |
n | 345 | include/linux/string.h | ::"c" (n),"S" (src),"D" (dest) |
n | 352 | include/linux/string.h | ::"c" (n),"S" (src+n-1),"D" (dest+n-1) |
n | 57 | kernel/blk_drv/scsi/ultrastor.c | #define BIT(n) (1ul << (n)) |
n | 58 | kernel/blk_drv/scsi/ultrastor.c | #define BYTE(num, n) ((unsigned char)((unsigned int)(num) >> ((n) * 8))) |
n | 614 | kernel/chr_drv/console.c | static void respond_num(unsigned int n, int currcons, struct tty_struct * tty) |
n | 620 | kernel/chr_drv/console.c | buff[i++] = (n%10)+'0'; |
n | 621 | kernel/chr_drv/console.c | n /= 10; |
n | 622 | kernel/chr_drv/console.c | } while(n && i < 3); /* We'll take no chances */ |
n | 93 | kernel/chr_drv/tty_ioctl.c | int i, n = 0; |
n | 97 | kernel/chr_drv/tty_ioctl.c | for (p = &FIRST_TASK ; p <= &LAST_TASK ; p++, n++) |
n | 101 | kernel/chr_drv/tty_ioctl.c | d = (char *)(ts->tasks+n); |
n | 104 | kernel/chr_drv/tty_ioctl.c | put_fs_long(1, (unsigned long *)(ts->present+n)); |
n | 107 | kernel/chr_drv/tty_ioctl.c | put_fs_long(0, (unsigned long *)(ts->present+n)); |
n | 369 | kernel/sched.c | int i, n=0; |
n | 375 | kernel/sched.c | ++n; |
n | 379 | kernel/sched.c | n * FSCALE * (FSCALE - cexp[i])) >> FSHIFT; |
n | 36 | kernel/vsprintf.c | #define do_div(n,base) ({ \ |
n | 38 | kernel/vsprintf.c | __asm__("divl %4":"=a" (n),"=d" (__res):"0" (n),"1" (0),"r" (base)); \ |