oreg               21 arch/x86/boot/apm.c 	struct biosregs ireg, oreg;
oreg               26 arch/x86/boot/apm.c 	intcall(0x15, &ireg, &oreg);
oreg               28 arch/x86/boot/apm.c 	if (oreg.flags & X86_EFLAGS_CF)
oreg               31 arch/x86/boot/apm.c 	if (oreg.bx != 0x504d)		/* "PM" signature */
oreg               34 arch/x86/boot/apm.c 	if (!(oreg.cx & 0x02))		/* 32 bits supported? */
oreg               43 arch/x86/boot/apm.c 	intcall(0x15, &ireg, &oreg);
oreg               45 arch/x86/boot/apm.c 	boot_params.apm_bios_info.cseg        = oreg.ax;
oreg               46 arch/x86/boot/apm.c 	boot_params.apm_bios_info.offset      = oreg.ebx;
oreg               47 arch/x86/boot/apm.c 	boot_params.apm_bios_info.cseg_16     = oreg.cx;
oreg               48 arch/x86/boot/apm.c 	boot_params.apm_bios_info.dseg        = oreg.dx;
oreg               49 arch/x86/boot/apm.c 	boot_params.apm_bios_info.cseg_len    = oreg.si;
oreg               50 arch/x86/boot/apm.c 	boot_params.apm_bios_info.cseg_16_len = oreg.hsi;
oreg               51 arch/x86/boot/apm.c 	boot_params.apm_bios_info.dseg_len    = oreg.di;
oreg               53 arch/x86/boot/apm.c 	if (oreg.flags & X86_EFLAGS_CF)
oreg               60 arch/x86/boot/apm.c 	intcall(0x15, &ireg, &oreg);
oreg               62 arch/x86/boot/apm.c 	if ((oreg.eflags & X86_EFLAGS_CF) || oreg.bx != 0x504d) {
oreg               69 arch/x86/boot/apm.c 	boot_params.apm_bios_info.version = oreg.ax;
oreg               70 arch/x86/boot/apm.c 	boot_params.apm_bios_info.flags   = oreg.cx;
oreg              267 arch/x86/boot/boot.h void intcall(u8 int_no, const struct biosregs *ireg, struct biosregs *oreg);
oreg               25 arch/x86/boot/edd.c 	struct biosregs ireg, oreg;
oreg               33 arch/x86/boot/edd.c 	intcall(0x13, &ireg, &oreg);
oreg               35 arch/x86/boot/edd.c 	return -(oreg.eflags & X86_EFLAGS_CF); /* 0 or -1 */
oreg               75 arch/x86/boot/edd.c 	struct biosregs ireg, oreg;
oreg               85 arch/x86/boot/edd.c 	intcall(0x13, &ireg, &oreg);
oreg               87 arch/x86/boot/edd.c 	if (oreg.eflags & X86_EFLAGS_CF)
oreg               90 arch/x86/boot/edd.c 	if (oreg.bx != EDDMAGIC2)
oreg               94 arch/x86/boot/edd.c 	ei->version = oreg.ah;		 /* EDD version number */
oreg               95 arch/x86/boot/edd.c 	ei->interface_support = oreg.cx; /* EDD functionality subsets */
oreg              102 arch/x86/boot/edd.c 	intcall(0x13, &ireg, &oreg);
oreg              109 arch/x86/boot/edd.c 	intcall(0x13, &ireg, &oreg);
oreg              111 arch/x86/boot/edd.c 	if (!(oreg.eflags & X86_EFLAGS_CF)) {
oreg              112 arch/x86/boot/edd.c 		ei->legacy_max_cylinder = oreg.ch + ((oreg.cl & 0xc0) << 2);
oreg              113 arch/x86/boot/edd.c 		ei->legacy_max_head = oreg.dh;
oreg              114 arch/x86/boot/edd.c 		ei->legacy_sectors_per_track = oreg.cl & 0x3f;
oreg               66 arch/x86/boot/main.c 	struct biosregs ireg, oreg;
oreg               70 arch/x86/boot/main.c 	intcall(0x16, &ireg, &oreg);
oreg               71 arch/x86/boot/main.c 	boot_params.kbd_status = oreg.al;
oreg               82 arch/x86/boot/main.c 	struct biosregs ireg, oreg;
oreg               92 arch/x86/boot/main.c 	intcall(0x15, &ireg, &oreg);
oreg               94 arch/x86/boot/main.c 	boot_params.ist_info.signature  = oreg.eax;
oreg               95 arch/x86/boot/main.c 	boot_params.ist_info.command    = oreg.ebx;
oreg               96 arch/x86/boot/main.c 	boot_params.ist_info.event      = oreg.ecx;
oreg               97 arch/x86/boot/main.c 	boot_params.ist_info.perf_level = oreg.edx;
oreg               21 arch/x86/boot/memory.c 	struct biosregs ireg, oreg;
oreg               46 arch/x86/boot/memory.c 		intcall(0x15, &ireg, &oreg);
oreg               47 arch/x86/boot/memory.c 		ireg.ebx = oreg.ebx; /* for next iteration... */
oreg               52 arch/x86/boot/memory.c 		if (oreg.eflags & X86_EFLAGS_CF)
oreg               60 arch/x86/boot/memory.c 		if (oreg.eax != SMAP) {
oreg               74 arch/x86/boot/memory.c 	struct biosregs ireg, oreg;
oreg               78 arch/x86/boot/memory.c 	intcall(0x15, &ireg, &oreg);
oreg               80 arch/x86/boot/memory.c 	if (oreg.eflags & X86_EFLAGS_CF)
oreg               84 arch/x86/boot/memory.c 	if (oreg.cx || oreg.dx) {
oreg               85 arch/x86/boot/memory.c 		oreg.ax = oreg.cx;
oreg               86 arch/x86/boot/memory.c 		oreg.bx = oreg.dx;
oreg               89 arch/x86/boot/memory.c 	if (oreg.ax > 15*1024) {
oreg               91 arch/x86/boot/memory.c 	} else if (oreg.ax == 15*1024) {
oreg               92 arch/x86/boot/memory.c 		boot_params.alt_mem_k = (oreg.bx << 6) + oreg.ax;
oreg              101 arch/x86/boot/memory.c 		boot_params.alt_mem_k = oreg.ax;
oreg              107 arch/x86/boot/memory.c 	struct biosregs ireg, oreg;
oreg              111 arch/x86/boot/memory.c 	intcall(0x15, &ireg, &oreg);
oreg              113 arch/x86/boot/memory.c 	boot_params.screen_info.ext_mem_k = oreg.ax;
oreg               74 arch/x86/boot/tty.c 	struct biosregs ireg, oreg;
oreg               78 arch/x86/boot/tty.c 	intcall(0x1a, &ireg, &oreg);
oreg               80 arch/x86/boot/tty.c 	return oreg.dh;
oreg               88 arch/x86/boot/tty.c 	struct biosregs ireg, oreg;
oreg               92 arch/x86/boot/tty.c 	intcall(0x16, &ireg, &oreg);
oreg               94 arch/x86/boot/tty.c 	return oreg.al;
oreg               99 arch/x86/boot/tty.c 	struct biosregs ireg, oreg;
oreg              103 arch/x86/boot/tty.c 	intcall(0x16, &ireg, &oreg);
oreg              105 arch/x86/boot/tty.c 	return !(oreg.eflags & X86_EFLAGS_ZF);
oreg               31 arch/x86/boot/video-bios.c 	struct biosregs ireg, oreg;
oreg               39 arch/x86/boot/video-bios.c 	intcall(0x10, &ireg, &oreg);
oreg               44 arch/x86/boot/video-bios.c 	new_mode = oreg.al & 0x7f;
oreg               33 arch/x86/boot/video-vesa.c 	struct biosregs ireg, oreg;
oreg               44 arch/x86/boot/video-vesa.c 	intcall(0x10, &ireg, &oreg);
oreg               46 arch/x86/boot/video-vesa.c 	if (oreg.ax != 0x004f ||
oreg               68 arch/x86/boot/video-vesa.c 		intcall(0x10, &ireg, &oreg);
oreg               70 arch/x86/boot/video-vesa.c 		if (oreg.ax != 0x004f)
oreg              106 arch/x86/boot/video-vesa.c 	struct biosregs ireg, oreg;
oreg              116 arch/x86/boot/video-vesa.c 	intcall(0x10, &ireg, &oreg);
oreg              118 arch/x86/boot/video-vesa.c 	if (oreg.ax != 0x004f)
oreg              138 arch/x86/boot/video-vesa.c 	intcall(0x10, &ireg, &oreg);
oreg              140 arch/x86/boot/video-vesa.c 	if (oreg.ax != 0x004f)
oreg              163 arch/x86/boot/video-vesa.c 	struct biosregs ireg, oreg;
oreg              171 arch/x86/boot/video-vesa.c 		intcall(0x10, &ireg, &oreg);
oreg              172 arch/x86/boot/video-vesa.c 		if (oreg.ax == 0x004f)
oreg              173 arch/x86/boot/video-vesa.c 			dac_size = oreg.bh;
oreg              191 arch/x86/boot/video-vesa.c 	struct biosregs ireg, oreg;
oreg              195 arch/x86/boot/video-vesa.c 	intcall(0x10, &ireg, &oreg);
oreg              197 arch/x86/boot/video-vesa.c 	if (oreg.ax != 0x004f)
oreg              200 arch/x86/boot/video-vesa.c 	boot_params.screen_info.vesapm_seg = oreg.es;
oreg              201 arch/x86/boot/video-vesa.c 	boot_params.screen_info.vesapm_off = oreg.di;
oreg              239 arch/x86/boot/video-vesa.c 	struct biosregs ireg, oreg;
oreg              252 arch/x86/boot/video-vesa.c 	intcall(0x10, &ireg, &oreg);
oreg              254 arch/x86/boot/video-vesa.c 	if (oreg.ax != 0x004f)
oreg              266 arch/x86/boot/video-vesa.c 	intcall(0x10, &ireg, &oreg);
oreg               41 arch/x86/boot/video-vga.c 	struct biosregs ireg, oreg;
oreg               48 arch/x86/boot/video-vga.c 	intcall(0x10, &ireg, &oreg);
oreg               49 arch/x86/boot/video-vga.c 	mode = oreg.al;
oreg              247 arch/x86/boot/video-vga.c 	struct biosregs ireg, oreg;
oreg              253 arch/x86/boot/video-vga.c 	intcall(0x10, &ireg, &oreg);
oreg              256 arch/x86/boot/video-vga.c 	boot_params.screen_info.orig_video_ega_bx = oreg.bx;
oreg              260 arch/x86/boot/video-vga.c 	if (oreg.bl != 0x10) {
oreg              263 arch/x86/boot/video-vga.c 		intcall(0x10, &ireg, &oreg);
oreg              265 arch/x86/boot/video-vga.c 		if (oreg.al == 0x1a) {
oreg               24 arch/x86/boot/video.c 	struct biosregs ireg, oreg;
oreg               28 arch/x86/boot/video.c 	intcall(0x10, &ireg, &oreg);
oreg               30 arch/x86/boot/video.c 	boot_params.screen_info.orig_x = oreg.dl;
oreg               31 arch/x86/boot/video.c 	boot_params.screen_info.orig_y = oreg.dh;
oreg               33 arch/x86/boot/video.c 	if (oreg.ch & 0x20)
oreg               36 arch/x86/boot/video.c 	if ((oreg.ch & 0x1f) > (oreg.cl & 0x1f))
oreg               42 arch/x86/boot/video.c 	struct biosregs ireg, oreg;
oreg               48 arch/x86/boot/video.c 	intcall(0x10, &ireg, &oreg);
oreg               51 arch/x86/boot/video.c 	boot_params.screen_info.orig_video_mode = oreg.al & 0x7f;
oreg               52 arch/x86/boot/video.c 	boot_params.screen_info.orig_video_page = oreg.bh;
oreg              369 drivers/net/wireless/intersil/orinoco/hermes.c 	int oreg = bap ? HERMES_OFFSET1 : HERMES_OFFSET0;
oreg              378 drivers/net/wireless/intersil/orinoco/hermes.c 	reg = hermes_read_reg(hw, oreg);
oreg              382 drivers/net/wireless/intersil/orinoco/hermes.c 		reg = hermes_read_reg(hw, oreg);
oreg              390 drivers/net/wireless/intersil/orinoco/hermes.c 	hermes_write_reg(hw, oreg, offset);
oreg              394 drivers/net/wireless/intersil/orinoco/hermes.c 	reg = hermes_read_reg(hw, oreg);
oreg              398 drivers/net/wireless/intersil/orinoco/hermes.c 		reg = hermes_read_reg(hw, oreg);
oreg              940 sound/pci/azt3328.c 	u16 oreg, val;
oreg              944 sound/pci/azt3328.c 	oreg = snd_azf3328_mixer_inw(chip, reg.reg);
oreg              945 sound/pci/azt3328.c 	val = (oreg >> reg.lchan_shift) & reg.mask;
oreg              950 sound/pci/azt3328.c 		val = (oreg >> reg.rchan_shift) & reg.mask;
oreg              957 sound/pci/azt3328.c 		reg.reg, oreg,
oreg              969 sound/pci/azt3328.c 	u16 oreg, nreg, val;
oreg              972 sound/pci/azt3328.c 	oreg = snd_azf3328_mixer_inw(chip, reg.reg);
oreg              976 sound/pci/azt3328.c 	nreg = oreg & ~(reg.mask << reg.lchan_shift);
oreg              997 sound/pci/azt3328.c 		oreg, reg.lchan_shift, reg.rchan_shift,
oreg              999 sound/pci/azt3328.c 	return (nreg != oreg);
oreg             1072 sound/pci/azt3328.c 	u16 oreg, nreg, val;
oreg             1075 sound/pci/azt3328.c 	oreg = snd_azf3328_mixer_inw(chip, reg.reg);
oreg             1076 sound/pci/azt3328.c 	val = oreg;
oreg             1093 sound/pci/azt3328.c 		"put_enum: %02x to %04x, oreg %04x\n", reg.reg, val, oreg);
oreg             1094 sound/pci/azt3328.c 	return (nreg != oreg);
oreg             2212 sound/pci/cmipci.c 	unsigned char oreg, val;
oreg             2216 sound/pci/cmipci.c 	oreg = inb(cm->iobase + reg.left_reg);
oreg             2217 sound/pci/cmipci.c 	val = (oreg >> reg.left_shift) & reg.mask;
oreg             2222 sound/pci/cmipci.c 		val = (oreg >> reg.right_shift) & reg.mask;
oreg             2236 sound/pci/cmipci.c 	unsigned char oreg, nreg, val;
oreg             2240 sound/pci/cmipci.c 	oreg = inb(cm->iobase + reg.left_reg);
oreg             2244 sound/pci/cmipci.c 	nreg = oreg & ~(reg.mask << reg.left_shift);
oreg             2255 sound/pci/cmipci.c 	return (nreg != oreg);
oreg              572 sound/ppc/burgundy.c 		int reg, oreg;
oreg              573 sound/ppc/burgundy.c 		reg = oreg = snd_pmac_burgundy_rcb(chip,
oreg              587 sound/ppc/burgundy.c 		if (do_notify && reg == oreg)