Lines Matching refs:result
126 long result; in jensen_bus_inb() local
129 result = *(volatile int *)((addr << 7) + EISA_IO + 0x00); in jensen_bus_inb()
130 return __kernel_extbl(result, addr & 3); in jensen_bus_inb()
171 long result; in jensen_inw() local
174 result = *(volatile int *) ((addr << 7) + EISA_IO + 0x20); in jensen_inw()
175 result >>= (addr & 3) * 8; in jensen_inw()
176 return 0xffffUL & result; in jensen_inw()
206 long result; in jensen_readb() local
210 result = *(volatile int *) ((addr << 7) + EISA_MEM + 0x00); in jensen_readb()
211 result >>= (addr & 3) * 8; in jensen_readb()
212 return 0xffUL & result; in jensen_readb()
218 long result; in jensen_readw() local
222 result = *(volatile int *) ((addr << 7) + EISA_MEM + 0x20); in jensen_readw()
223 result >>= (addr & 3) * 8; in jensen_readw()
224 return 0xffffUL & result; in jensen_readw()