tag | line | file | source code |
m | 1004 | drivers/scsi/sd.c | int m; |
m | 1007 | drivers/scsi/sd.c | for (m=i<<4; m<((i+1)<<4); m++){ |
m | 1008 | drivers/scsi/sd.c | sd_hardsizes[m] = hard_sector; |
m | 32 | drivers/sound/gus_vol.c | int i, m, n, x; |
m | 97 | drivers/sound/gus_vol.c | m = x - (1 << i); |
m | 102 | drivers/sound/gus_vol.c | if (m > 0) |
m | 105 | drivers/sound/gus_vol.c | m >>= i - 8; |
m | 107 | drivers/sound/gus_vol.c | m <<= 8 - i; |
m | 110 | drivers/sound/gus_vol.c | return ((i << 8) + m); |
m | 380 | drivers/sound/gus_wave.c | gus_voice_mode (unsigned int m) |
m | 382 | drivers/sound/gus_wave.c | unsigned char mode = (unsigned char) (m & 0xff); |
m | 429 | drivers/sound/gus_wave.c | gus_rampon (unsigned int m) |
m | 431 | drivers/sound/gus_wave.c | unsigned char mode = (unsigned char) (m & 0xff); |
m | 439 | drivers/sound/gus_wave.c | gus_ramp_mode (unsigned int m) |
m | 441 | drivers/sound/gus_wave.c | unsigned char mode = (unsigned char) (m & 0xff); |
m | 222 | fs/msdos/inode.c | #define ROUND_TO_MULTIPLE(n,m) ((n) && (m) ? (n)+(m)-1-((n)-1)%(m) : 0) |
m | 89 | include/asm-alpha/system.h | extern inline unsigned long xchg_u32(int * m, unsigned long val) |
m | 99 | include/asm-alpha/system.h | : "=r" (val), "=m" (*m), "=r" (dummy), "=r" (dummy2) |
m | 100 | include/asm-alpha/system.h | : "1" (*m), "2" (val)); |
m | 104 | include/asm-alpha/system.h | extern inline unsigned long xchg_u64(long * m, unsigned long val) |
m | 114 | include/asm-alpha/system.h | : "=r" (val), "=m" (*m), "=r" (dummy), "=r" (dummy2) |
m | 115 | include/asm-alpha/system.h | : "1" (*m), "2" (val)); |
m | 119 | include/asm-alpha/system.h | extern inline void * xchg_ptr(void *m, void *val) |
m | 121 | include/asm-alpha/system.h | return (void *) xchg_u64((long *) m, (unsigned long) val); |
m | 156 | include/asm-i386/system.h | extern inline unsigned long xchg_u8(char * m, unsigned long val) |
m | 158 | include/asm-i386/system.h | __asm__("xchgb %b0,%1":"=q" (val),"=m" (*m):"0" (val):"memory"); |
m | 162 | include/asm-i386/system.h | extern inline unsigned long xchg_u16(short * m, unsigned long val) |
m | 164 | include/asm-i386/system.h | __asm__("xchgw %w0,%1":"=r" (val),"=m" (*m):"0" (val):"memory"); |
m | 168 | include/asm-i386/system.h | extern inline unsigned long xchg_u32(long * m, unsigned long val) |
m | 170 | include/asm-i386/system.h | __asm__("xchgl %0,%1":"=r" (val),"=m" (*m):"0" (val):"memory"); |
m | 174 | include/asm-i386/system.h | extern inline int tas(char * m) |
m | 176 | include/asm-i386/system.h | return xchg_u8(m,1); |
m | 179 | include/asm-i386/system.h | extern inline void * xchg_ptr(void * m, void * val) |
m | 181 | include/asm-i386/system.h | return (void *) xchg_u32(m, (unsigned long) val); |
m | 91 | include/linux/major.h | static inline int scsi_major(int m) { |
m | 92 | include/linux/major.h | return SCSI_MAJOR(m); |
m | 105 | include/linux/msdos_fs.h | #define MSDOS_MKMODE(a,m) (m & (a & ATTR_RO ? S_IRUGO|S_IXUGO : S_IRWXUGO)) |
m | 109 | include/linux/msdos_fs.h | #define MSDOS_MKATTR(m) ((m & S_IWUGO) ? ATTR_NONE : ATTR_RO) |
m | 57 | include/linux/stat.h | #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK) |
m | 58 | include/linux/stat.h | #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG) |
m | 59 | include/linux/stat.h | #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR) |
m | 60 | include/linux/stat.h | #define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR) |
m | 61 | include/linux/stat.h | #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK) |
m | 62 | include/linux/stat.h | #define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO) |
m | 63 | include/linux/stat.h | #define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK) |
m | 716 | net/inet/ip_fw.c | printf("ip_fw_ctl: len=%d, want %d\n",m->m_len, |
m | 765 | net/inet/ip_fw.c | int ip_acct_ctl(int stage, void *m, int len) |
m | 783 | net/inet/ip_fw.c | if (!(frwl=check_ipfw_struct(m,len))) |
m | 810 | net/inet/ip_fw.c | int ip_fw_ctl(int stage, void *m, int len) |
m | 822 | net/inet/ip_fw.c | tmp_policy_ptr=(int *)m; |
m | 843 | net/inet/ip_fw.c | ip = (struct iphdr *)m; |
m | 873 | net/inet/ip_fw.c | frwl=check_ipfw_struct(m,len); |
m | 2972 | net/inet/tcp.c | long m; |
m | 2982 | net/inet/tcp.c | m = jiffies - oskb->when; /* RTT */ |
m | 2983 | net/inet/tcp.c | if(m<=0) |
m | 2984 | net/inet/tcp.c | m=1; /* IS THIS RIGHT FOR <0 ??? */ |
m | 2985 | net/inet/tcp.c | m -= (sk->rtt >> 3); /* m is now error in rtt est */ |
m | 2986 | net/inet/tcp.c | sk->rtt += m; /* rtt = 7/8 rtt + 1/8 new */ |
m | 2987 | net/inet/tcp.c | if (m < 0) |
m | 2988 | net/inet/tcp.c | m = -m; /* m is now abs(error) */ |
m | 2989 | net/inet/tcp.c | m -= (sk->mdev >> 2); /* similar update on mdev */ |
m | 2990 | net/inet/tcp.c | sk->mdev += m; /* mdev = 3/4 mdev + 1/4 new */ |
m | 276 | zBoot/gzip.h | extern void error OF((char *m)); |
m | 99 | zBoot/inflate.c | int huft_build(b, n, s, d, e, t, m) |
m | 106 | zBoot/inflate.c | int *m; /* maximum lookup bits, returns actual */ |
m | 144 | zBoot/inflate.c | *m = 0; |
m | 151 | zBoot/inflate.c | l = *m; |
m | 164 | zBoot/inflate.c | *m = l; |
m | 550 | zBoot/inflate.c | unsigned m; /* mask for bit lengths table */ |
m | 618 | zBoot/inflate.c | m = mask_bits[bl]; |
m | 623 | zBoot/inflate.c | j = (td = tl + ((unsigned)b & m))->b; |