tag | line | file | source code |
d | 178 | include/linux/unistd.h | #define _syscall4(type,name,atype,a,btype,b,ctype,c,dtype,d) \ |
d | 179 | include/linux/unistd.h | type name (atype a, btype b, ctype c, dtype d) \ |
d | 186 | include/linux/unistd.h | "d" ((long)(c)),"S" ((long)(d))); \ |
d | 193 | include/linux/unistd.h | #define _syscall5(type,name,atype,a,btype,b,ctype,c,dtype,d,etype,e) \ |
d | 194 | include/linux/unistd.h | type name (atype a,btype b,ctype c,dtype d,etype e) \ |
d | 201 | include/linux/unistd.h | "d" ((long)(c)),"S" ((long)(d)),"D" ((long)(e))); \ |
d | 101 | kernel/chr_drv/tty_ioctl.c | char *c, *d; |
d | 110 | kernel/chr_drv/tty_ioctl.c | d = (char *)(ts->tasks+n); |
d | 112 | kernel/chr_drv/tty_ioctl.c | put_fs_byte(*c++, d++); |
d | 44 | kernel/math/sqrt.c | void fsqrt(const temp_real * s, temp_real * d) |
d | 56 | kernel/math/sqrt.c | d->exponent = 0; |
d | 57 | kernel/math/sqrt.c | d->a = d->b = 0; |
d | 79 | kernel/math/sqrt.c | res[0] = d->a; res[1] = d->b; |
d | 82 | kernel/math/sqrt.c | d->a = res[0]; |
d | 83 | kernel/math/sqrt.c | d->b = res[1]; |
d | 86 | kernel/math/sqrt.c | if (!d->a && !d->b) |
d | 88 | kernel/math/sqrt.c | while (!(d->b & 0x80000000)) { |
d | 90 | kernel/math/sqrt.c | :"=a" (d->a),"=d" (d->b) |
d | 91 | kernel/math/sqrt.c | :"0" (d->a),"1" (d->b)); |
d | 94 | kernel/math/sqrt.c | d->exponent = exponent; |