tag | line | file | source code |
total | 55 | arch/alpha/mm/init.c | int i,free = 0,total = 0,reserved = 0; |
total | 63 | arch/alpha/mm/init.c | total++; |
total | 71 | arch/alpha/mm/init.c | printk("%d pages of RAM\n",total); |
total | 74 | arch/i386/mm/init.c | int i,free = 0,total = 0,reserved = 0; |
total | 82 | arch/i386/mm/init.c | total++; |
total | 90 | arch/i386/mm/init.c | printk("%d pages of RAM\n",total); |
total | 201 | arch/mips/mm/init.c | int i, free = 0, total = 0, reserved = 0; |
total | 209 | arch/mips/mm/init.c | total++; |
total | 217 | arch/mips/mm/init.c | printk("%d pages of RAM\n", total); |
total | 58 | arch/ppc/kernel/setup.c | unsigned long total; |
total | 64 | arch/ppc/kernel/setup.c | total = 0x08000000; /* 128M */ |
total | 67 | arch/ppc/kernel/setup.c | total = 0x02000000; /* 32M */ |
total | 70 | arch/ppc/kernel/setup.c | total = 0x00800000; /* 8M */ |
total | 73 | arch/ppc/kernel/setup.c | total = 0x00400000; /* 4M - can't happen! */ |
total | 76 | arch/ppc/kernel/setup.c | total = 0x10000000; /* 256M */ |
total | 79 | arch/ppc/kernel/setup.c | total = 0x04000000; /* 64M */ |
total | 82 | arch/ppc/kernel/setup.c | total = 0x01000000; /* 16M */ |
total | 85 | arch/ppc/kernel/setup.c | total = 0x04000000; /* Can't happen */ |
total | 91 | arch/ppc/kernel/setup.c | total += 0x08000000; /* 128M */ |
total | 94 | arch/ppc/kernel/setup.c | total += 0x02000000; /* 32M */ |
total | 97 | arch/ppc/kernel/setup.c | total += 0x00800000; /* 8M */ |
total | 100 | arch/ppc/kernel/setup.c | total += 0x00000000; /* Module not present */ |
total | 103 | arch/ppc/kernel/setup.c | total += 0x10000000; /* 256M */ |
total | 106 | arch/ppc/kernel/setup.c | total += 0x04000000; /* 64M */ |
total | 109 | arch/ppc/kernel/setup.c | total += 0x01000000; /* 16M */ |
total | 112 | arch/ppc/kernel/setup.c | total += 0x00000000; /* Module not present */ |
total | 115 | arch/ppc/kernel/setup.c | _printk("register total = %08X\n", total); |
total | 116 | arch/ppc/kernel/setup.c | /* TEMP */ total = 0x01000000; |
total | 119 | arch/ppc/kernel/setup.c | if (total < 0x01000000) |
total | 128 | arch/ppc/kernel/setup.c | Hash = (PTE *)((total-Hash_size)+KERNELBASE); |
total | 129 | arch/ppc/mm/init.c | int i,free = 0,total = 0,reserved = 0; |
total | 137 | arch/ppc/mm/init.c | total++; |
total | 145 | arch/ppc/mm/init.c | printk("%d pages of RAM\n",total); |
total | 163 | arch/sparc/kernel/setup.c | int total, i; |
total | 214 | arch/sparc/kernel/setup.c | total = prom_probe_memory(); |
total | 216 | arch/sparc/kernel/setup.c | printk("Physical Memory: %d bytes (in hex %08lx)\n", (int) total, |
total | 217 | arch/sparc/kernel/setup.c | (unsigned long) total); |
total | 104 | arch/sparc/mm/fault.c | int total; |
total | 106 | arch/sparc/mm/fault.c | total = prom_probe_memory(); |
total | 109 | arch/sparc/mm/fault.c | return total; |
total | 63 | arch/sparc/mm/init.c | int i,free = 0,total = 0,reserved = 0; |
total | 71 | arch/sparc/mm/init.c | total++; |
total | 79 | arch/sparc/mm/init.c | printk("%d pages of RAM\n",total); |
total | 1616 | drivers/char/cyclades.c | int c, total = 0; |
total | 1653 | drivers/char/cyclades.c | total += c; |
total | 1662 | drivers/char/cyclades.c | return total; |
total | 1312 | drivers/char/serial.c | int c, total = 0; |
total | 1344 | drivers/char/serial.c | total += c; |
total | 1354 | drivers/char/serial.c | return total; |
total | 168 | drivers/scsi/in2000.c | unsigned total=0; |
total | 172 | drivers/scsi/in2000.c | total = (inb(INDATA) & 0xff) << 16; |
total | 174 | drivers/scsi/in2000.c | total += (inb(INDATA) & 0xff) << 8; |
total | 176 | drivers/scsi/in2000.c | total += (inb(INDATA) & 0xff); |
total | 177 | drivers/scsi/in2000.c | return total; |
total | 741 | drivers/scsi/st.c | int total, do_count, blks, retval, transfer; |
total | 822 | drivers/scsi/st.c | total = count; |
total | 915 | drivers/scsi/st.c | if (count < total) |
total | 916 | drivers/scsi/st.c | return total - count; |
total | 986 | drivers/scsi/st.c | STp->at_sm &= (total != 0); |
total | 987 | drivers/scsi/st.c | return( total); |
total | 995 | drivers/scsi/st.c | int total; |
total | 1045 | drivers/scsi/st.c | for (total = 0; total < count; ) { |
total | 1140 | drivers/scsi/st.c | dev, (STp->buffer)->buffer_bytes, total); |
total | 1151 | drivers/scsi/st.c | if (total) |
total | 1152 | drivers/scsi/st.c | return total; |
total | 1191 | drivers/scsi/st.c | (STp->buffer)->buffer_bytes, count - total); |
total | 1193 | drivers/scsi/st.c | transfer = (STp->buffer)->buffer_bytes < count - total ? |
total | 1194 | drivers/scsi/st.c | (STp->buffer)->buffer_bytes : count - total; |
total | 1199 | drivers/scsi/st.c | total += transfer; |
total | 1207 | drivers/scsi/st.c | if (total == 0 && STp->eof == ST_FM) { |
total | 1215 | drivers/scsi/st.c | if (total == 0 && STp->eof == ST_EOM_OK) |
total | 1217 | drivers/scsi/st.c | return total; |
total | 1221 | drivers/scsi/st.c | count = total; /* Read only one variable length block */ |
total | 1228 | drivers/scsi/st.c | return total; |
total | 65 | fs/ext2/inode.c | unsigned short total; |
total | 68 | fs/ext2/inode.c | total = inode->u.ext2_i.i_prealloc_count; |
total | 70 | fs/ext2/inode.c | ext2_free_blocks (inode, inode->u.ext2_i.i_prealloc_block, total); |
total | 545 | fs/proc/array.c | int * pages, int * shared, int * dirty, int * total) |
total | 569 | fs/proc/array.c | ++*total; |
total | 583 | fs/proc/array.c | int * pages, int * shared, int * dirty, int * total) |
total | 601 | fs/proc/array.c | statm_pte_range(pmd, address, end - address, pages, shared, dirty, total); |
total | 608 | fs/proc/array.c | int * pages, int * shared, int * dirty, int * total) |
total | 611 | fs/proc/array.c | statm_pmd_range(pgd, address, end - address, pages, shared, dirty, total); |
total | 629 | fs/proc/array.c | int pages = 0, shared = 0, dirty = 0, total = 0; |
total | 631 | fs/proc/array.c | statm_pgd_range(pgd, vma->vm_start, vma->vm_end, &pages, &shared, &dirty, &total); |
total | 635 | fs/proc/array.c | size += total; |
total | 283 | fs/smbfs/inode.c | SMB_SBP(sb)->s_attr.total, |
total | 317 | fs/smbfs/inode.c | attr.total = attr.allocblocks = attr.blocksize = |
total | 323 | fs/smbfs/inode.c | tmp.f_blocks = attr.total; |
total | 1567 | fs/smbfs/proc.c | p = smb_decode_word(p, &attr->total); |
total | 80 | include/linux/smb.h | word total; |
total | 870 | mm/swap.c | unsigned long total = 0; |
total | 881 | mm/swap.c | total += nr * ((PAGE_SIZE>>10) << order); |
total | 885 | mm/swap.c | printk("= %lukB)\n", total); |