Lines Matching refs:result
127 long result; in jensen_bus_inb() local
130 result = *(volatile int *)((addr << 7) + EISA_IO + 0x00); in jensen_bus_inb()
131 return __kernel_extbl(result, addr & 3); in jensen_bus_inb()
172 long result; in jensen_inw() local
175 result = *(volatile int *) ((addr << 7) + EISA_IO + 0x20); in jensen_inw()
176 result >>= (addr & 3) * 8; in jensen_inw()
177 return 0xffffUL & result; in jensen_inw()
207 long result; in jensen_readb() local
211 result = *(volatile int *) ((addr << 7) + EISA_MEM + 0x00); in jensen_readb()
212 result >>= (addr & 3) * 8; in jensen_readb()
213 return 0xffUL & result; in jensen_readb()
219 long result; in jensen_readw() local
223 result = *(volatile int *) ((addr << 7) + EISA_MEM + 0x20); in jensen_readw()
224 result >>= (addr & 3) * 8; in jensen_readw()
225 return 0xffffUL & result; in jensen_readw()