tag | line | file | source code |
PAGE_SIZE | 80 | fs/exec.c | if(current->rlim[RLIMIT_CORE].rlim_cur < PAGE_SIZE/1024) return 0; |
PAGE_SIZE | 105 | fs/exec.c | dump.u_tsize = current->end_code / PAGE_SIZE; |
PAGE_SIZE | 106 | fs/exec.c | dump.u_dsize = (current->brk - current->end_code) / PAGE_SIZE; |
PAGE_SIZE | 107 | fs/exec.c | dump.u_ssize =((current->start_stack +(PAGE_SIZE-1)) / PAGE_SIZE) - |
PAGE_SIZE | 108 | fs/exec.c | (regs->esp/ PAGE_SIZE); |
PAGE_SIZE | 111 | fs/exec.c | if ((dump.u_dsize+dump.u_ssize+1) * PAGE_SIZE/1024 > |
PAGE_SIZE | 115 | fs/exec.c | if ((dump.u_ssize+1) * PAGE_SIZE / 1024 > |
PAGE_SIZE | 123 | fs/exec.c | dump.start_stack = regs->esp & ~(PAGE_SIZE - 1); |
PAGE_SIZE | 136 | fs/exec.c | DUMP_SEEK(PAGE_SIZE); |
PAGE_SIZE | 147 | fs/exec.c | dump_start = regs->esp & ~(PAGE_SIZE - 1); |
PAGE_SIZE | 148 | fs/exec.c | dump_size = dump.u_ssize * PAGE_SIZE; |
PAGE_SIZE | 311 | fs/exec.c | offset = p % PAGE_SIZE; |
PAGE_SIZE | 314 | fs/exec.c | if (!(pag = (char *) page[p/PAGE_SIZE]) && |
PAGE_SIZE | 315 | fs/exec.c | !(pag = (char *) page[p/PAGE_SIZE] = |
PAGE_SIZE | 347 | fs/exec.c | data_base -= PAGE_SIZE; |
PAGE_SIZE | 401 | fs/exec.c | unsigned long p=PAGE_SIZE*MAX_ARG_PAGES-4; |
PAGE_SIZE | 591 | fs/exec.c | p -= LIBRARY_SIZE + MAX_ARG_PAGES*PAGE_SIZE; |
PAGE_SIZE | 597 | fs/exec.c | current->rss = (LIBRARY_OFFSET - p + PAGE_SIZE-1) / PAGE_SIZE; |
PAGE_SIZE | 30 | fs/pipe.c | chars = PAGE_SIZE-PIPE_TAIL(*inode); |
PAGE_SIZE | 38 | fs/pipe.c | PIPE_TAIL(*inode) &= (PAGE_SIZE-1); |
PAGE_SIZE | 55 | fs/pipe.c | if (count < PAGE_SIZE) |
PAGE_SIZE | 56 | fs/pipe.c | size = PAGE_SIZE-count; |
PAGE_SIZE | 58 | fs/pipe.c | size = PAGE_SIZE-1; |
PAGE_SIZE | 72 | fs/pipe.c | while (count>0 && (size = (PAGE_SIZE-1)-PIPE_SIZE(*inode))) { |
PAGE_SIZE | 73 | fs/pipe.c | chars = PAGE_SIZE-PIPE_HEAD(*inode); |
PAGE_SIZE | 81 | fs/pipe.c | PIPE_HEAD(*inode) &= (PAGE_SIZE-1); |
PAGE_SIZE | 86 | fs/pipe.c | size = PAGE_SIZE-1; |
PAGE_SIZE | 133 | include/linux/a.out.h | #define SEGMENT_SIZE PAGE_SIZE |
PAGE_SIZE | 56 | include/linux/fs.h | #define PIPE_SIZE(inode) ((PIPE_HEAD(inode)-PIPE_TAIL(inode))&(PAGE_SIZE-1)) |
PAGE_SIZE | 58 | include/linux/fs.h | #define PIPE_FULL(inode) (PIPE_SIZE(inode)==(PAGE_SIZE-1)) |
PAGE_SIZE | 22 | include/linux/mm.h | extern char empty_bad_page[PAGE_SIZE]; |
PAGE_SIZE | 35 | include/linux/mm.h | extern char empty_bad_page_table[PAGE_SIZE]; |
PAGE_SIZE | 210 | include/linux/sched.h | /*tss*/ {0,PAGE_SIZE+(long)&init_task,0x10,0,0,0,0,(long)&pg_dir,\ |
PAGE_SIZE | 146 | kernel/fork.c | p->tss.esp0 = PAGE_SIZE + (long) p; |
PAGE_SIZE | 153 | kernel/ptrace.c | if ((addr & 0xfff) > PAGE_SIZE-4) { |
PAGE_SIZE | 187 | kernel/ptrace.c | if ((addr & 0xfff) > PAGE_SIZE-4) { |
PAGE_SIZE | 73 | kernel/sched.c | char stack[PAGE_SIZE]; |
PAGE_SIZE | 91 | kernel/sched.c | long user_stack [ PAGE_SIZE>>2 ] ; |
PAGE_SIZE | 96 | kernel/sched.c | } stack_start = { & user_stack [PAGE_SIZE>>2] , 0x10 }; |
PAGE_SIZE | 105 | lib/malloc.c | for (i = PAGE_SIZE/sizeof(struct bucket_desc); i > 1; i--) { |
PAGE_SIZE | 160 | lib/malloc.c | for (i=PAGE_SIZE/bdir->size; i > 1; i--) { |
PAGE_SIZE | 350 | mm/memory.c | to += PAGE_SIZE; |
PAGE_SIZE | 38 | net/unix.c | #define BUF_SIZE PAGE_SIZE |