/src/sys/arch/amiga/dev/ |
ms.c | 265 u_char pra, *horc, *verc; local in function:msintr 278 pra = ciaa.pra; 280 pra >>= port == 0 ? 6 : 7; /* contains left button */ 281 mb = (pot & 4) / 4 + (pot & 1) * 2 + (pra & 1) * 4;
|
/src/sys/compat/linux32/common/ |
linux32_unistd.c | 783 struct sys_pread_args pra; local in function:linux32_sys_pread 785 SCARG(&pra, fd) = SCARG(uap, fd); 786 SCARG(&pra, buf) = SCARG_P32(uap, buf); 787 SCARG(&pra, nbyte) = SCARG(uap, nbyte); 788 SCARG(&pra, PAD) = 0; 789 SCARG(&pra, offset) = SCARG(uap, offset); 791 return sys_pread(l, &pra, retval); 807 struct sys_pwrite_args pra; local in function:linux32_sys_pwrite 809 SCARG(&pra, fd) = SCARG(uap, fd); 810 SCARG(&pra, buf) = SCARG_P32(uap, buf) [all...] |
/src/sys/arch/amiga/amiga/ |
cia.h | 39 volatile unsigned char pra; char pad0[0xff]; member in struct:CIA
|
/src/sys/compat/linux/common/ |
linux_file.c | 809 struct sys_pread_args pra; local in function:linux_sys_pread 811 SCARG(&pra, fd) = SCARG(uap, fd); 812 SCARG(&pra, buf) = SCARG(uap, buf); 813 SCARG(&pra, nbyte) = SCARG(uap, nbyte); 814 SCARG(&pra, PAD) = 0; 815 SCARG(&pra, offset) = SCARG(uap, offset); 817 return sys_pread(l, &pra, retval); 833 struct sys_pwrite_args pra; local in function:linux_sys_pwrite 835 SCARG(&pra, fd) = SCARG(uap, fd); 836 SCARG(&pra, buf) = SCARG(uap, buf) [all...] |